.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 */
}


.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;
}



.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;
    }
}


/*---- pricing page ---*/

h3.addon-title {
    margin: 10px 0;
}

:root {
    --pricing-bg: #f7f7fb;
    --card-bg: #ffffff;
    --border-color: #e2e2f0;
    --primary: #6c4ffb;
    --primary-soft: #f1ecff;
    --text-main: #1f2330;
    --text-sub: #72768a;
    --accent-dark: #111827;
    --button-dark: #020617;
}

.pricing-section {
    padding: 60px 16px 80px;
    background: var(--pricing-bg);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.pricing-container {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.pricing-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 8px;
}

.pricing-subtitle {
    font-size: 15px;
    color: var(--text-sub);
    margin-bottom: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    background: var(--card-bg);
    border-radius: 18px;
    padding: 26px 22px 24px;
    border: 1px solid var(--border-color);
    text-align: left;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card-popular {
    border-color: #00ddf9;
}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #00ddf9;
    color: #fff;
    padding: 4px 16px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pricing-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
}

.pricing-icon.calendar {
    background: #fceff9;
}

.pricing-icon.medal {
    background: #e5f7ff;
}

.pricing-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 4px;
}

.pricing-card-subtitle {
    font-size: 14px;
    color: var(--text-sub);
    margin-bottom: 16px;
}

.pricing-main-value {
    margin-bottom: 8px;
}

.pricing-main-value .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-dark);
}

.pricing-main-value .price-label {
    font-size: 13px;
    color: var(--text-sub);
}

.pricing-secondary-value {
    margin-bottom: 18px;
}

.pricing-secondary-value .price-highlight {
    font-size: 16px;
    font-weight: 700;
    color: #02b6ce;
    display: block;
}

.pricing-secondary-value .price-sub {
    font-size: 13px;
    color: var(--text-sub);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.pricing-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--text-main);
}

.pricing-features li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 11px;
    color: #16a34a;
}

.pricing-best-for {
    background: #f4f4fb;
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 18px;
}

.best-for-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-sub);
    font-weight: 600;
}

.pricing-best-for p {
    margin: 4px 0 0;
    font-size: 13px;
    color: var(--text-main);
}

.pricing-btn {
    text-decoration: none;
    /* Remove underline */
    color: #ffffff !important;
    /* White text */
    font-size: 16px;
    /* Adjust size if needed */
    font-weight: 600;
    /* Make text bold */
    text-align: center;
    /* Center text horizontally */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    /* Padding for the button */
    border-radius: 12px;
    /* Rounded corners */
    background: #000;
    /* Background color (green) */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Smooth hover effect */
}

.pricing-btn-primary {
    background: #00ddf9;
}

.pricing-btn:hover {
    transform: scale(1.05);
    /* Slightly enlarge on hover */
}

/* Optional: Change button color on active click (when pressed) */
.pricing-btn:active {
    transform: scale(1);
    /* Keep normal size on click */
    box-shadow: 0 6px 10px rgba(34, 197, 94, 0.5);
    /* Slightly stronger shadow */
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .pricing-title {
        font-size: 26px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 22px 18px 20px;
    }
}

:root {
    --addons-bg: #f5f7fb;
    --card-bg: #ffffff;
    --card-border: #e1e4f0;
    --text-main: #111827;
    --text-sub: #6b7280;
    --accent: #4f46e5;
}

.addons-section {
    padding: 60px 16px 80px;
    background: linear-gradient(90deg, rgba(0, 221, 249, 0.08), rgba(96, 165, 250, 0.08));
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.addons-container {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.addons-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.addons-subtitle {
    font-size: 15px;
    color: var(--text-sub);
    margin-bottom: 36px;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 32px;
}

.addon-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--card-bg);
    border-radius: 18px;
    padding: 22px 20px;
    border: 1px solid var(--card-border);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    text-align: left;
}

.addon-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(0, 221, 249, 0.08), rgba(96, 165, 250, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #00ddf9
}

.addon-content {
    flex: 1;
}

.addon-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

.addon-desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-sub);
    margin-bottom: 10px;
}

.addon-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
}

.addon-meta {
    font-size: 12px;
    color: var(--text-sub);
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 992px) {
    .addons-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .addons-title {
        font-size: 26px;
    }

    .addons-grid {
        grid-template-columns: 1fr;
    }

    .addon-card {
        padding: 18px 16px;
    }
}

:root {
    --fc-bg: #ffffff;
    --fc-border: #e5e7eb;
    --fc-header: #111827;
    --fc-sub: #6b7280;
}

.fc-section {
    padding: 70px 16px 10px;
    background: var(--fc-bg);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
}

.fc-container {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.fc-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--fc-header);
    margin-bottom: 8px;
}

.fc-subtitle {
    font-size: 15px;
    color: var(--fc-sub);
    margin-bottom: 36px;
}

.fc-table-wrapper {
    overflow-x: auto;
}

.fc-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.fc-table thead th {
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    padding: 12px 18px;
    border-bottom: 1px solid var(--fc-border);
    color: var(--fc-sub);
}

.fc-table tbody td {
    font-size: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--fc-border);
    color: #111827;
}

.fc-table tbody tr:last-child td {
    border-bottom: none;
}

.fc-table tbody td:not(:first-child) {
    text-align: center;
    width: 18%;
}

.fc-table tbody td:first-child {
    font-weight: 500;
    width: 46%;
    text-align: left;
}

.fc-table tbody td:nth-child(n + 2) {
    color: #111827;
}

.fc-table tbody td:nth-child(n + 2):not(:contains("No")):not(:contains("Optional")) {
    font-size: 16px;
}

/* Small screens */
@media (max-width: 768px) {
    .fc-title {
        font-size: 26px;
    }

    .fc-table {
        min-width: 100%;
    }
}

:root {
    --roi-bg: #f5f7fb;
    --roi-card-bg: #ffffff;
    --roi-border: #e2e8f0;
    --roi-text-main: #111827;
    --roi-text-sub: #6b7280;
    --roi-primary: #020617;
    --roi-primary-alt: #4f46e5;
}

.roi-section {
    padding: 70px 16px 90px;
    background: var(--roi-bg);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.roi-container {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.roi-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--roi-text-main);
    margin-bottom: 8px;
}

.roi-subtitle {
    font-size: 15px;
    color: var(--roi-text-sub);
    max-width: 620px;
    margin: 0 auto 40px;
}

.roi-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    gap: 28px;
    align-items: stretch;
}

.roi-card {
    background: var(--roi-card-bg);
    border-radius: 18px;
    border: 1px solid var(--roi-border);
    padding: 24px 22px 22px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.roi-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.roi-card-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--roi-text-main);
    margin: 0 0 2px;
}

.roi-card-header p {
    font-size: 13px;
    color: var(--roi-text-sub);
    margin: 0;
}

.roi-card-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Form */
#roiForm {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.roi-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.roi-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--roi-text-main);
}

.roi-field input,
.roi-field select {
    border-radius: 10px;
    border: 1px solid #d1d5db;
    padding: 9px 11px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.roi-field input:focus,
.roi-field select:focus {
    border-color: var(--roi-primary-alt);
    box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.35);
}

.roi-help {
    font-size: 11px;
    color: var(--roi-text-sub);
}

.roi-btn {
    margin-top: 6px;
    border-radius: 999px;
    border: none;
    background: var(--roi-primary);
    color: #ffffff;
    padding: 11px 16px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease, opacity 0.1s ease;
}

.roi-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
    opacity: 0.96;
}

/* Results placeholder */
.roi-placeholder-icon {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    background: #f3f4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 40px auto 10px;
}

.roi-placeholder-text {
    text-align: center;
    font-size: 14px;
    color: var(--roi-text-sub);
    max-width: 260px;
    margin: 0 auto 32px;
}

/* Results content */
.hidden {
    display: none;
}

.roi-top-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.roi-stat-card {
    border-radius: 14px;
    padding: 10px 12px;
    background: #f3f4ff;
}

.roi-stat-card.green {
    background: #ecfdf3;
}

.roi-stat-card.blue {
    background: #e0f2fe;
}

.roi-stat-card.purple {
    background: #f3e8ff;
}

.roi-stat-card.orange {
    background: #fff7ed;
}

.roi-stat-card .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--roi-text-sub);
    display: block;
    margin-bottom: 4px;
}

.roi-stat-card .value {
    font-size: 18px;
    font-weight: 700;
    color: var(--roi-text-main);
}

.roi-banner {
    margin: 8px 0 20px;
    border-radius: 16px;
    padding: 14px 16px;
    background: linear-gradient(90deg, #020617, #4f46e5, #7c3aed);
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.roi-banner .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.9;
}

.banner-main {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.banner-currency {
    font-size: 18px;
    font-weight: 600;
}

.banner-value {
    font-size: 24px;
    font-weight: 700;
}

.banner-sub {
    font-size: 14px;
    font-weight: 600;
}

.roi-breakdown {
    margin-bottom: 16px;
}

.roi-breakdown h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--roi-text-main);
    margin-bottom: 8px;
}

.roi-breakdown-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 4px 0;
    color: var(--roi-text-main);
}

.roi-breakdown-row.total span:last-child {
    color: #16a34a;
    font-weight: 600;
}

.roi-actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.roi-secondary-btn,
.roi-primary-btn {
    flex: 1;
    border-radius: 999px;
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #d1d5db;
    background: #ffffff;
}

.roi-primary-btn {
    background: var(--roi-primary-alt);
    border-color: var(--roi-primary-alt);
    color: #ffffff;
}

.roi-primary-btn:hover {
    opacity: 0.95;
}

.roi-secondary-btn:hover {
    background: #f9fafb;
}

.roi-footnote {
    margin-top: 6px;
    font-size: 11px;
    color: var(--roi-text-sub);
}

/* Responsive */
@media (max-width: 960px) {
    .roi-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .roi-title {
        font-size: 26px;
    }

    .roi-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .roi-top-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.space-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 0px !important;
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .space-content-section {
        width: 100%;
        float: none;
        margin-bottom: 0px !important;
    }
}

.space-page-content.page-template {
    margin-bottom: 0px !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 */
}