.space-header-menu ul.main-menu li.menu-item-38 a {
    display: inline-block;
    padding: 8px 25px;
    margin: 18px 0 10px 12px;
    font-weight: 600;
    font-size: 1em;
    line-height: 1.25em;
    color: #000 !important;
    /* Black text */
    text-decoration: none !important;
    border-radius: 23px;
    background-color: #00ddf9;
    /* Button Color */
    border: 2px solid transparent;
    /* Base border */
    box-shadow: none;
    transition: all 0.2s ease-in-out;
}

/* Click / Active Shine Effect */
.space-header-menu ul.main-menu li.menu-item-38 a:active {
    border-color: #ffffff;
    /* Shine border */
    box-shadow: 0 0 10px #00ddf9;
    /* Light glow */
    transform: scale(0.98);
    /* Click press effect */
}



.mercury-homehero-button a {
    display: inline-block;
    padding: 13px 30px;
    font-weight: 600;
    font-size: 1em;
    line-height: 1.25em;
    color: #000 !important;
    /* Black text */
    text-decoration: none !important;
    border-radius: 23px;
    background-color: #00ddf9;
    /* Button color */
    border: 2px solid transparent;
    box-shadow: none;
    transition: all 0.2s ease-in-out;
}

/* On Click (active) shine effect */
.mercury-homehero-button a:active {
    border-color: #ffffff;
    /* white shine border */
    box-shadow: 0 0 10px #00ddf9;
    /* glow effect */
    transform: scale(0.97);
    /* press feel */
}

/* Optional hover brightness (same color, slight highlight) */
.mercury-homehero-button a:hover {
    filter: brightness(1.1);
}


.features-grid-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0;
    margin-top: 32px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
    max-width: 1200px;
}

/* Mobile: one card per row */
@media (max-width: 767px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.07);
    text-align: left;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.12);
}

.feature-icon img {
    width: 60px;
    height: auto;
    margin-bottom: 18px;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-text {
    font-size: 16px;
    line-height: 24px;
    color: #555;
}



/* ==== GLOBAL WRAPPER ==== */
.arclight-block {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #f7f9fc;
    /* same background */
    padding: 80px 0;
}

.arclight-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.arclight-block section+section {
    margin-top: 64px;
}

.arclight-section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 12px;
    color: #111827;
}

.arclight-section-subtitle {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 32px;
    color: #6b7280;
    font-size: 16px;
}

/* ==== WHY CHOOSE SECTION ==== */
.arclight-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

@media (max-width: 992px) {
    .arclight-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .arclight-why-grid {
        grid-template-columns: 1fr;
    }
}

.arclight-why-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px 20px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    text-align: left;
}

.arclight-why-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.12);
    color: #0ea5e9;
    font-size: 20px;
    margin-bottom: 14px;
}

.arclight-why-card-title {
    font-size: 18px;
    margin-bottom: 8px;
    color: #111827;
}

.arclight-why-card-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}

/* ==== TESTIMONIAL SECTION ==== */
.testimonial-section {
    text-align: center;
}

.testimonial-subtitle strong {
    font-weight: 600;
}

.testimonial-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.testimonial-card {
    text-align: left !important;
    width: 100%;
    max-width: 600px;
    padding: 20px;
    background: #ffffff;
    border-radius: 14px;
    position: relative;

    /* FIXED CARD HEIGHT — adjust if needed */
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-stars {
    text-align: left !important;
    color: #facc15;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    right: 26px;
    font-size: 40px;
    color: rgba(96, 165, 250, 0.25);
    font-family: Georgia, "Times New Roman", serif;
}

.testimonial-text {
    text-align: left !important;
    font-size: 16px;
    line-height: 1.6rem;
    color: #374151;

    /* Clamp to 3 lines only */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

    /* FIXED HEIGHT so card never expands */
    height: calc(1.6rem * 3);
    min-height: calc(1.6rem * 3);
    max-height: calc(1.6rem * 3);
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
}

.testimonial-user-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 600;
    color: #111827;
}

.testimonial-title,
.testimonial-location {
    font-size: 13px;
    color: #6b7280;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    background: #e5e7eb;
    color: #111827;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.1s ease;
}

.testimonial-nav-btn:hover {
    background: #d1d5db;
    transform: translateY(-1px);
}

.testimonial-dots {
    display: flex;
    gap: 6px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #d1d5db;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.testimonial-dot.is-active {
    background: #4f46e5;
    transform: scale(1.15);
}

/* ==== OPERATORS + METRICS SECTION ==== */
.operator-section {
    padding: 60px 20px;
    color: #f5f7ff;
}

.operator-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 40px;
    align-items: stretch;
}

/* Left Column */

.operator-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.operator-heading-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.operator-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgb(250, 254, 255);
    border: 1px solid #00ddf9;
    color: #000000;
}

.operator-title {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
}

.operator-title span {
    color: #00ddf9;
}

.operator-subtitle {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #a6b0cf;
}

/* Metrics */

.operator-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.operator-metric-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 14px 12px;
    border: 1px solid #00ddf9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.operator-metric-value {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #00ddf9 !important;
}

.operator-metric-value--purple {
    color: #00ddf9 !important;
}

.operator-metric-value--blue {
    color: #00ddf9;
}

.operator-metric-label {
    font-size: 11px;
    color: #9aa3c0;
}

/* CTAs */

.operator-cta-panel {
    margin-top: 6px;
    padding: 12px 14px;
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(0, 221, 249, 0.08), rgba(96, 165, 250, 0.08));
    border: 1px solid rgba(148, 163, 184, 0.35);
}

.operator-cta-caption {
    margin: 0 0 8px;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000000;
}

.operator-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.operator-cta-btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid #00ddf9;
    background: #ffffff;
    color: #000000;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.18s ease-out;
}

.operator-cta-btn span {
    font-size: 13px;
}

/* Right Column - Logos */

.operator-right {
    display: flex;
    align-items: stretch;
}

.operator-logos-card {
    width: 100%;
    padding: 18px 16px 16px;
    border-radius: 18px;
    background: linear-gradient(90deg, rgba(0, 221, 249, 0.08), rgba(96, 165, 250, 0.08));
    border: 1px solid #00ddf9;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.operator-logos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.operator-logos-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #000000;
}

.operator-logos-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.operator-logo-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 9px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #00ddf9;
}

.operator-logo-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgba(0, 220, 249, 0.274), rgba(96, 165, 250, 0.345));
    font-size: 16px;
}

.operator-logo-name {
    font-size: 13px;
    font-weight: 500;
    color: #00ddf9;
}

.operator-logos-footnote {
    margin: 0;
    font-size: 11px;
    color: #000000;
    opacity: 0.9;
}

/* Responsive */

@media (max-width: 960px) {
    .operator-section-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .operator-metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .operator-section {
        padding: 40px 16px;
    }

    .operator-title {
        font-size: 24px;
    }

    .operator-cta-row {
        flex-direction: column;
    }

    .operator-logos-card {
        padding: 16px 14px;
    }
}


/* MAIN FOOTER WRAPPER */
.space-footer {
    background: #050b24;
    /* deep navy like screenshot */
    color: #e5e7eb;
    padding: 60px 6vw 30px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Center content & max width */
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* TOP GRID */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.footer-col {
    font-size: 14px;
}

.footer-col-brand {
    max-width: 360px;
}

/* LOGO & TEXT */
.footer-logo {
    max-width: 220px;
    height: auto;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: #9ca3af;
    margin-bottom: 24px;
}

/* NEWSLETTER */
.footer-newsletter-label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #ffffff;
}

.footer-input-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    /* transparent feel */
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 999px;
    padding: 4px 6px 4px 14px;
    gap: 8px;
}

.footer-input-icon {
    color: #9ca3af;
    font-size: 16px;
    margin-left: 14px;
}

.footer-newsletter-form {
    margin-top: 4px;
}

.footer-input-wrap {
    display: flex;
    align-items: center;
    background: #020617;
    border-radius: 999px;
    padding: 4px;
    border: 1px solid rgba(148, 163, 184, 0.4);
}

input[type="email"] {
    border: none;
}

.footer-input {
    flex: 1;
    background: transparent !important;
    border: none;
    outline: none;
    color: #00ddf9 !important;
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 50px !important;
    /* ← Added */
}

.footer-input::placeholder {
    color: #9ca3af;
}

.footer-btn {
    background: #6366f1;
    border: none;
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: 0.25s ease;
}

.footer-btn:hover {
    background: #818cf8;
    transform: translateY(-1px);
}

.space-header-menu ul.main-menu li a {
    padding: 31px 10px;
}

.footer-btn:active {
    transform: scale(0.96);
}

.footer-btn-icon {
    font-size: 14px;
}


/* Circular blue button on right */
.footer-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00ddf9;
    /* blue */
    color: #ffffff;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 16px;
    transition: background 0.2s ease, transform 0.1s ease,
        box-shadow 0.2s ease;
}

.footer-icon-btn:hover {
    background: #00ddf9;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.3);
    transform: translateY(-1px);
}

.footer-icon-btn:active {
    transform: scale(0.95);
}

/* HEADINGS & LINKS */
.footer-heading {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #00ddf9;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li+li {
    margin-top: 8px;
}

.footer-links a {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* BOTTOM BAR */
.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.3);
    margin-top: 40px;
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 13px;
    color: #6b7280;
}

.footer-social a {
    margin-left: 14px;
    font-size: 16px;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.15s ease, transform 0.1s ease;
}

.footer-social a:hover {
    color: #00ddf9;
    transform: translateY(-1px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 32px;
    }
}

@media (max-width: 640px) {
    .space-footer {
        padding: 40px 16px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-social a {
        margin-left: 0;
        margin-right: 12px;
    }
}

@media (max-width: 480px) {
    .footer-input-group {
        flex-direction: column;
        padding: 10px;
    }

    .footer-btn {
        width: 100%;
        margin-top: 10px;
    }
}


/*------- Home page ----*/
.newsletter-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    background: linear-gradient(90deg, rgba(0, 221, 249, 0.08), rgba(96, 165, 250, 0.08));
    padding: 0;
    margin-left: -50vw;
    margin-right: -50vw;
    /* remove spacing */
    display: flex;
    justify-content: center;
}

.newsletter-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 20px;
    /* padding only inside container */
    text-align: center;
    color: #fff;
}

.newsletter-icon {
    width: 52px;
    height: 52px;
    background: #ffffff14;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 18px;
    font-size: 22px;
}

.newsletter-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #00ddf9;
}

.newsletter-subtitle {
    font-size: 16px;
    color: #d1d5db;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form input {
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 10px;
    outline: none;
    border: none;
    color: #000;
}

.newsletter-form button {
    padding: 14px;
    background-color: #00ddf9;
    border-radius: 10px;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
}

.newsletter-form button i {
    margin-right: 8px;
}

.newsletter-privacy {
    margin-top: 22px;
    font-size: 14px;
    color: #b6beca;
}


/* --- MOBILE layout adjustments --- */
@media (max-width: 640px) {

    /* 1. Two columns on mobile for Solutions + Company */
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    /* Brand full width on first row */
    .footer-col-brand {
        grid-column: 1 / -1 !important;
    }

    /* 2. Company & Solutions stay side by side */
    .footer-col:nth-child(2),
    .footer-col:nth-child(3) {
        grid-column: auto !important;
    }

    /* 3. Copyright & Social in one row */
    .footer-bottom {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
        gap: 10px;
    }

    .footer-copy {
        max-width: 60%;
        font-size: 13px;
        line-height: 1.3;
        white-space: normal;
    }

    .footer-social {
        display: flex;
        justify-content: flex-end;
        gap: 12px;
    }
}


/*----- Solution page -------*/
.hero {
    padding: 90px 20px 70px;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* Breadcrumb */
.breadcrumb span {
    display: inline-block;
    background: linear-gradient(90deg, rgba(0, 221, 249, 0.08), rgba(96, 165, 250, 0.08));
    color: #000000;
    padding: 10px 22px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 22px;
}

/* Title */
.title {
    font-size: 55px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 22px;
}

.gradient {
    background: linear-gradient(180deg, #00ddf9, #4726ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtitle */
.subtitle {
    font-size: 19px;
    font-weight: 400;
    color: #5a5a5a;
    max-width: 850px;
    margin: auto;
    margin-bottom: 42px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.portfolio-title,
.portfolio-subtitle {
    text-align: center;
}

.btn {
    padding: 13px 30px;
    font-size: 16px;
    font-weight: 500;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: linear-gradient(90deg, rgba(0, 221, 249, 0.08), rgba(96, 165, 250, 0.08));
    color: #000000;
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 34px;
    }

    .subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

.card-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* always 2 cards per row on desktop */
    gap: 24px 24px;
}

.platform-card {
    width: 100%;
    max-width: none;
    /* remove the 560px limit */
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.15);
    overflow: hidden;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
}

/* Make it 1 card per row on small screens (optional but recommended) */
@media (max-width: 768px) {
    .card-row {
        grid-template-columns: 1fr;
    }
}


/* TOP SLIDER */
.platform-slider {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #000;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    border-radius: 999px;
    padding: 6px 10px;
    background: rgba(15, 23, 42, 0.7);
    color: #fff;
    cursor: pointer;
    font-size: 18px;
}

.slider-nav.left {
    left: 12px;
}

.slider-nav.right {
    right: 12px;
}

.slider-nav:hover {
    background: rgba(15, 23, 42, 0.9);
}

/* BODY */
.platform-body {
    padding: 24px 24px 26px;
}

/* HEADER */
.platform-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}

.platform-title {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.demo-badge {
    background: linear-gradient(90deg, rgba(0, 221, 249, 0.08), rgba(96, 165, 250, 0.08));
    color: #05132F;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 500;
}

/* SUBTITLE */
.platform-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 16px;
}

/* CHIPS */
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.chip {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    color: #374151;
}

/* FIELDS */
.field-group {
    margin-bottom: 14px;
}

.field-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.field-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.field-input {
    flex: 1;
    padding: 12px 12px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    outline: none;
}

.field-input:focus {
    border-color: #00ddf9;
    box-shadow: 0 0 0 1px #ede9fe;
}

.icon-btn {
    border: none;
    background: #f3f4f6;
    border-radius: 999px;
    padding: 7px 9px;
    cursor: pointer;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover {
    background: #e5e7eb;
}

/* simple copy icon using SVG-like bars */
.icon-copy {
    width: 14px;
    height: 14px;
    position: relative;
    display: inline-block;
}

.icon-copy::before,
.icon-copy::after {
    content: "";
    position: absolute;
    border-radius: 2px;
    border: 1.5px solid #4b5563;
    box-sizing: border-box;
}

.icon-copy::before {
    width: 10px;
    height: 10px;
    top: 2px;
    left: 2px;
    background: #f9fafb;
}

.icon-copy::after {
    width: 10px;
    height: 10px;
    top: 0;
    left: 4px;
}

/* copy toast */
.field-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.copy-toast {
    position: absolute;
    right: 0;
    top: -22px;
    background: #16a34a;
    color: #ffffff;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 999px;
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.copy-toast.show {
    opacity: 1;
    transform: translateY(0);
}


/* CTA */
.platform-actions {
    margin-top: 18px;
}

.primary-btn {
    width: 100%;
    padding: 12px 16px;
    border-radius: 999px;
    border: none;
    background: #111827;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.primary-btn:hover {
    background: #020617;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .platform-card {
        border-radius: 18px;
    }

    .platform-body {
        padding: 20px 16px 22px;
    }

    .platform-title {
        font-size: 20px;
    }
}

/*** INPUT + COPY BUTTON INSIDE FIELD ***/
.input-copy {
    position: relative;
}

.input-copy input {
    width: 100%;
    padding: 12px 44px 12px 14px;
    /* space reserved for icon on right */
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 15px;
}

.copy-btn {
    position: absolute;
    right: 10px;
    /* icon inside right */
    top: 50%;
    transform: translateY(-50%);
    background: #05132F;
    color: #fff;
    border: none;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

.copy-btn:hover {
    background: #000;
}

.visit-btn {
    margin-top: 20px;
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    background: #05132F;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
}

/* Tablet */
@media (max-width: 1199px) {
    .card-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .card-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .platform-card {
        padding: 24px 18px;
    }
}

/* OUTER WRAPPER TO GIVE SOME SPACE AROUND THE CARD */
.cta-launch-wrapper {
    padding: 40px 16px 0;
    /* space from previous section */
}

/* MAIN CTA CARD */
.cta-launch {
    width: 100vw;
    position: relative;
    margin: 0 auto;
    padding: 40px 20px;
    background: linear-gradient(90deg, rgba(0, 221, 249, 0.08), rgba(96, 165, 250, 0.08));
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.06);
    text-align: center;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* TITLE + TEXT */
.cta-title {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.cta-text {
    font-size: 16px;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto 24px;
}

/* BUTTONS */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-btn {
    min-width: 260px;
    padding: 12px 26px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
        transform 0.1s ease;
}

.cta-btn-primary {
    background: #020b26;
    color: #ffffff;
    border-color: #020b26;
}

.cta-btn-primary:hover {
    background: #00ddf9;
    border-color: #00ddf9;
    transform: translateY(-1px);
}

.cta-btn-secondary {
    background: #ffffff;
    color: #111827;
    border-color: #e5e7eb;
}

.cta-btn-secondary:hover {
    background: #f9fafb;
    border-color: #cbd5f5;
    transform: translateY(-1px);
}

/* MOBILE TWEAKS */
@media (max-width: 640px) {
    .cta-launch {
        padding: 30px 16px;
    }

    .cta-title {
        font-size: 22px;
    }

    .cta-text {
        font-size: 14px;
    }

    .cta-btn {
        width: 100%;
        max-width: 260px;
    }
}


/* Layout wrapper */
.infra-security-section {
    background: #f3f5fb;
    padding: 60px 16px 40px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
    color: #0f172a;
    width: 100vw;
    position: relative;
    text-align: center;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Centered container */
.infra-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Generic card */
.infra-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px 20px;
    border: 1px solid #e1e5f2;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.infra-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
}

.infra-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    color: #111827;
}

.infra-card p {
    font-size: 13px;
    line-height: 1.5;
    color: #6b7280;
    margin: 0;
}

/* Icon bubble */
.infra-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(90deg, rgba(0, 221, 249, 0.08), rgba(96, 165, 250, 0.08));
    color: #00ddf9;
    margin-bottom: 4px;
    font-size: 16px;
}

/* Top architecture grid */
.infra-arch-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 48px;
}

/* Security heading */
.infra-security-heading {
    text-align: center;
    margin-bottom: 32px;
}

.security-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    margin: 0 auto 8px;
    background: #e0ebff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 18px;
}

.infra-security-heading h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #0f172a;
}

.infra-security-heading p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

/* Security features grid */
.infra-security-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

/* Performance band */
.infra-performance-band {
    margin-top: 40px;
    padding: 24px 16px 26px;
    background: linear-gradient(90deg, rgba(0, 221, 249, 0.08), rgba(96, 165, 250, 0.08));
    color: #f9fafb;
}

.infra-performance-band h3 {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.performance-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.performance-item {
    text-align: center;
    color: #000;
}

.performance-item .value {
    font-size: 22px;
    font-weight: 700;
}

.performance-item .label {
    font-size: 12px;
    opacity: 0.9;
}

/* Responsive tweaks */
@media (max-width: 1024px) {

    .infra-arch-grid,
    .infra-security-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .performance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .infra-security-section {
        padding: 40px 12px 32px;
    }

    .infra-arch-grid,
    .infra-security-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .infra-card {
        padding: 16px 16px;
    }

    .performance-grid {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 12px;
    }

    .infra-performance-band {
        padding-inline: 12px;
    }
}

.solution-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: "Inter", sans-serif;
}

.solution-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.solution-row.reverse {
    flex-direction: row-reverse;
}

/* MOBILE RESPONSIVE FIX */
@media (max-width: 768px) {
    .solution-row {
        flex-direction: column;
        /* Image first, then text */
        text-align: left;
    }

    .solution-content,
    .solution-title,
    .solution-subtitle,
    .solution-list li {
        text-align: left !important;
        /* Left-align all text */
    }

    .solution-row .solution-image {
        order: 1;
        width: 100%;
    }

    .solution-row .solution-content {
        order: 2;
        width: 100%;
    }

    .solution-image img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
}

.solution-content {
    flex: 1;
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 14px;
    /* spacing between icon and title */
    margin-bottom: 18px;
}

.solution-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(90deg, rgba(0, 221, 249, 0.08), rgba(96, 165, 250, 0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #00ddf9;
    margin-bottom: 0px;
}

.solution-title {
    font-size: 22px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.solution-icon.purple {
    background: #f0e9ff;
    color: #8c44ff;
}

.solution-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

.solution-subtitle {
    font-size: 16px;
    color: #475569;
    margin-bottom: 18px;
    line-height: 1.6;
}

.solution-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    line-height: 1.5;
    color: #333;
}

.solution-list li i {
    color: #00ddf9;
    /* Theme color */
    min-width: 20px;
    /* Keep icons aligned */
    margin-top: 3px;
    /* Perfect vertical center */
}

.solution-image {
    flex: 1;
}

.solution-image img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 900px) {

    .solution-row,
    .solution-row.reverse {
        flex-direction: column;

    }
}

.space-page-content ol li,
.space-page-content ul li {
    padding: 0px;
}

.game-dev-section {
    padding: 0px 20px;
    background: #ffffff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
    color: #0f172a;
}

.game-dev-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading */
.game-dev-header {
    text-align: center;
    margin-bottom: 40px;
}

.game-dev-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.game-dev-header p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
}

/* Grid */
.game-dev-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* Card */
.game-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 26px 24px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
    transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.game-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
}

.game-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 2px solid #c4eaee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ddf9;
    font-size: 18px;
    margin-bottom: 18px;
}

.game-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.game-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .game-dev-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .game-dev-section {
        padding: 50px 16px;
    }

    .game-dev-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.space-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 0px !important;
}

.no-wrap {
    white-space: nowrap !important;
}


/*----- Support -------*/
.support-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
}

/* Floating Button */
.support-toggle-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: radial-gradient(circle at 30% 20%, #00ddf9, #0ea5e9, #050b24);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ecfdf3;
    font-size: 26px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.support-toggle-btn::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.25), transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.support-toggle-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 24px 55px rgba(187, 227, 245, 0.9);
}

.support-toggle-btn:hover::before {
    opacity: 1;
}

.support-toggle-btn span {
    position: relative;
    z-index: 1;
}

/* When panel open – show X icon */
.support-toggle-btn.open {
    background: radial-gradient(circle at 30% 20%, #0f172a, #020617);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.8);
}

.support-toggle-btn.open .icon-chat {
    display: none;
}

.support-toggle-btn.open .icon-close {
    display: inline;
}

.support-toggle-btn .icon-close {
    display: none;
}

/* Panel */
.support-panel {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 290px;
    max-width: 80vw;
    padding: 14px 14px 10px;
    border-radius: 18px;
    background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.96),
            rgba(15, 23, 42, 0.85));
    border: 1px solid rgba(148, 163, 184, 0.25);

    color: #e5e7eb;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform-origin: bottom right;
    transform: translateY(6px) scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease-out, transform 0.18s ease-out;
}

.support-panel.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.support-panel-header {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 8px;
}

.support-avatar {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 221, 249, 0.08), rgba(96, 165, 250, 0.08));
    color: #00ddf9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.support-panel-title {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.support-badge {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 221, 249, 0.08), rgba(96, 165, 250, 0.08));
    border: 1px solid #00ddf9;
    color: #00ddf9;
}

.support-panel-subtitle {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 2px;
}

.support-close-inline {
    margin-left: auto;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: #9ca3af;
    cursor: pointer;
    font-size: 14px;
    padding: 0 4px;
}

.support-actions {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.support-btn {
    width: 100%;
    border-radius: 12px;
    border: 1px solid transparent;
    padding: 8px 10px;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 9px;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    text-align: left;
}

.support-btn .icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.support-btn .text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
}

.support-btn .label {
    font-size: 12px;
}

.support-btn .sub {
    font-size: 10px;
    opacity: 0.75;
}

.support-btn.whatsapp {
    background: radial-gradient(circle at 10% 0, #22c55e, #16a34a);
    color: #022c22;
    border-color: rgba(16, 185, 129, 0.7);
}

.support-btn.whatsapp .icon {
    background: rgba(6, 78, 59, 0.2);
}

.support-btn.email {
    background: radial-gradient(circle at 0 0, #0f172a, #020617);
    color: #e5e7eb;
    border-color: rgba(148, 163, 184, 0.4);
}

.support-btn.email .icon {
    background: rgba(15, 23, 42, 0.85);
}

.support-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.7);
}

.support-note {
    margin-top: 6px;
    font-size: 10px;
    opacity: 0.6;
    text-align: center;
}

/* Mobile tweaks */
@media (max-width: 640px) {
    .support-widget {
        bottom: 14px;
        right: 14px;
    }

    .support-toggle-btn {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .support-panel {
        width: 260px;
        padding: 12px 12px 8px;
    }
}

.support-btn .label {
    color: #ffffff !important;
}

.whatsapp-icon i {
    color: #ffffff !important;
    /* pure white */
    font-weight: 200 !important;
    /* bold effect */
    font-size: 15px !important;
    /* increase size */
}


.space-mobile-menu-copy {
    margin-top: 310px;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 0.75em;
    line-height: 1.45em;
    color: #7f8c8d;
}

.space-mobile-menu-list ul li.menu-item-38 a {
    position: relative;
    display: inline-block;
    padding: 13px 50px;
    margin: 30px 0 0;
    font-weight: 400;
    font-size: 1em;
    line-height: 1.25em;
    color: #000 !important;
    text-decoration: none !important;
    border-radius: 23px;
    border-bottom: 0;
    background-color: transparent !important;
    border: 2px solid #2ecc71 !important;
    box-shadow: 0 5px 15px 0 rgba(242, 248, 252, 0.55);
}

.space-mobile-menu-list ul li.menu-item-38 a:hover {
    background-color: #16a34a !important;
    color: #fff !important;
}


.whatsapp-btn-mf {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    color: #00ddf9;
    border: 2px solid #00ddf9;
    border-radius: 5px;
    background-color: transparent;
    transition: all 0.3s ease;
}

.whatsapp-btn-mf:hover {
    background-color: #00ddf9;
    color: white;
    transform: scale(1.05);
    /* Slight zoom effect */
}

.whatsapp-btn-mf:active {
    transform: scale(1);
    /* Reset scale when clicked */
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: transparent !important;
    /* removed background */
    color: #00ddf9 !important;
    /* WhatsApp green text */
    padding: 10px 18px;
    border: 2px solid #25D366 !important;
    /* border added */
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #25D366 !important;
    /* green bg on hover */
    color: #fff !important;
}
.password-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px; /* mobile width, grows on desktop via media query */
}

/* mobile-first input */
.password-wrapper input {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 4rem 10px 12px; /* room on right for divider + eye */
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px; /* slightly smaller for mobile */
}

/* eye icon */
.password-wrapper .toggle-eye {
    position: absolute;
    right: 14px;
    top: 45%;
    transform: translateY(-50%);
    font-size: 12px;  /* 👁 small size */
    color: #666;
    cursor: pointer;
    opacity: 0.9;
}

/* divider line */
.password-wrapper .divider {
    position: absolute;
    right: 40px;
    top: 45%;
    transform: translateY(-50%);
    height: 45%;
    width: 1px;
    background-color: #ddd;
}

/* 🔹 Desktop / tablet adjustments */
@media (min-width: 768px) {
    .password-wrapper {
        max-width: 400px; /* wider on desktop */
    }

    .password-wrapper input {
        padding: 11px 13rem 12px 14px;
        font-size: 16px;
    }

    .password-wrapper .toggle-eye {
        right: 18px;
        font-size: 18px;
    }

    .password-wrapper .divider {
        right: 45px;
        height: 50%;
    }
}
