/* Global Reset & Base Styles */
:root {
    --bg-color: #020617;
    /* Very dark slate/blue mostly black */
    --card-bg: #0f172a;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent-primary: #8b5cf6;
    /* Violet */
    --accent-secondary: #06b6d4;
    /* Cyan */
    --gradient-main: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navbar - Capsule Style */
/* Header & Navbar - Replicated from Rising Medya */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 65px;
    z-index: 1000;
    /* match bg-[#03001417] backdrop-blur-md shadow-lg shadow-[#2A0E61]/50 */
    background: rgba(3, 0, 20, 0.02);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 15px -3px rgba(42, 14, 97, 0.5);
    padding: 0 20px;
}

.header .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    padding: 0 10px;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #e5e7eb;
    transition: color 0.3s;
    text-decoration: none;
}

.logo:hover {
    color: #c084fc;
}

/* Centered Pill Navigation Wrapper */
.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(112, 66, 248, 0.38);
    background: rgba(3, 0, 20, 0.20);
    padding: 10px 20px;
    border-radius: 9999px;
    /* rounded-full */
    color: #e5e7eb;
    /* text-gray-200 */
    position: absolute;
    /* Absolute center technique like flex justify-center but robust */
    left: 50%;
    transform: translateX(-50%);
}

.nav-list {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 0.95rem;
    color: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
    padding: 0;
    /* Remove padding from links as container has it */
}

.nav-link:hover,
.nav-link.active {
    color: #c084fc;
    /* text-purple-400 */
    text-shadow: none;
    /* Removed glow to match exact ref */
    background: none;
    /* Removed background highlight to match ref */
    box-shadow: none;
}

/* Social Icons Area */
.social-icons {
    display: flex;
    gap: 1.25rem;
    /* gap-5 */
    align-items: center;
    margin-left: auto;
    /* Push to right if needed, though justify-between takes care */
    padding-left: 0;
    border: none;
}

.social-icons i {
    font-size: 1.5rem;
    /* ~24px width/height */
    color: #f8fafc;
    cursor: pointer;
    transition: transform 0.2s;
}

.social-icons i:hover {
    transform: scale(1.1);
    color: #fff;
    /* Keep white on hover or match icon color */
    text-shadow: none;
}

.hamburger {
    display: none;
    cursor: pointer;
    color: white;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 220px 0 100px;
    /* More top padding for the floating nav */
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Video Background - Intense Top Glow */
.hero-video {
    position: absolute;
    top: -470px;
    /* Precise alignment to touch the navbar */
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    width: 100%;
    min-width: 1200px;
    height: auto;
    z-index: -2;
    opacity: 1;
    /* Brighten it */
    mix-blend-mode: screen;
    pointer-events: none;
    /* Soften the bottom edge */
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient to fade from transparent top to dark bottom */
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0) 20%, rgba(2, 6, 23, 0.95) 70%, var(--bg-color) 90%);
    z-index: -1;
}

/* Strong Purple top glow override - THE BEAM (Desktop Version) */
.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 700px;
    /* Taller for desktop */
    /* Intense white core fading to neon purple then transparent - Matches Mobile */
    background: radial-gradient(ellipse at center top,
            rgba(255, 255, 255, 0.4) 0%,
            rgba(233, 213, 255, 0.3) 20%,
            rgba(168, 85, 247, 0.4) 40%,
            rgba(88, 28, 135, 0.1) 60%,
            transparent 80%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
    opacity: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    color: #a78bfa;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    /* More space */
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.hero-text h1 {
    font-size: 4rem;
    /* Bigger font */
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.gradient-text {
    background: linear-gradient(90deg, #9f7aea 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
}

.hero-text p {
    color: #cbd5e1;
    /* Lighter text */
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 550px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(79, 70, 229, 0.8));
    color: white;
    border: 1px solid rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
    transform: translateY(-2px);
    border-color: #fff;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    /* Enable 3D space */
    z-index: 2;
}

.floating-tech-icon {
    width: 100%;
    max-width: 600px;
    animation: rotateme 60s linear infinite;
    /* Slow rotation for the orbit feel */
    filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.2));
    display: none;
    /* Hide the old image if tag remains */
}

@keyframes rotateme {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* 3D Rotating Cube */
.cube-container {
    width: 320px;
    height: 320px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(-10deg) rotateY(0deg);
    animation: spinCube 16s infinite linear;
}

.cube-face {
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(139, 92, 246, 0.4);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.15), inset 0 0 20px rgba(139, 92, 246, 0.1);
    border-radius: 4px;
    /* Slight roundness */
    padding: 10px;
    backface-visibility: visible;
    /* Show internal structure or use hidden for clean sides */
}

/* Positioning Faces for a Cube */
.face-front {
    transform: rotateY(0deg) translateZ(160px);
}

.face-back {
    transform: rotateY(180deg) translateZ(160px);
}

.face-right {
    transform: rotateY(90deg) translateZ(160px);
}

.face-left {
    transform: rotateY(-90deg) translateZ(160px);
}

/* Optional: Top/Bottom lids if needed, currently leaving open for hologram look or adding if images exist */
.face-top {
    transform: rotateX(90deg) translateZ(160px);
    height: 320px;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.face-bottom {
    transform: rotateX(-90deg) translateZ(160px);
    height: 320px;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.cube-face img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
    transition: opacity 0.3s;
}

.cube-container:hover .cube-face img {
    opacity: 1;
}

.cube-container:hover {
    animation-play-state: paused;
    /* Allow creating a look */
}

@keyframes spinCube {
    0% {
        transform: rotateX(-15deg) rotateY(0deg);
    }

    100% {
        transform: rotateX(-15deg) rotateY(360deg);
    }
}

/* Replaces old floating-tech-icon styles if necessary, or just override */
/* Services Section */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.subtitle {
    color: var(--accent-secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Products/Portfolio Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.card-image {
    width: 100%;
    aspect-ratio: 4/3;
    /* Slightly wider than square for store listings looks better usually, or keep 1/1 */
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.1);
}

.tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    /* Push to bottom if content varies */
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-secondary);
    /* Cyan price */
}

.btn-buy {
    padding: 0.6rem 1.2rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.4);
    color: var(--accent-primary);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-buy:hover {
    background: var(--accent-primary);
    color: white;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
    border-color: var(--accent-primary);
}

/* --- PROCESS SECTION --- */
.process-section {
    background: linear-gradient(to bottom, transparent, rgba(59, 130, 246, 0.05), transparent);
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    width: 220px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    background: rgba(59, 130, 246, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-color);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.step-icon {
    font-size: 2.5rem;
    color: #fff;
    margin: 20px 0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--accent-primary);
    animation: slideRight 2s infinite ease-in-out;
}

@keyframes slideRight {

    0%,
    100% {
        transform: translateX(0);
        opacity: 0.5;
    }

    50% {
        transform: translateX(10px);
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .step-arrow {
        display: none;
    }

    .step-card {
        width: 45%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .step-card {
        width: 100%;
    }
}

/* --- TEAM / FOUNDER SECTION --- */
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 50px;
}

/* Left Profile Card */
.profile-card-main {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.profile-card-main:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.1);
}

.profile-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 3px solid var(--accent-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-secondary);
    background: rgba(6, 182, 212, 0.1);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

.profile-subtitle {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.founder-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    margin-bottom: 30px;
}

.founder-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #8b5cf6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.founder-info strong {
    display: block;
    font-size: 1rem;
    color: #fff;
}

.founder-info span {
    font-size: 0.85rem;
    color: #cbd5e1;
}

.profile-tags {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.p-tag {
    font-size: 0.8rem;
    padding: 5px 12px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.p-tag.active {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-secondary);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

/* Right Info Stack */
.info-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.info-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(30, 41, 59, 0.6);
}

.info-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #fff;
}

.bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.expertise-grid h5 {
    color: var(--accent-primary);
    margin-bottom: 5px;
    font-size: 1rem;
}

.expertise-grid span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: var(--card-bg);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
    font-size: 0.95rem;
}

.footer-contact h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-contact ul li {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--accent-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive */
/* Mobile Design - Replicating Rising Medya Style */
/* Mobile Design - Reverted to Previous State */
@media (max-width: 768px) {
    .header {
        background: rgba(15, 23, 42, 0.95) !important;
        /* Opaque Dark Blue */
        box-shadow: none !important;
        padding-top: 0;
        backdrop-filter: blur(10px);
        position: relative;
        z-index: 1000;
        /* Sit ON TOP of the video to cut it off cleanly */
    }

    .header .container {
        padding: 0 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Ghost Pill Navbar - RESET (Don't hide, just strip styles) */
    .navbar {
        display: block !important;
        /* MUST BE VISIBLE for child nav-list to show */
        position: static;
        opacity: 1;
        transform: none;
        border: none;
        background: transparent;
        pointer-events: auto;
    }

    /* Mobile Menu */
    .nav-list {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        /* Cover full screen including behind header if needed, but let's stick to under header for now */
        padding-top: 80px;
        /* Space for header */
        left: 0;
        width: 100%;
        height: 100vh;
        /* Full viewport height */
        background: #020617;
        padding-left: 20px;
        padding-right: 20px;
        gap: 25px;
        border-bottom: none;

        /* EXTREME Z-INDEX TO FIX CLICKING */
        z-index: 9998 !important;

        overflow-y: auto;

        /* Hiding Logic */
        visibility: hidden;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s ease-in-out;
    }

    /* Active State - Triggered by JS */
    .nav-list.active {
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    /* Ensure links define their own clickability */
    .nav-link {
        pointer-events: auto;
        font-size: 1.5rem;
        /* Larger links for easier clicking */
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* REAL VIDEO - HIGH POSITION (Cutting through header) */
    .hero-video {
        display: block !important;
        width: 260%;
        /* Adjusted zoom */
        max-width: none;
        height: auto;
        /* User requested exact position */
        top: -335px;
        left: 50%;
        transform: translateX(-50%) rotate(180deg);
        opacity: 1;
        mix-blend-mode: screen;
        z-index: 0;
    }

    /* Hero Text & Layout */
    .hero {
        padding-top: 180px;
        /* Push content down away from the arc */
        align-items: center;
        height: auto;
        min-height: 100vh;
    }

    .hero-content {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
        text-align: center;
        width: 100%;
        padding-bottom: 100px;
        position: relative;
        z-index: 2;
    }

    .badge {
        margin-bottom: 20px;
        background: rgba(139, 92, 246, 0.1);
        border: 1px solid rgba(139, 92, 246, 0.3);
        color: #a78bfa;
        backdrop-filter: none;
        padding: 5px 15px;
    }

    .hero-text h1 {
        font-family: 'Outfit', sans-serif;
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 20px;
        color: #fff;
        text-shadow: none;
        /* Clean text */
    }

    .hero-text p {
        font-size: 1rem;
        color: #cbd5e1;
        margin-bottom: 30px;
        line-height: 1.6;
        padding: 0;
    }

    /* Buttons: Row Layout */
    .hero-buttons {
        flex-direction: row;
        /* Side by side */
        gap: 15px;
        width: 100%;
        justify-content: center;
        padding: 0;
    }

    .btn {
        width: auto;
        /* Hug content */
        flex: 1;
        /* Equal width */
        height: 50px;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    /* Primary Button */
    .btn-primary {
        background: var(--accent-primary);
        box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
        border: none;
    }

    /* Outline Button */
    .btn-outline {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff;
    }

    .logo {
        position: relative;
        z-index: 10;
        text-shadow: none;
    }

    .wa-float-container {
        bottom: 30px;
        z-index: 20;
    }

    /* Hide elements */
    .hero-image,
    .social-icons {
        display: none !important;
    }

    /* --- REBUILT HAMBURGER MENU --- */
    .hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;

        /* Fixed Position in Header */
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);

        /* Touch Target Size */
        width: 45px;
        height: 45px;
        padding: 5px;

        /* Visuals */
        color: #fff;
        font-size: 1.6rem;
        cursor: pointer;
        z-index: 9999;
        /* Maximum/God-Mode Z-Index */

        /* Clickability */
        pointer-events: auto;
        border-radius: 8px;
        background: transparent;
        /* Or rgba(255,255,255,0.05) for testing */
        transition: all 0.2s ease;
    }

    .hamburger:active {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-50%) scale(0.95);
    }
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr !important;
    }
}