/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */

/* Custom CSS for Nexus Cart
 *
 * This block allows you to customize theme colors and styles for the entire Nexus Cart template.
 *
 * To customize colors:
 * - Replace the var() references with your own hex colors or other CSS values.
 * - For example, instead of --primary: #4b5563; use --primary: #your-color;
 * - You can also override any CSS properties here.
 */

html {
    font-size: 14px;
}

:root {
    --white: #fff;

    /* Neutral shades */
    --neutral-50: #fbf9fa;
    --neutral-100: #f4f5f7;
    --neutral-200: #e4e4e7;
    --neutral-300: #d0d5dd;
    --neutral-400: #9ca3af;
    --neutral-500: #6b7280;
    --neutral-600: #4b5563;
    --neutral-700: #374151;
    --neutral-800: #1f2937;
    --neutral-900: #111827;
    --neutral-950: #030712;

    /* Neutral shades */
    /* define own pallet with brand colors */
    --primary-50: var(--neutral-50);
    --primary-100: var(--neutral-100);
    --primary-200: var(--neutral-200);
    --primary-300: var(--neutral-300);
    --primary-400: var(--neutral-400);
    --primary-500: var(--neutral-500);
    --primary-600: var(--neutral-600);
    --primary-700: var(--neutral-700);
    --primary-800: var(--neutral-800);
    --primary-900: var(--neutral-900);
    --primary-950: var(--neutral-900);

    /* Primary colors */
    /* Use shades from comments if `primary` colors use other colors, then neutral */
    --primary: var(--neutral-900);          /* var(--primary-600) */
    --primary-lifted: var(--neutral-800);   /* var(--primary-700) */
    --primary-accented: var(--neutral-700); /* var(--primary-800) */

    /* Secondary colors */
    --secondary: var(--neutral-500);
    --secondary-lifted: var(--neutral-600);
    --secondary-accented: var(--neutral-700);

    /* Success colors */
    --success: #00a63e;
    --success-lifted: #008236;
    --success-accented: #016630;

    /* Info colors */
    --info: #155dfc;
    --info-lifted: #1447e6;
    --info-accented: #193cb8;

    /* Notice colors */
    --notice: #7f22fe;
    --notice-lifted: #7008e7;
    --notice-accented: #5d0ec0;

    /* Warning colors */
    --warning: #f54a00;
    --warning-lifted: #ca3500;
    --warning-accented: #9f2d00;

    /* Error colors */
    --error: #e7000b;
    --error-lifted: #c10007;
    --error-accented: #9f0712;

    /* Grayscale colors */
    --grayscale: var(--neutral-900);
    --grayscale-lifted: var(--neutral-800);
    --grayscale-accented: var(--neutral-700);

    /* Neutral colors */
    --neutral: var(--neutral-500);
    --neutral-lifted: var(--neutral-600);
    --neutral-accented: var(--neutral-700);

    /* Text neutral colors */
    --text-inverted: var(--white);
    --text-muted: var(--neutral-400);
    --text-lifted: var(--neutral-500);
    --text-accented: var(--neutral-600);
    --text: var(--neutral-900);

    /* Border neutral colors */
    --border-muted: var(--neutral-200);
    --border: var(--neutral-300);
    --border-lifted: var(--neutral-400);
    --border-accented: var(--neutral-600);

    /* Background neutral colors */
    --bg: var(--white);
    --bg-muted: var(--neutral-50);
    --bg-lifted: var(--neutral-100);
    --bg-accented: var(--neutral-200);
    --bg-inverted: var(--neutral-900);

    /* Additional colors */
    --yellow-200: #fff085;
    --yellow-300: #ffdf20;
    --teal-300: #46edd5;
    --teal-400: #00d5be;
    --emerald-300: #5ee9b5;
    --pink-400: #fb64b6;

    /* Additional custom properties */
    /* Font sizes */
    --text-xs: 0.625rem;
    --text-sm: 0.75rem;
    --text-md: 0.875rem;
    --text-lg: 1rem;

    /* Spacing */
    --outline-sm: 1px;
    --outline-md: 2px;
    --outline-lg: 3px;

    /* Rounding */
    --rounding-sm: 0.25rem;
    --rounding-md: 0.5rem;
    --rounding-lg: 0.75rem;

    /* Other */
    --letter-spacing: 0em;
    --disabled-opacity: 25%;
}

/* -------------------------------------------------------------------------
   Hostopy — Contact page (contact.tpl)
   ------------------------------------------------------------------------- */
.hostopy-contact-page {
    padding-bottom: 2rem;
}

.hostopy-contact-hero .section__title .sub-title {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.hostopy-contact-lead {
    font-size: 1.05rem;
    line-height: 1.55;
    max-width: 36rem;
}

.hostopy-contact-card {
    background: var(--white);
    border: 1px solid var(--border-muted);
    border-radius: 1rem;
    padding: 1.5rem 1.5rem;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

@media (min-width: 992px) {
    .hostopy-contact-card {
        padding: 1.75rem 2rem;
    }
}

.hostopy-contact-card:hover {
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}

.hostopy-contact-card--accent {
    background: linear-gradient(135deg, #0f766e 0%, #047857 48%, #065f46 100%);
    border: none;
    color: var(--white);
    box-shadow: 0 18px 50px rgba(5, 95, 70, 0.35);
}

.hostopy-contact-card--accent:hover {
    box-shadow: 0 22px 56px rgba(5, 95, 70, 0.42);
}

.hostopy-contact-card--accent .hostopy-contact-name {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hostopy-contact-card--accent .hostopy-contact-role {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    font-weight: 600;
}

.hostopy-contact-card--accent .hostopy-contact-tagline {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hostopy-contact-card--form {
    min-height: 100%;
}

.hostopy-contact-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0;
    letter-spacing: -0.02em;
}

.hostopy-contact-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hostopy-contact-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.02em;
    color: #065f46;
    background: linear-gradient(145deg, #ecfdf5, #d1fae5);
    border: 2px solid rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
}

.hostopy-contact-card--accent .hostopy-contact-avatar {
    color: #065f46;
    background: var(--white);
    border-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.hostopy-contact-list__item {
    display: flex;
    gap: 0.875rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-muted);
}

.hostopy-contact-list__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hostopy-contact-list__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neutral-100);
    color: var(--success);
    flex-shrink: 0;
    font-size: 0.95rem;
}

.hostopy-contact-list__icon--wa {
    background: #ecfdf5;
    color: #059669;
}

.hostopy-contact-list__icon--wa-channel {
    background: #eff6ff;
    color: #2563eb;
}

.hostopy-contact-list__body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
    font-size: 0.95rem;
}

.hostopy-contact-list__label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    color: var(--neutral-500);
}

.hostopy-contact-email-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.15rem 0.25rem;
}

.hostopy-contact-list__body a {
    color: var(--success);
    font-weight: 600;
    text-decoration: none;
    word-break: break-word;
}

.hostopy-contact-list__body a:hover {
    text-decoration: underline;
    color: var(--success-lifted);
}

/* Primary support inbox — distinct from green action links */
.hostopy-contact-list__body a.hostopy-contact-list__link--support {
    color: #1d4ed8;
    font-weight: 700;
}

.hostopy-contact-list__body a.hostopy-contact-list__link--support:hover {
    color: #1e3a8a;
}

.hostopy-contact-list__body a.hostopy-contact-list__link--channel {
    color: #2563eb;
}

.hostopy-contact-list__body a.hostopy-contact-list__link--channel:hover {
    color: #1d4ed8;
}

.hostopy-contact-list__sep {
    color: var(--neutral-400);
    margin: 0 0.25rem;
    font-weight: 400;
}

.hostopy-contact-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.hostopy-contact-social__link {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--neutral-600);
    background: var(--neutral-100);
    border: 1px solid var(--border-muted);
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hostopy-contact-social__link:hover {
    transform: translateY(-3px);
    color: var(--white);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.15);
}

.hostopy-contact-social__link--ig:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

.hostopy-contact-social__link--fb:hover {
    background: #1877f2;
    border-color: transparent;
}

.hostopy-contact-social__link--yt:hover {
    background: #ff0000;
    border-color: transparent;
}

.hostopy-contact-social__link--wa:hover {
    background: #25d366;
    border-color: transparent;
}

.hostopy-contact-form .form-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--neutral-800);
    margin-bottom: 0.4rem;
}

.hostopy-contact-input,
.hostopy-contact-textarea {
    border-radius: 0.65rem;
    border: 1px solid var(--border);
    padding: 0.65rem 0.9rem;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hostopy-contact-input:focus,
.hostopy-contact-textarea:focus {
    border-color: var(--success);
    box-shadow: 0 0 0 3px rgba(0, 166, 62, 0.15);
    outline: none;
}

.hostopy-contact-textarea {
    resize: vertical;
    min-height: 140px;
}

.hostopy-contact-card--form .tg-btn {
    min-width: 10rem;
    justify-content: center;
}

.hostopy-contact-card--form .small a {
    color: var(--success);
    font-weight: 600;
    text-decoration: none;
}

.hostopy-contact-card--form .small a:hover {
    text-decoration: underline;
}

/* Footer — MSME block (first column, under social icons) */
.footer__msme-trust--widget {
    margin-top: 2.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    text-align: left;
    position: relative;
    z-index: 1;
}

/* MSME registration card (footer + blog) — certificate-style */
.hostopy-msme-reg-card {
    max-width: 300px;
    margin-inline: auto;
    margin-top: 0.75rem;
}

.bm-msme-wrap {
    max-width: 340px;
    margin: 0 auto 28px;
    text-align: center;
}

.hostopy-msme-reg-card__inner {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid rgba(0, 166, 62, 0.2);
    border-radius: 18px;
    box-shadow:
        0 14px 40px rgba(15, 23, 42, 0.1),
        0 5px 16px rgba(0, 166, 62, 0.12);
    text-align: center;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.hostopy-msme-reg-card__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 16%, rgba(0, 166, 62, 0.14), transparent 36%),
        radial-gradient(circle at 92% 88%, rgba(21, 93, 252, 0.1), transparent 34%);
    pointer-events: none;
}

.hostopy-msme-reg-card__inner::after {
    content: "MSME VERIFIED";
    position: absolute;
    top: 0.75rem;
    right: -2.25rem;
    transform: rotate(32deg);
    background: var(--success, #00a63e);
    color: #fff;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.22rem 2.5rem;
    box-shadow: 0 6px 14px rgba(0, 166, 62, 0.32);
    pointer-events: none;
    z-index: 3;
}

.hostopy-msme-reg-card__inner:hover {
    box-shadow:
        0 18px 50px rgba(15, 23, 42, 0.12),
        0 8px 20px rgba(0, 166, 62, 0.16);
    border-color: rgba(0, 166, 62, 0.38);
    transform: translateY(-2px);
}

.hostopy-msme-reg-card__logo-wrap {
    position: relative;
    z-index: 1;
    margin-bottom: 0.8rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px dashed rgba(15, 23, 42, 0.14);
}

.hostopy-msme-reg-card__logo {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: saturate(1.04) contrast(1.02);
}

.hostopy-msme-reg-card__udyam {
    position: relative;
    z-index: 1;
    margin: 0 0 0.62rem;
    color: #0f172a;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    background: #fff;
    border: 1px solid rgba(0, 166, 62, 0.3);
    border-radius: 999px;
    padding: 0.34rem 0.62rem;
    display: inline-block;
}

.hostopy-msme-reg-card__reg {
    position: relative;
    z-index: 1;
    margin: 0 0 0.28rem;
    color: #1f2937;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.32;
}

.hostopy-msme-reg-card__gov {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--success, #00a63e);
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

/* Sticky WhatsApp chat (FAB) — bottom-left */
.hostopy-wa-float {
    position: fixed;
    left: 1.25rem;
    bottom: 1.25rem;
    z-index: 9998;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #25d366;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    line-height: 1;
    text-decoration: none !important;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hostopy-wa-float:hover,
.hostopy-wa-float:focus-visible {
    background: #20bd5a;
    color: #fff !important;
    transform: scale(1.06);
    box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55), 0 6px 16px rgba(0, 0, 0, 0.14);
    outline: none;
}

@media (min-width: 992px) {
    .hostopy-wa-float {
        width: 3.75rem;
        height: 3.75rem;
        font-size: 2rem;
    }
}

.hostopy-header-meta-text {
    color: #6c7075;
    font-size: 14px;
    font-weight: 500;
}

.hostopy-notification-menu {
    min-width: 250px;
}

.hostopy-notification-list {
    padding: 10px;
}

.hostopy-notification-item {
    margin-bottom: 5px;
    padding: 5px;
}

.hostopy-notification-link {
    color: #333;
}

.hostopy-notification-empty {
    padding: 15px;
    text-align: center;
    color: #666;
}

.hostopy-header-logo-text {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    color: #111;
    text-decoration: none;
}

.hostopy-mobile-logo-text {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    color: #111;
    text-decoration: none;
}

/* Keep top header + dropdowns above page content */
.transparent-header {
    position: relative !important;
    z-index: 300000 !important;
    isolation: isolate;
}

.tg-header__top {
    position: relative !important;
    z-index: 300001 !important;
}

ul.top-header {
    position: relative !important;
    z-index: 300002 !important;
}

/* Compact two-column domain mega menu */
.tg-mega-menu-wrap-three .mega-menu-item-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
}

.tg-mega-menu-wrap-three {
    width: 1320px;
    align-items: flex-start;
}

.tg-mega-menu-wrap-three .tg-mega-menu-left-side-two {
    flex: 1 1 65%;
    max-width: 65%;
    padding-right: 18px;
}

.tg-mega-menu-wrap-three .tg-mega-menu-right-side-two {
    flex: 1 1 35%;
    max-width: 35%;
}

.tg-mega-menu-wrap-three .mega-menu-item-three {
    margin-bottom: 0;
}

.tg-mega-menu-wrap-three .mega-menu-item-three a {
    min-height: 92px;
    padding: 14px 14px;
    align-items: flex-start;
}

.tg-mega-menu-wrap-three .mega-menu-item-three a .icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
}

.tg-mega-menu-wrap-three .mega-menu-item-three a .content {
    max-width: none;
    width: auto;
    flex: 1;
}

.tg-mega-menu-wrap-three .mega-menu-item-three a .content .title {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 4px;
}

.tg-mega-menu-wrap-three .mega-menu-item-three a .content span {
    font-size: 14px;
    line-height: 1.35;
}

.tg-mega-menu-wrap-three .mega-menu-item-three.active a {
    background: #fff;
    border-color: #edf1f7;
}

.tgmobile__menu {
    z-index: 9999;
}

body[data-templatefile="clientarea"] #main-body,
body[data-templatefile="clientareahome"] #main-body {
    padding-top: 200px !important;
}

@media (max-width: 1199.98px) {
    .tg-mega-menu-wrap-three {
        width: 960px;
    }

    .tg-mega-menu-wrap-three .tg-mega-menu-left-side-two,
    .tg-mega-menu-wrap-three .tg-mega-menu-right-side-two {
        max-width: 100%;
        flex-basis: 100%;
        padding-right: 0;
    }

    .tg-mega-menu-wrap-three .mega-menu-item-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1500px) {
    .tg-mega-menu-wrap-three {
        width: 1150px;
    }
}

.hostopy-mega-menu-wide {
    width: 700px;
}

.hostopy-mega-menu-left-full {
    width: 100%;
}

.banner__content .title,
.banner__content > p {
    font-family: "Open Sans", "Inter", "Segoe UI", Arial, sans-serif;
}

.hostopy-mega-menu-support {
    width: 980px;
    display: flex;
    gap: 28px;
}

.hostopy-mega-menu-support .hostopy-mega-menu-left-full {
    width: calc(100% - 300px);
}

.hostopy-support-menu-banner {
    width: 272px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, #f5fbff 0%, #ecf7ff 100%);
    border: 1px solid #e4eefb;
    padding: 14px;
    box-shadow: 0 16px 28px rgba(7, 42, 94, 0.08);
}

.hostopy-support-menu-banner img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
}

.hostopy-support-menu-banner .title {
    font-size: 22px;
    line-height: 1.2;
    margin: 0 0 8px;
}

.hostopy-support-menu-banner p {
    margin: 0 0 14px;
    color: #5a6472;
    font-size: 14px;
    line-height: 1.5;
}

.hostopy-support-menu-banner .tg-btn,
.hostopy-support-menu-cta {
    width: 100%;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    font-size: 16px !important;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff !important;
    background: #2d8f2f;
}

.hostopy-support-menu-banner .tg-btn:hover,
.hostopy-support-menu-banner .tg-btn:focus-visible,
.hostopy-support-menu-cta:hover,
.hostopy-support-menu-cta:focus-visible {
    color: #ffffff !important;
    background: #247826;
}

.hostopy-support-menu-cta {
    text-decoration: none;
}

.hostopy-support-menu-cta-text {
    position: relative;
    z-index: 2;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

@media (max-width: 1199px) {
    .hostopy-mega-menu-support {
        width: 760px;
        gap: 20px;
    }

    .hostopy-mega-menu-support .hostopy-mega-menu-left-full {
        width: calc(100% - 250px);
    }

    .hostopy-support-menu-banner {
        width: 230px;
    }
}

@media (max-width: 991px) {
    .hostopy-mega-menu-support {
        width: 100%;
        display: block;
    }

    .hostopy-mega-menu-support .hostopy-mega-menu-left-full,
    .hostopy-support-menu-banner {
        width: 100%;
    }

    .hostopy-support-menu-banner {
        margin-top: 16px;
    }
}

.hostopy-domain-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
}

.hostopy-domain-tld-item {
    border: 1px solid #f1f2f5;
    border-radius: 8px;
    padding: 25px 15px;
}

.hostopy-domain-tld-img-wrap {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hostopy-domain-tld-img {
    max-height: 45px;
    max-width: 100%;
}

.hostopy-domain-price {
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

.hostopy-domain-period {
    font-size: 14px;
    font-weight: 500;
    color: #777;
}

.hostopy-domain-unavailable {
    font-size: 14px;
    color: #ff4f4f;
}

.hostopy-domain-heading {
    margin: 0;
    font-weight: 700;
    color: #333;
}

.hostopy-domain-filter {
    font-size: 14px;
    padding: 8px 15px;
    margin-right: 5px;
    margin-bottom: 5px;
    background: #f8f9fa;
    color: #555;
    border: 1px solid #e5e7eb;
}

.hostopy-domain-table-wrap {
    padding: 20px;
}

.hostopy-domain-table {
    border: none;
}

.hostopy-domain-thead {
    background: #f8f9fa;
}

.hostopy-domain-th {
    border-top: none !important;
}

.hostopy-input-no-left {
    border-left: none;
}

.hostopy-input-no-sides {
    border-left: none;
    border-right: none;
}

.hostopy-reveal-pw-btn {
    border: 1px solid #e5e7eb;
    border-left: none;
    background: transparent;
    color: #a0aabf;
    border-radius: 0 8px 8px 0;
}

.hostopy-muted-link,
.hostopy-muted-text {
    color: #6b7280;
}

.hostopy-remember-label {
    font-size: 14px;
    color: #6b7280;
    padding-top: 2px;
}

.hostopy-login-submit {
    width: auto;
    padding: 0 30px;
}

.hostopy-hidden-pixel,
.hostopy-display-none {
    display: none;
}

.hostopy-flex-shrink-0 {
    flex-shrink: 0;
}

.hostopy-dot {
    width: 10px;
    height: 10px;
}

.hostopy-pre-wrap {
    line-height: 1.65;
    white-space: pre-wrap;
    word-break: break-word;
}

.hostopy-sitejet-preview {
    min-height: 130px;
    border: 1px solid #ddd;
    transition: opacity 0.2s ease-in-out;
    opacity: 0;
}

.hostopy-sitejet-flex {
    gap: 6px;
    min-width: 250px;
}

.hostopy-sitejet-btn-min {
    min-width: 140px;
}

.hostopy-progress-10 {
    height: 10px;
}

.hostopy-mt-10 {
    margin-top: 10px;
}

.hostopy-display-table {
    display: table;
}

.hostopy-footer-logo-text {
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    color: #111827;
    text-decoration: none;
}

.hostopy-footer-contact {
    margin-top: 12px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.5;
}

.hostopy-footer-contact a {
    color: #111827;
    text-decoration: none;
}

.hostopy-footer-contact a:hover {
    color: var(--tg-theme-primary);
}

main.main-area.fix .tg-link-btn,
main.main-area.fix .tg-link-btn .effect-1 {
    color: #0f172a;
}

main.main-area.fix .banner__price span,
main.main-area.fix .banner__price strong,
main.main-area.fix .pricing-tab .tab-btn strong,
main.main-area.fix .features__item-three.features__item-ten .features__content-three p,
main.main-area.fix .features__item-three.features__item-ten .features__content-three p span {
    color: #111827;
}

/* Premium SaaS UI Overrides */
.pricing__box {
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 1.25rem;
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
}

.pricing__box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.12);
}

.features__item, .features__item-two, .features__item-three {
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
}

.features__item:hover, .features__item-two:hover, .features__item-three:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}

.tg-btn {
    transition: all 0.3s ease;
}

.tg-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

/* SEO Block Styling */
.hostopy-seo-block {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 5rem 0;
}

.hostopy-seo-block .seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.hostopy-seo-block h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hostopy-seo-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.hostopy-seo-block p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* -------------------------------------------------------------------------
   WHMCS Verification Banners - Hostopy themed card style
   ------------------------------------------------------------------------- */
.verification-banner {
    margin: 14px auto 10px;
    padding: 12px 0;
    border: 1px solid #e5edf7;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.verification-banner .container {
    max-width: 1240px;
}

.verification-banner .row {
    align-items: center;
}

.verification-banner .text {
    margin-left: 6px;
    color: #334155;
    font-size: 14px;
    font-weight: 500;
}

.verification-banner .fas,
.verification-banner .fal,
.verification-banner .far {
    color: #f59e0b;
    font-size: 18px;
}

.verification-banner button.close {
    opacity: 0.45;
    color: #64748b;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.verification-banner button.close:hover {
    opacity: 1;
    color: #0f172a;
}

.verification-banner .btn-action {
    border-radius: 6px;
    border: 0;
    background: #111827;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 14px;
    line-height: 1.2;
    text-transform: none;
}

.verification-banner .btn-action:hover {
    background: #1f2937;
    color: #fff;
}

@media (max-width: 767.98px) {
    .verification-banner {
        margin: 10px 10px 8px;
        padding: 10px 0;
    }

    .verification-banner .text {
        font-size: 13px;
    }
}
