:root {
    --e-global-color-primary: #004aad;
    --e-global-color-secondary: #00bf63;
    --e-global-color-accent: #00bf63;
    --e-global-color-text: #5a6c84;
    --e-global-color-very-dark-blue: #0b1f3a;
    --e-global-color-very-dark-gray: #3e4f67;
    --e-global-color-very-light-gray: #eef4ff;
    --e-global-color-black: #0b1f3a;
    --e-global-color-white: #ffffff;
}

body.brand-site {
    font-family: 'Barlow Condensed', sans-serif;
    background: #f8fbff;
    color: var(--e-global-color-very-dark-blue);
}
body.brand-site p,
body.brand-site .text-size-16,
body.brand-site .text-size-18,
body.brand-site li,
body.brand-site input,
body.brand-site textarea,
body.brand-site .footer-links a,
body.brand-site .footer-links li {
    font-family: 'Oxygen', sans-serif;
    color: var(--e-global-color-text);
}
body.brand-site h1,
body.brand-site h2,
body.brand-site h3,
body.brand-site h4,
body.brand-site h5,
body.brand-site h6 {
    color: var(--e-global-color-very-dark-blue);
}

.brand-topbar {
    padding: 10px 0;
    background: linear-gradient(90deg, #004aad 0%, #003680 100%);
}
.brand-topbar .social-icons ul li,
.brand-topbar .email a {
    color: #ffffff !important;
}
.brand-topbar .email {
    display: flex;
    align-items: center;
    gap: 8px;
}
.brand-topbar .emailicon img {
    width: 18px;
}

.brand-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 74, 173, 0.08);
}
.brand-header .navbar {
    padding: 16px 0;
}
.brand-logo {
    max-width: 200px;
}
.brand-header .navbar-nav li {
    margin: 0 12px;
}
.brand-header .navbar-nav .nav-link {
    font-family: 'Oxygen', sans-serif;
    color: var(--e-global-color-very-dark-blue) !important;
    font-weight: 700;
}
.brand-header .navbar-nav .nav-link:hover,
.brand-header .navbar-nav .active > .nav-link {
    color: var(--e-global-color-primary) !important;
}
.brand-header .nav-cta-item {
    margin-left: 18px !important;
}
.brand-header .navbar-nav .signup,
.btn-brand-primary,
.btn-brand-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 14px;
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
    transition: all 0.25s ease-in-out;
}
.brand-header .navbar-nav .signup,
.btn-brand-primary {
    color: #ffffff !important;
    background: linear-gradient(135deg, #004aad 0%, #00bf63 100%);
    box-shadow: 0 12px 24px rgba(0, 74, 173, 0.16);
}
.brand-header .navbar-nav .signup:hover,
.btn-brand-primary:hover {
    transform: translateY(-2px);
    color: #ffffff !important;
    box-shadow: 0 16px 30px rgba(0, 74, 173, 0.22);
}
.btn-brand-secondary {
    color: var(--e-global-color-primary);
    background: rgba(0, 74, 173, 0.07);
    border: 1px solid rgba(0, 74, 173, 0.14);
}
.btn-brand-secondary:hover {
    color: var(--e-global-color-primary);
    background: rgba(0, 74, 173, 0.12);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(0, 191, 99, 0.12);
    color: var(--e-global-color-secondary);
    font-family: 'Oxygen', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.section-space {
    padding: 90px 0;
}
.light-section {
    background: #ffffff;
}
.section-heading {
    max-width: 820px;
    margin: 0 auto 48px;
}
.section-heading.text-left {
    margin: 0 0 32px;
}
.section-heading h2,
.brand-sub-banner h1,
.brand-hero h1 {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 18px;
}
.brand-hero h1 span {
    color: var(--e-global-color-primary);
}
.section-heading p,
.brand-hero p,
.brand-sub-banner p {
    font-size: 18px;
    line-height: 1.8;
}

.brand-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 72px;
    background:
        radial-gradient(circle at 12% 16%, rgba(0, 74, 173, 0.09), transparent 26%),
        radial-gradient(circle at 90% 10%, rgba(255, 222, 89, 0.16), transparent 22%),
        linear-gradient(135deg, #f8fbff 0%, #eef8f3 100%);
}
.hero-copy {
    max-width: 610px;
}
.hero-bullets,
.hero-actions,
.hero-mini-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.hero-bullets {
    margin: 26px 0;
}
.hero-bullets span {
    padding: 8px 16px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(0, 74, 173, 0.08);
    color: var(--e-global-color-primary);
    font-family: 'Oxygen', sans-serif;
    font-size: 14px;
    font-weight: 700;
}
.hero-actions {
    margin: 0 0 28px;
}
.hero-mini-points {
    gap: 16px;
}
.mini-point {
    min-width: 150px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(0, 74, 173, 0.08);
}
.mini-point strong {
    display: block;
    font-size: 20px;
    color: var(--e-global-color-primary);
}
.mini-point span {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.5;
}
.hero-illustration,
.showcase-image,
.sub-banner-art,
.wide-showcase,
.payment-strip {
    filter: drop-shadow(0 22px 34px rgba(0, 74, 173, 0.10));
}
.hero-visual {
    padding: 10px 0 0;
}
.hero-illustration {
    max-height: 760px;
}

.feature-card,
.contact-card,
.contact-side-panel,
.cta-box,
.usecase-card,
.trust-item {
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(0, 74, 173, 0.08);
    box-shadow: 0 16px 34px rgba(8, 35, 74, 0.06);
}
.feature-card {
    height: 100%;
    padding: 32px 28px;
}
.feature-card h3 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 12px;
}
.feature-card p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.8;
}
.feature-icon {
    width: 78px;
    height: 78px;
    margin-bottom: 20px;
}
.pillar-card {
    text-align: left;
}

.about-band,
.payout-band,
.service-highlight-section,
.support-card-section,
.cta-section,
.brand-sub-banner {
    background:
        radial-gradient(circle at 4% 20%, rgba(0, 74, 173, 0.08), transparent 22%),
        radial-gradient(circle at 95% 12%, rgba(0, 191, 99, 0.10), transparent 20%),
        linear-gradient(135deg, #f8fbff 0%, #eef8f3 100%);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.trust-item {
    padding: 24px 22px;
}
.trust-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
}
.trust-item p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.7;
}
.stack-list {
    display: grid;
    gap: 16px;
}
.stack-item {
    display: grid;
    gap: 6px;
    padding: 18px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(0, 74, 173, 0.08);
}
.stack-item strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    line-height: 1.1;
    color: var(--e-global-color-very-dark-blue);
    font-weight: 400;
}
.stack-item span {
    font-family: 'Oxygen', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--e-global-color-text);
}
.compact-stack .stack-item strong {
    font-size: 24px;
}

.usecase-grid .usecase-card,
.usecase-grid-inner .usecase-card {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 18px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.03) 0%, rgba(0, 191, 99, 0.07) 100%);
}
.usecase-card span {
    font-size: 24px;
    line-height: 1.2;
    color: var(--e-global-color-very-dark-blue);
}
.usecase-card.stretch {
    justify-content: flex-start;
    text-align: left;
    padding: 22px 24px;
}

.brand-sub-banner {
    padding: 86px 0 72px;
}
.sub-banner-art {
    max-height: 430px;
}

.contact-card,
.contact-side-panel {
    padding: 34px 32px;
}
.contact-form .form-control {
    min-height: 56px;
    padding: 14px 18px;
    border-radius: 16px;
    border: 1px solid rgba(0, 74, 173, 0.12);
    background: #ffffff;
    box-shadow: none;
}
.contact-form textarea.form-control {
    min-height: 180px;
    resize: vertical;
}
.contact-form .form-control:focus {
    border-color: rgba(0, 74, 173, 0.35);
    box-shadow: 0 0 0 0.2rem rgba(0, 74, 173, 0.08);
}

.cta-box {
    padding: 56px 42px;
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.05) 0%, rgba(0, 191, 99, 0.10) 100%), #ffffff;
}
.cta-box h2 {
    margin-bottom: 16px;
}
.cta-box p {
    max-width: 700px;
    margin: 0 auto 24px;
}

.brand-footer {
    padding: 0 0 26px;
    background: #0b1f3a;
}
.footer-top {
    padding: 70px 0 30px;
}
.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-logo-brand {
    max-width: 210px;
}
.footer-title {
    color: #ffffff !important;
    font-size: 24px;
    margin-bottom: 16px;
}
.footer-text,
.footer-links li,
.footer-links a,
.footer-bottom p {
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 15px;
    line-height: 1.9;
}
.footer-links a:hover {
    color: #ffffff !important;
    text-decoration: none;
}
.payment-strip {
    max-width: 280px;
}

@media (max-width: 1199px) {
    .section-heading h2,
    .brand-sub-banner h1,
    .brand-hero h1 {
        font-size: 46px;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .brand-header .nav-cta-item {
        margin-left: 0 !important;
        margin-top: 10px !important;
    }
    .section-space,
    .brand-sub-banner,
    .brand-hero {
        padding: 72px 0;
    }
    .section-heading h2,
    .brand-sub-banner h1,
    .brand-hero h1 {
        font-size: 42px;
    }
    .hero-copy,
    .section-heading {
        max-width: 100%;
    }
    .hero-visual {
        margin-top: 30px;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .feature-card,
    .contact-card,
    .contact-side-panel,
    .cta-box {
        padding: 28px 24px;
    }
}

@media (max-width: 767px) {
    .brand-topbar .social-icons {
        text-align: left;
        margin-top: 8px;
    }
    .section-heading h2,
    .brand-sub-banner h1,
    .brand-hero h1 {
        font-size: 36px;
    }
    .hero-bullets,
    .hero-actions,
    .hero-mini-points {
        gap: 10px;
    }
    .mini-point {
        width: 100%;
    }
    .feature-card h3,
    .stack-item strong,
    .usecase-card span {
        font-size: 24px;
    }
    .footer-top {
        padding-top: 56px;
    }
}

@media (max-width: 575px) {
    .brand-logo {
        max-width: 150px;
    }
    .section-heading h2,
    .brand-sub-banner h1,
    .brand-hero h1 {
        font-size: 32px;
    }
    .btn-brand-primary,
    .btn-brand-secondary,
    .brand-header .navbar-nav .signup {
        width: 100%;
    }
    .cta-box {
        padding: 32px 20px;
    }
}


.brand-topbar .social-icons a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}
.brand-topbar .social-icons a:hover {
    color: #d6ffec;
}
.contact-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.contact-detail-item {
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(0,74,173,0.12);
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 16px 34px rgba(0,74,173,0.08);
}
.detail-label {
    display: block;
    font-size: 13px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #16a34a;
    margin-bottom: 8px;
    font-weight: 700;
}
.contact-detail-item a {
    color: #081f3a;
    font-size: 18px;
    font-weight: 700;
    word-break: break-word;
    text-decoration: none;
}
.contact-detail-item a:hover {
    color: #004aad;
}
.floating-contact-buttons {
    position: fixed;
    right: 18px;
    bottom: 22px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.float-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 18px 35px rgba(8,31,58,0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.float-btn i {
    font-size: 22px;
}
.float-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 22px 38px rgba(8,31,58,0.24);
}
.whatsapp-btn {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}
.telegram-btn {
    background: linear-gradient(135deg, #004aad, #0b63d8);
}
@media (max-width: 767px) {
    .contact-detail-grid {
        grid-template-columns: 1fr;
    }
    .floating-contact-buttons {
        right: 14px;
        bottom: 16px;
    }
    .float-btn {
        padding: 10px 14px;
    }
    .float-btn span {
        display: none;
    }
}
