    /* ── Page base ── */
    body {
        background: #0a0a0c !important;
        overflow-x: hidden;
    }

    .content-wrap,
    .site-main,
    .entry-content {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
    }

    /* ── Navbar ── */
    .onikix-navbar .nav-logo {
        height: 40px;
    }

    /* ── HERO ── */
    .ct-hero {
        position: relative;
        padding: 160px 2rem 80px;
        text-align: center;
        background: #0a0a0c;
        overflow: hidden;
    }

    .ct-hero::before {
        content: '';
        position: absolute;
        top: -10%;
        left: 50%;
        transform: translateX(-50%);
        width: 50vw;
        height: 50vw;
        max-width: 600px;
        max-height: 600px;
        background: radial-gradient(circle, rgba(255, 0, 255, 0.08), rgba(0, 255, 255, 0.04) 40%, transparent 70%);
        filter: blur(80px);
        pointer-events: none;
    }

    .ct-hero .section-tag {
        display: inline-block;
        background: rgba(255, 0, 255, 0.15);
        color: #FF00FF;
        padding: 0.4rem 1.2rem;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 2;
    }

    .ct-hero h1 {
        font-family: 'Outfit', sans-serif;
        font-weight: 900;
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        line-height: 1.05;
        color: #fff;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 2;
    }

    .ct-hero .gradient-text {
        background: linear-gradient(90deg, #FF00FF, #FF5500);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .ct-hero .ct-subtitle {
        color: #8ca0b0;
        font-size: 1.15rem;
        line-height: 1.7;
        max-width: 600px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    /* ── MAIN CONTENT GRID ── */
    .ct-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem 6rem;
        display: grid;
        grid-template-columns: 1fr 1.3fr;
        gap: 4rem;
        align-items: start;
    }

    /* ── COMPANY INFO CARD ── */
    .ct-info {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 24px;
        padding: 3rem;
        position: relative;
        overflow: hidden;
    }

    .ct-info::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #FF00FF, #FF5500, #00FFFF);
        border-radius: 24px 24px 0 0;
    }

    .ct-info h3 {
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
        font-size: 1.4rem;
        color: #fff;
        margin-bottom: 2rem;
        letter-spacing: 1px;
    }

    .ct-info-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.8rem;
    }

    .ct-info-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: rgba(255, 0, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .ct-info-text {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
    }

    .ct-info-label {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #FF00FF;
        font-weight: 700;
    }

    .ct-info-value {
        color: #8ca0b0;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .ct-info-value a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s;
    }

    .ct-info-value a:hover {
        color: #FF00FF;
    }

    /* Divider */
    .ct-divider {
        height: 1px;
        background: rgba(255, 255, 255, 0.06);
        margin: 1.5rem 0;
    }

    /* Social links */
    .ct-social {
        display: flex;
        gap: 0.8rem;
        margin-top: 0.5rem;
    }

    .ct-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        color: #8ca0b0;
        text-decoration: none;
        font-size: 1.1rem;
        transition: all 0.3s;
    }

    .ct-social a:hover {
        background: rgba(255, 0, 255, 0.15);
        border-color: rgba(255, 0, 255, 0.4);
        color: #FF00FF;
        transform: translateY(-2px);
    }

    /* ── FORM ── */
    .ct-form-wrapper {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 24px;
        padding: 3rem;
    }

    .ct-form-wrapper h3 {
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
        font-size: 1.4rem;
        color: #fff;
        margin-bottom: 2rem;
    }

    .ct-field {
        margin-bottom: 1.5rem;
    }

    .ct-field label {
        display: block;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: #8ca0b0;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .ct-field input,
    .ct-field textarea,
    .ct-field select {
        width: 100%;
        padding: 0.9rem 1.2rem;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        color: #fff;
        font-family: 'Space Grotesk', sans-serif;
        font-size: 0.95rem;
        transition: border-color 0.3s, box-shadow 0.3s;
        outline: none;
        box-sizing: border-box;
    }

    .ct-field input:focus,
    .ct-field textarea:focus,
    .ct-field select:focus {
        border-color: rgba(255, 0, 255, 0.5);
        box-shadow: 0 0 20px rgba(255, 0, 255, 0.1);
    }

    .ct-field input::placeholder,
    .ct-field textarea::placeholder {
        color: rgba(255, 255, 255, 0.2);
    }

    .ct-field textarea {
        min-height: 140px;
        resize: vertical;
    }

    .ct-field select {
        appearance: none;
        cursor: pointer;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238ca0b0' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 1.2rem center;
        padding-right: 2.5rem;
    }

    .ct-field select option {
        background: #141418;
        color: #fff;
    }

    .ct-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    /* Submit button */
    .ct-submit {
        display: inline-block;
        width: 100%;
        padding: 1rem 2.5rem;
        border-radius: 100px;
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        background: #ffffff;
        color: #0a0a0c;
        border: 1px solid #ffffff;
        cursor: pointer;
        transition: transform 0.3s, box-shadow 0.3s;
        margin-top: 0.5rem;
    }

    .ct-submit:hover {
        transform: scale(1.03);
        box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
    }

    .ct-submit:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }

    /* Status messages */
    .ct-status {
        margin-top: 1rem;
        padding: 1rem 1.5rem;
        border-radius: 12px;
        font-size: 0.9rem;
        display: none;
    }

    .ct-status.success {
        display: block;
        background: rgba(0, 255, 100, 0.1);
        border: 1px solid rgba(0, 255, 100, 0.3);
        color: #4ade80;
    }

    .ct-status.error {
        display: block;
        background: rgba(255, 50, 50, 0.1);
        border: 1px solid rgba(255, 50, 50, 0.3);
        color: #f87171;
    }

    /* Privacy note */
    .ct-privacy {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.25);
        margin-top: 1rem;
        line-height: 1.5;
    }

    .ct-privacy a {
        color: rgba(255, 255, 255, 0.4);
        text-decoration: underline;
    }

    /* ── FOOTER ── */
    .ct-footer {
        background: rgba(10, 10, 12, 0.9);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding: 2rem 3rem;
    }

    .ct-footer .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.3);
    }

    .ct-footer .social-links a {
        color: rgba(255, 255, 255, 0.3);
        text-decoration: none;
        margin-left: 1.5rem;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 1px;
        transition: color 0.3s;
    }

    .ct-footer .social-links a:hover {
        color: #FF00FF;
    }

    /* ── Responsive ── */
    @media (max-width: 768px) {
        .ct-content {
            grid-template-columns: 1fr;
            gap: 2rem;
            padding: 0 1.5rem 4rem;
        }

        .ct-row {
            grid-template-columns: 1fr;
        }

        .ct-hero {
            padding: 120px 1.5rem 40px;
        }

        .ct-footer .footer-bottom {
            flex-direction: column;
            gap: 1rem;
        }
    }
