/*--------------------------------------------------------------
  # General all styles
  Frontend_style_blue
  --------------------------------------------------------------*/


/* All  variables colors */

 :root {
    /* === Paleta corporativa === */
    --color-bg:            #ffffff;
    --color-primary:       #009ce3;
    --color-dark:          #002169;
    --color-white:         #ffffff;
    --color-light:         #f7f7f7;

    /* === Tokens derivados (mapean la nueva paleta) === */
    --color-primary-blue:  #002169;                  /* hover oscuro de primary */
    --color-dark-blue-1:   rgba(0, 33, 105, 0.9);    /* overlay hero (dark 90%) */
    --color-dark-blue-2:   #002169;                  /* footer fondo */
    --color-primary-light: rgba(0, 156, 227, 0.15);  /* tint suave de primary */
    --color-white-1:       #ddd;
    --color-white-2:       #eee;
    --color-form-input:    #dddde0;
    --color-black:         #002169;                  /* texto headings sobre blanco */
    --color-grey:          #002169;                  /* texto body sobre blanco */
    --color-grey-1:        rgba(0, 33, 105, 0.72);   /* texto descriptivo / secundario */
    --color-grey-2:        rgba(0, 33, 105, 0.2);    /* separadores sutiles */
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background: var(--color-white);
    color: var(--color-grey);
    font-family: 'Poppins', sans-serif;
}


/* button sections */

.btn:active,
.btn:focus {
    color: var(--color-primary);
    outline: none!important;
    border: none!important;
    text-decoration: none;
    cursor: s;
}


/* button text*/

.btn-text:link,
.btn-text:visited {
    text-align: left;
    color: var(--color-primary);
    display: inline-block;
    text-decoration: none;
    border: none;
    padding: 3px;
    font-size: 14px;
    outline: none;
    font-weight: 400;
    border-bottom: 1px solid var(--color-primary);
    transition: all .2s;
    border-radius: 0%;
}

.btn-text:link:hover,
.btn-text:visited:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    border-radius: 0%;
    padding: 4px;
}

.btn-text:link:active,
.btn-text:visited:active {
    transform: translateY(0);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}


/* anchor sections */

a,
a:hover,
a:active,
a:focus {
    color: var(--color-primary);
    outline: none;
    text-decoration: none;
    transition: 0.5s;
}


/* paragraph sections */

p {
    padding: 0;
    margin: 0 0 30px 0;
}


/* heading sections */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}


/* Back to top button */

.back-to-top {
    position: fixed;
    display: none;
    background: var(--color-primary);
    color: var(--color-white);
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

.back-to-top i {
    padding-top: 12px;
    color: var(--color-white);
}

.back-to-top:hover {
    background-color: var(--color-primary-blue);
}
.auth-page{
    background: var(--color-dark) !important;
}


/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/

#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 13px 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s all;
}

#header.header-transparent {
    background: transparent;
}

#header.header-scrolled {
    background: var(--color-white);
    padding: 18px 0;
    color: var(--color-primary);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

#header.header-scrolled .nav-menu li a {
    color: var(--color-primary);
}

#header.header-scrolled .btn-log {
    background: var(--color-primary);
    color: var(--color-white) !important;
}

#header .logo {
    font-size: 24px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
}

#header .logo a {
    color: var(--color-white);
}

/* SVG logo — tamaño fijo en todos los estados */
#header .logo svg {
    height: 82px;
    width: auto;
    display: block;
}

/* Estado inicial — navy → blanco */
#header:not(.header-scrolled) .logo .st1 {
    fill: #ffffff !important;
}

/* Estado scrolled — restaurar navy original */
#header.header-scrolled .logo .st1 {
    fill: #012169 !important;
}

/* .st0 (azul claro "Limited" + alas) permanece igual en ambos estados */

@media (max-width: 992px) {
    #header .logo {
        font-size: 28px;
    }
}


/*--------------------------------------------------------------
  # Intro Section
  --------------------------------------------------------------*/

#intro {
    display: table;
    width: 100%;
    height: 100vh;
    background: rgba(16, 0, 34, 0.5);
    z-index: 10;
}

#intro .carousel-item {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#intro .carousel-item::before {
    content: '';
    background-color: var(--color-dark-blue-1);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#intro .carousel-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#intro .carousel-background img {
    max-width: 100%;
}

@media (max-width: 600px) {
    #intro .carousel-background img {
        max-width: 100%;
        height: 100vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}
#intro .carousel-content {
    text-align: center;
}

#intro h2 {
    color: var(--color-white);
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
}

#intro p {
    width: 80%;
    margin: 0 auto 30px auto;
    color: var(--color-white);
    font-size: 20px;
}

#intro .carousel-fade {
    overflow: hidden;
}

#intro .carousel-fade .carousel-inner .carousel-item {
    transition-property: opacity;
}

#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
    opacity: 0;
}

#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
    opacity: 1;
    transition: 0.5s;
}

#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

#intro .carousel-control-prev,
#intro .carousel-control-next {
    width: 10%;
}

#intro .carousel-control-next-icon,
#intro .carousel-control-prev-icon {
    background: none;
    font-size: 32px;
    line-height: 1;
}

#intro .carousel-indicators li {
    cursor: pointer;
}

#intro .btn-get-started {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: var(--color-white);
    background: var(--color-primary);
}

#intro .btn-get-started:hover {
    background: var(--color-white);
    color: var(--color-primary);
}


/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/


/* Desktop Navigation */

.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu>ul {
    display: flex;
}

.nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    padding: 10px 0 10px 30px;
}

.nav-menu a {
    display: block;
    position: relative;
    color: var(--color-white);
    transition: 0.3s;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    font-weight: 500;
}

.nav-menu .btn-log {
    padding: 12px 20px;
    background-color: var(--color-white);
    color: var(--color-primary);
    display: flex;
    margin-top: -8px;
    margin-left: 15px;
    border-radius: 50px;
    transition: all .3s;
}

.nav-menu .btn-log:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    display: block;
    border-radius: 50px;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
    color: var(--color-primary);
}

/* ─── MEGA DROPDOWN ─── */
.nav-menu li.mega-drop {
    position: relative;
}
.mega-arrow {
    font-size: 11px;
    margin-left: 3px;
    transition: transform 0.2s;
    display: inline-block;
}
.mega-drop:hover .mega-arrow {
    transform: rotate(180deg);
}
.mega-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0,33,105,0.10);
    box-shadow: 0 20px 48px rgba(0,33,105,0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 9999;
    min-width: 460px;
}
.mega-drop:hover > .mega-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
/* Temporarily suppress dropdown on first page load */
.mega-drop.suppress-on-load:hover > .mega-panel {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateX(-50%) translateY(6px) !important;
}
/* Invisible bridge fills the gap so hover doesn't break when crossing from nav item to panel */
.mega-panel::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}
/* Anchor the panel relative to the full header width */
#header .container-fluid {
    position: relative;
}
.mega-panel-inner {
    padding: 24px;
    white-space: normal;
}

/* About & Plans: 2-col grid */
.mega-panel--about .mega-panel-inner,
.mega-panel--plans .mega-panel-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    width: 100%;
    gap: 8px;
}

/* Solutions: side-by-side layout */
.mega-panel--solutions {
    min-width: 960px;
    width: 960px;
}
.mega-panel--solutions .mega-panel-inner {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    width: 100%;
    gap: 0;
}
.mega-solutions-main {
    padding: 8px 24px 8px 8px;
    border-right: 1px solid rgba(0,33,105,0.08);
}
.mega-solutions-side {
    padding: 8px 8px 8px 24px;
}
.mega-solutions-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4px;
}

/* Section labels */
.mega-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(0,33,105,0.4);
    text-transform: uppercase;
    margin-bottom: 14px;
    padding-left: 4px;
}

/* Cards */
.mega-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none !important;
    transition: background 0.15s;
    color: var(--color-dark) !important;
    overflow: hidden;
    min-width: 0;
}
.mega-card:hover {
    background: rgba(0,156,227,0.06);
    color: var(--color-dark) !important;
    text-decoration: none !important;
}
.mega-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(0,156,227,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mega-card-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-primary);
}
.mega-card-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 2px;
    line-height: 1.3;
}
.mega-card-desc {
    font-size: 12px;
    color: rgba(0,33,105,0.55);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.mega-card:hover .mega-card-title {
    color: var(--color-primary);
}

/* Side highlight (Solutions) */
.mega-highlight {
    background: rgba(0,33,105,0.03);
    border-radius: 12px;
    padding: 18px 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mega-highlight-stat {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1;
}
.mega-highlight-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    margin-bottom: 10px;
}
.mega-highlight-text {
    font-size: 12px;
    color: rgba(0,33,105,0.6);
    line-height: 1.5;
    margin-bottom: 16px;
}
.mega-highlight-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary) !important;
    text-decoration: none !important;
}
.mega-highlight-link:hover {
    color: var(--color-dark) !important;
    text-decoration: none !important;
}

/* Scrolled header: arrow stays readable */
#header.header-scrolled .mega-arrow {
    color: var(--color-dark);
}
/* ─── END MEGA DROPDOWN ─── */

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: var(--color-white);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.nav-menu .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 13px;
    text-transform: none;
    color: var(--color-dark);
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
    color: var(--color-primary);
}

.nav-menu .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down>a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover>ul {
        left: -100%;
    }
    .nav-menu .drop-down .drop-down>a:after {
        content: "\ea9d";
    }
}


/* Mobile Navigation */

.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #ffffff;
}

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: var(--color-white);
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: var(--color-dark-blue-2);
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: var(--color-primary);
    text-decoration: none;
}

.mobile-nav .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(26, 26, 26, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: var(--color-white);
}


/*--------------------------------------------------------------
  # Sections Headers
  --------------------------------------------------------------*/


/* Sections Header
--------------------------------*/

.section-header h3 {
    font-size: 32px;
    color: #111;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 16px;
}

.section-header h3::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-header h3::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: var(--color-primary);
    bottom: 0;
    left: calc(50% - 20px);
}

.section-header p {
    text-align: center;
    max-width: 700px;
    margin: 30px auto;
    font-size: 18px;
    line-height: 26px;
    color: var(--color-dark);
}


/* Section with background
--------------------------------*/

.section-bg {
    background: var(--color-light);
}


/*--------------------------------------------------------------
  # About Sections
  --------------------------------------------------------------*/

#about {
    background: var(--color-white);
    padding: 60px 0 40px 0;
    position: relative;
    z-index: 1;
}

#about::before {
    display: none;
}

#about .container {
    position: relative;
    z-index: 10;
}

/* Equal-height card row */
#about .about-cols {
    justify-content: center;
}
#about .about-cols > [class*="col-"] {
    display: flex;
}

#about .about-col {
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 33, 105, 0.08);
    margin-bottom: 20px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

#about .about-col .img {
    position: relative;
}

#about .about-col .img img {
    border-radius: 12px 12px 0 0;
}

#about .about-col .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0 10px 0;
}

#about .about-col .icon .svg {
    height: 3rem;
    width: 3rem;
    transition: 0.3s;
    fill: var(--color-primary);
}

#about .about-col:hover .icon .svg {
    fill: var(--color-primary-blue);
}

#about .about-col:hover i {
    color: var(--color-primary);
}

#about .about-col h2 {
    color: var(--color-black);
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    padding: 0;
    margin: 15px 0 12px 0;
    text-transform: uppercase;
}

#about .about-col h2 a {
    color: var(--color-black);
}

#about .about-col h2 a:hover {
    color: var(--color-primary-blue);
}

#about .about-col p {
    font-size: 14px;
    line-height: 24px;
    color: var(--color-grey-1);
    margin-bottom: 0;
    padding: 0;
    text-align: center;
}


/*--------------------------------------------------------------
  # Services Sections
  --------------------------------------------------------------*/

#services {
    background: var(--color-white);
    background-size: cover;
    padding: 60px 0 40px 0;
}

#services .box {
    margin: 30px 0px;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 33, 105, 0.07);
    border-radius: 16px;
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}

#services .col-md-6 {
    display: flex;
}

#services .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0 12px 0;
}

#services .icon .svg {
    height: 3rem;
    width: 3rem;
    transition: 0.3s;
    fill: var(--color-primary);
}

#services .title {
    margin-left: 0;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
}

#services .title a {
    color: var(--color-black);
}

#services .box:hover .title a {
    color: var(--color-primary);
}

#services .description {
    font-size: 14px;
    margin-left: 0;
    line-height: 24px;
    margin-bottom: 0;
    text-align: justify;
    text-align-last: center;
}


/*--------------------------------------------------------------
  # Pricing Sections
  --------------------------------------------------------------*/

#pricing {
    padding: 80px 0;
}

#pricing .pricing-box {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    border: 1px solid rgba(0, 33, 105, 0.08);
    padding: 35px 0px;
    border-radius: 16px;
    margin: 30px 10px;
    text-align: left;
    background: var(--color-white);
    overflow: hidden;
}

#pricing .pricing-box h3 {
    margin: -35px 0px -15px 0px;
    padding: 20px 15px;
    right: 10px;
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    border-radius: 16px 16px 0 0;
}

#pricing .pricing-box .cur {
    display: inline-flex;
    margin-top: 30px;
    margin-bottom: 10px;
}

#pricing .pricing-box .cur span {
    font-size: 18px;
    margin: 0 0px 0px 40px;
}

#pricing .pricing-box .cur h2 {
    font-size: 34px;
    font-weight: 600;
}

#pricing .pricing-box .cur h6 {
    margin-top: 17px;
    font-size: 15px;
    font-weight: 600;
    margin-left: 5px;
}

#pricing .pricing-box .price-list {
    text-align: center;
    margin: 0;
}

#pricing .pricing-box .price-list .list-unstyled {
    padding: 5px 0;
    list-style: none;
    color: var(--color-black);
    text-align: left;
    line-height: 20px;
}

#pricing .pricing-box .price-list .list-unstyled .list-item {
    padding: 10px 0 10px 30px;
    position: relative;
    margin: 0 30px;
}

#pricing .pricing-box .price-list .list-unstyled .list-item i {
    color: var(--color-primary);
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 6px;
}

#pricing .pricing-box .pricing-button {
    text-align: center;
}

#pricing .pricing-box .pricing-button .btn {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px 30px;
    border: none;
    outline: none;
    transition: 0.5s;
    border-radius: 50px;
}

#pricing .pricing-box .pricing-button .btn:hover {
    color: var(--color-white);
}


/*--------------------------------------------------------------
  # Chat / Support Widget (replaced Testimonials)
  --------------------------------------------------------------*/

/* Old testimonial overrides removed — they conflicted with chat bubbles */


/*--------------------------------------------------------------
  # Transactions Sections
  --------------------------------------------------------------*/

#transaction {
    padding: 60px 0;
}

#transaction .transaction-box {
    display: block;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    border: 1px solid rgba(0, 33, 105, 0.08);
    border-radius: 16px;
    margin: 0 10px;
}

#transaction .transaction-box .nav-tabs {
    background-color: var(--color-dark);
    display: block;
    padding: 25px 100px;
    color: var(--color-white);
}

@media (max-width: 600px) {
    #transaction .transaction-box .nav-tabs {
        padding: 8px 44px;
        display: inline-block;
        backface-visibility: none;
    }
}

#transaction .transaction-box .nav-tabs .nav-item {
    display: inline-block;
}

#transaction .transaction-box .nav-tabs .nav-item .nav-link {
    display: inline-block;
    text-transform: uppercase;
    color: var(--color-white);
    font-weight: 700;
    margin: 0px 40px;
    transition: color .4s;
}

@media (max-width: 600px) {
    #transaction .transaction-box .nav-tabs .nav-item .nav-link {
        margin: 0 5px;
        font-weight: 600;
        font-size: 16px;
    }
}

#transaction .transaction-box .nav-tabs .nav-item .nav-link.active {
    background: var(--color-white);
    color: var(--color-primary) !important;
    border: none;
}

#transaction .transaction-box .tab-content .tab-pane {
    overflow: hidden;
}

#testimonial {
    padding: 60px 0;
}

#testimonial .testimonial-box {
    padding: 30px;
    text-align: center;
    box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background: var(--color-white);
    margin: 10px;
}

#testimonial .testimonial-box img {
    height: 120px;
    height: 120px;
    border-radius: 50%;
}

#testimonial .testimonial-box .name {
    font-size: 20px;
    text-transform: uppercase;
    margin: 10px 0;
}

#testimonial .testimonial-box .stars {
    display: inline-block;
}

#testimonial .testimonial-box .stars i {
    color: var(--color-primary);
    margin-bottom: 20px;
}

#testimonial .testimonial-box p {
    position: relative;
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
}


/*--------------------------------------------------------------
  # Frequently ask questions Sections
  --------------------------------------------------------------*/

#faq {
    padding: 60px 0px;
    overflow: hidden;
    background: var(--color-light);
}

#faq #faq-list {
    padding: 0;
    list-style: none;
}

#faq #faq-list li {
    padding: 10px 20px;
    margin: 20px 0;
    background: var(--color-white);
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 33, 105, 0.07);
    border-radius: 12px;
}

#faq #faq-list a {
    padding: 18px 0;
    display: block;
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    line-height: 1;
    font-weight: 300;
    padding-right: 20px;
}

#faq #faq-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 16px;
}

#faq #faq-list p {
    margin-bottom: 20px;
}

#faq #faq-list a.collapse {
    color: var(--color-primary);
}

#faq #faq-list a.collapsed {
    color: var(--color-dark);
}

#faq #faq-list a.collapsed i::before {
    content: "\f2c7" !important;
}


/*--------------------------------------------------------------
  # Chat Widget
  --------------------------------------------------------------*/

#testimonials {
    padding: 80px 0;
}

#testimonials .section-header {
    margin-bottom: 40px;
}

/* ---- Chat Widget ---- */
.chat-widget {
  max-width: 520px;
  margin: 0 auto;
  background: #f0f2f5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,33,105,0.10);
  border: 1px solid rgba(0,33,105,0.08);
}
.chat-header-bar {
  background: #002169;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #4da8da;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.chat-header-info strong {
  color: #fff;
  font-size: 14px;
  display: block;
}
.chat-status {
  color: #5cb8e4;
  font-size: 12px;
}
.chat-body {
  padding: 20px 16px;
  max-height: 420px;
  overflow-y: auto;
  min-height: 380px;
}
.chat-bubble {
  display: flex;
  margin-bottom: 12px;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.chat-bubble.visible {
  opacity: 1;
  transform: translateY(0);
}
.chat-left {
  justify-content: flex-start;
}
.chat-right {
  justify-content: flex-end;
}
.bubble-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #4da8da;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 8px;
}
.chat-left .bubble-content {
  background: #ffffff;
  color: #002169;
  border-radius: 16px 16px 16px 4px;
  padding: 10px 14px;
  max-width: 78%;
  font-size: 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}
.chat-right .bubble-content {
  background: #4da8da;
  color: #fff;
  border-radius: 16px 16px 4px 16px;
  padding: 10px 14px;
  max-width: 78%;
  font-size: 14px;
}
.bubble-content p {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.45 !important;
  font-style: normal !important;
  color: inherit !important;
  width: auto !important;
  float: none !important;
  text-align: left !important;
}
.bubble-time {
  font-size: 11px;
  opacity: 0.55;
  margin-top: 4px;
  display: block;
  text-align: right;
}
.chat-typing {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}
.chat-typing.active {
  display: flex;
}
.typing-dots {
  background: #fff;
  border-radius: 16px;
  padding: 10px 14px;
  display: flex;
  gap: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}
.typing-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #90949c;
  animation: typingBounce 1.4s infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
}
@media (max-width: 576px) {
  .chat-body { padding: 14px 10px; min-height: 320px; max-height: 360px; }
  .bubble-content { max-width: 85% !important; font-size: 13px !important; }
}


/*--------------------------------------------------------------
  # Payments Sections
  --------------------------------------------------------------*/

#payments {
    padding: 60px 0;
    background: var(--color-light);
}

#payments img {
    max-width: 100%;
    opacity: 0.5;
    transition: 0.3s;
    padding: 15px 0;
}

#payments img:hover {
    opacity: 1;
}

#payments .owl-nav,
#payments .owl-dots {
    margin-top: 5px;
    text-align: center;
}

#payments .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-white-1);
    outline: none;
}

#payments .owl-dot.active {
    background-color: var(--color-primary);
}


/*--------------------------------------------------------------
  # forms Login | Input  Sections
  --------------------------------------------------------------*/

.auth {
    padding: 60px 0;
    overflow: hidden;
}

.h-100 {
    height: 100% !important;
    background: var(--color-dark-blue-1);
}

.auth__logo {
    max-height: 80px;
    max-width: 260px;
    margin: 10px auto 5px;
    display: block;
}

.auth .card {
    max-width: 450px;
    display: block;
    margin: 0 30px;
    padding: 20px 30px;
    border-color: #edf2f9;
    -webkit-box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
    box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
}

@media (max-width: 600px) {
    .auth .card {
        margin: 0 10px;
    }
}

.auth .card h1 {
    font-size: 26px;
    line-height: 29px;
    font-weight: 600;
    color: var(--color-dark);
}

.auth .card h2 {
    font-size: 17px;
    line-height: 29px;
    font-weight: 500;
    color: var(--color-dark);
    text-transform: capitalize;
}

.auth .card__form {
    width: 100%;
    background: transparent;
}

.auth .card__form ::-webkit-input-placeholder {
    color: #999;
}

.auth .card__form .form-control {
    display: block;
    width: 100%;
    padding: 22px 22px;
    font-size: .9375rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-dark);
    background-color: #fff;
    background-clip: padding-box;
    border-radius: 10px;
    -webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
}

.auth .card__form .form_control {
    display: block;
    width: 100%;
    padding: 8px 22px;
    font-size: .9375rem;
    border: 1px solid #999;
}

.auth .card__form input,
.auth .card__form select {
    border-radius: 10px;
    box-shadow: none;
    font-size: 12px;
    outline: none;
    padding: 20px 12px;
    transition: border-color .15s ease-in-out;
}


/* .auth .card__form select option{
  border: 1px solid #999;

} */

.auth .card__form input:focus,
.auth .card__form select:focus {
    border: 1px solid var(--color-dark-blue-1);
}

.auth .card__form label {
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    text-align: left!important;
}

.auth .card__form button {
    text-transform: capitalize;
    font-size: 15px;
    background: var(--color-primary) !important;
    font-weight: 500;
    padding: 12px 20px;
    width: 100%;
    transition: all .3s;
    border-radius: 50px;
    margin: 0;
    border: none !important;
}

.auth .card__form button:focus {
    border: none!important;
}

.auth .card__form small {
    color: rgb(71, 71, 71);
    display: block;
    text-transform: capitalize;
    font-size: 14px;
}

.auth .card__form small a {
    color: var(--color-primary);
}


/* Contact Section
--------------------------------*/

#contact {
    background: var(--color-light);
    background-size: cover;
    padding: 60px 0;
    position: relative;
}

#contact::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9;
}

#contact .container {
    position: relative;
    z-index: 11;
}

#contact .contact-info {
    margin-bottom: 20px;
    text-align: center;
}

#contact .contact-info i {
    font-size: 48px;
    display: inline-block;
    margin-bottom: 10px;
    color: var(--color-primary);
}

#contact .contact-info address,
#contact .contact-info p {
    margin-bottom: 0;
    color: var(--color-black);
}

#contact .contact-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--color-dark);
}

#contact .contact-info a {
    color: var(--color-black);
}

#contact .contact-info a:hover {
    color: var(--color-primary);
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
    margin: 20px 0px;
    padding: 30px 20px;
    color: var(--color-black);
    box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 33, 105, 0.08);
    border-radius: 16px;
    background: var(--color-white);
}

#contact .form #sendmessage {
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    display: none;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#contact .form #errormessage {
    color: red;
    display: none;
    border: 1px solid red;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#contact .form {
    padding: 40px 20px;
    margin: 30px 0;
    box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 33, 105, 0.08);
    border-radius: 16px;
    background: var(--color-white);
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
    display: block;
}

#contact .form .validation {
    color: red;
    display: none;
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 13px;
}

#contact .form input,
#contact .form textarea {
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: none;
    font-size: 15px;
    background: transparent;
}

#contact .form button[type="submit"] {
    background: var(--color-primary);
    border: 0;
    padding: 10px 30px;
    color: var(--color-white);
    border-radius: 50px;
    transition: 0.4s;
    cursor: pointer;
    outline: none;
}

#contact .form button[type="submit"]:hover {
    background: var(--color-primary-blue);
    color: var(--color-white);
}


/*--------------------------------------------------------------
  # Footer sections
  --------------------------------------------------------------*/

#footer {
    background: var(--color-white);
    padding: 0 0 30px 0;
    color: var(--color-dark);
    font-size: 14px;
}

#footer .footer-top {
    background: var(--color-dark);
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
    font-size: 25px;
    margin: 12px 0px;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--color-white-2);
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: var(--color-grey);
    color: var(--color-white-2);
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

#footer .footer-top h4 {
    font-size: 14px;
    font-weight: bold;
    color: var(--color-white);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top h4::before,
#footer .footer-top h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
}

#footer .footer-top h4::before {
    right: 0;
    background: var(--color-grey-2);
}

#footer .footer-top h4::after {
    background: var(--color-primary);
    width: 60px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 8px;
    color: var(--color-white-1);
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: var(--color-white-2);
}

#footer .footer-top .footer-links ul a:hover {
    color: var(--color-primary);
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
    line-height: 26px;
}

#footer .footer-top .footer-newsletter {
    margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
    border: 0;
    padding: 6px 8px;
    width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
    background: var(--color-primary);
    border: 0;
    width: 35%;
    padding: 6px 0;
    text-align: center;
    color: var(--color-white);
    transition: 0.3s;
    cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
    background: var(--color-primary-blue);
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
    color: var(--color-dark);
}

/* Logo SVG en footer-top (fondo azul oscuro) */
#footer .footer-top .footer-info svg {
    height: 65px;
    width: auto;
    display: block;
    margin-bottom: 15px;
}

#footer .footer-top .footer-info .st1 {
    fill: #ffffff !important;
}

/* st0 (azul claro "Limited" + alas) se conserva igual */


/*--------------------------------------------------------------
  # Responsive Media Queries for All Screens
  --------------------------------------------------------------*/

@media (min-width: 992px) {
    /* old testimonial p width removed */
}

@media (min-width: 1024px) {
    #header #logo {
        padding-left: 60px;
    }
    #intro p {
        width: 60%;
    }
    #intro .carousel-control-prev,
    #intro .carousel-control-next {
        width: 5%;
    }
    #nav-menu-container {
        padding-right: 60px;
    }
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
    }
    #payouts .material__tabs {
        display: inline-block;
        padding: 20px 0;
        margin: 0px;
    }
    #header #logo h1 {
        font-size: 28px;
    }
    .container-form {
        margin: 0 auto;
        padding: 80px 0px;
        min-height: 100vh;
        margin: 0 auto;
    }
    .section-form-box {
        margin: 0 20px;
    }
    html .container-form {
        width: 100%;
    }
    #header #logo img {
        max-height: 80px;
    }
    #intro h2 {
        font-size: 28px;
    }
    #nav-menu-container {
        display: none;
    }
    #mobile-nav-toggle {
        display: inline;
    }
    #faq #faq-list a {
        font-size: 18px;
    }
    #faq #faq-list i {
        top: 13px;
    }
}


/*--------------------------------------------------------------
  # About Subpage (/about)
  --------------------------------------------------------------*/

/* Subpage header — navy at top, white on scroll */
.subpage-header:not(.header-scrolled) {
    background: var(--color-dark) !important;
}
.subpage-header:not(.header-scrolled) .nav-menu a,
.subpage-header:not(.header-scrolled) .nav-menu > ul > li > a {
    color: rgba(255,255,255,0.88) !important;
}
.subpage-header:not(.header-scrolled) .nav-menu a:hover,
.subpage-header:not(.header-scrolled) .nav-menu li.active > a {
    color: #fff !important;
}
.subpage-header:not(.header-scrolled) .mega-arrow {
    color: rgba(255,255,255,0.6) !important;
}
/* "Start Investing" button — light blue text on dark header */
.subpage-header:not(.header-scrolled) .nav-menu .btn-log {
    color: var(--color-primary) !important;
    background: rgba(255,255,255,0.95);
}
.subpage-header:not(.header-scrolled) .nav-menu .btn-log:hover {
    background: var(--color-primary) !important;
    color: #fff !important;
}

/* ── Who We Are value cards (about subpage) ── */

/* Reduce top space + bold the intro description */
#who-we-are { padding-top: 36px !important; }
#who-we-are .section-header { margin-bottom: 8px; }
#who-we-are .section-header p {
    font-weight: 700;
    margin: 12px auto 32px;
}

#who-we-are .about-col {
    border-radius: 16px;
    border: 1px solid rgba(0,33,105,0.08);
    background: #fff;
    padding: 36px 24px 32px;
    height: 100%;
    transition: opacity .25s, box-shadow .25s, transform .25s;
}

/* Fade siblings when any card is hovered */
#who-we-are .about-cols:hover .about-col {
    opacity: 0.4;
    transform: none;
    box-shadow: none;
}
#who-we-are .about-cols:hover .about-col:hover {
    opacity: 1;
    box-shadow: 0 12px 40px rgba(0,33,105,0.14);
    transform: translateY(-4px);
}

/* Icon — no background, larger, same as landing/dashboard */
#who-we-are .about-col .icon {
    width: auto !important;
    height: auto !important;
    background: none !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px !important;
    padding: 0 !important;
}
/* SVG — 3rem matching landing page */
#who-we-are .about-col .icon .svg {
    width: 3rem !important;
    height: 3rem !important;
    fill: var(--color-primary) !important;
    filter: none !important;
    transition: fill .25s;
}
/* Hover → dark navy icon */
#who-we-are .about-col:hover .icon .svg {
    fill: var(--color-dark) !important;
}

/* Title — match landing page: uppercase, dark, 14px bold */
#who-we-are .about-col h2.title {
    color: var(--color-dark) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    text-align: center;
    margin-bottom: 12px;
}
#who-we-are .about-col h2.title a {
    color: var(--color-dark) !important;
    text-decoration: none !important;
}

/* Description — slightly smaller than landing */
#who-we-are .about-col > p {
    font-size: 13px !important;
    color: rgba(0,33,105,0.65) !important;
    text-align: center;
    line-height: 1.65;
    margin: 0;
}

/* Hero banner */
.subpage-hero {
    background: var(--color-dark);
    padding: 130px 0 70px;
    color: #fff;
}
.subpage-breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
    font-size: 13px;
}
.subpage-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.6); text-decoration: none; }
.subpage-breadcrumb .breadcrumb-item a:hover { color: #fff; }
.subpage-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.45); }
.subpage-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.35); }
.subpage-hero-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}
.subpage-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin-bottom: 32px;
    line-height: 1.7;
}
.subpage-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.subpage-btn-primary {
    background: var(--color-primary);
    color: #fff !important;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    transition: background .25s;
}
.subpage-btn-primary:hover { background: #007ab8; }
.subpage-btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff !important;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    border: 1px solid rgba(255,255,255,0.25);
    transition: background .25s;
}
.subpage-btn-secondary:hover { background: rgba(255,255,255,0.18); }

/* Section tab bar */
.subpage-tabs-bar {
    background: #fff;
    border-bottom: 1px solid rgba(0,33,105,0.09);
    position: sticky;
    top: 118px;
    z-index: 99;
    box-shadow: 0 2px 12px rgba(0,33,105,0.05);
}
.subpage-tabs-bar .container {
    display: flex;
    justify-content: center;
    overflow-x: auto;
}
.subpage-tab {
    padding: 16px 24px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(0,33,105,0.55) !important;
    text-decoration: none !important;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
}
.subpage-tab:hover,
.subpage-tab.active {
    color: var(--color-dark) !important;
    border-bottom-color: var(--color-primary);
}

/* Subpage sections */
.subpage-section { padding: 80px 0; scroll-margin-top: 160px; }

/* Stats bar */
.about-stats-bar {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid rgba(0,33,105,0.08);
    border-radius: 16px;
    margin-top: 48px;
    box-shadow: 0 4px 24px rgba(0,33,105,0.06);
    overflow: hidden;
}
.about-stat {
    flex: 1 1 140px;
    text-align: center;
    padding: 28px 20px;
    border-right: 1px solid rgba(0,33,105,0.08);
}
.about-stat:last-child { border-right: none; }
.about-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1;
    margin-bottom: 6px;
}
.about-stat .stat-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(0,33,105,0.55);
}

/* Leader cards */
.leader-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,33,105,0.08);
    padding: 36px 28px;
    text-align: center;
    height: 100%;
    transition: box-shadow .25s, transform .25s;
}
.leader-card:hover {
    box-shadow: 0 12px 40px rgba(0,33,105,0.12);
    transform: translateY(-4px);
}
.leader-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0,156,227,0.10);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.leader-name { font-size: 1.1rem; font-weight: 700; color: var(--color-dark); margin-bottom: 4px; }
.leader-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}
.leader-bio { font-size: 14px; color: var(--color-grey-1); line-height: 1.65; margin-bottom: 0; }

/* Compliance section */
.compliance-copy-heading { font-size: 1.1rem; font-weight: 700; color: var(--color-dark); margin-bottom: 14px; }
.compliance-copy > p { font-size: 15px; color: var(--color-grey-1); line-height: 1.7; margin-bottom: 20px; }
.compliance-list { list-style: none; padding: 0; margin: 0; }
.compliance-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--color-grey-1);
    line-height: 1.55;
}
.compliance-list-icon { flex-shrink: 0; margin-top: 2px; }
.compliance-badge {
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0,33,105,0.09);
    padding: 18px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    height: 100%;
    transition: box-shadow .2s;
}
.compliance-badge:hover { box-shadow: 0 6px 20px rgba(0,33,105,0.09); }
.compliance-badge-icon { flex-shrink: 0; }
.compliance-badge-title { font-size: 14px; font-weight: 700; color: var(--color-dark); margin-bottom: 2px; }
.compliance-badge-desc { font-size: 12px; color: rgba(0,33,105,0.5); }
.compliance-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(0,156,227,0.06);
    border-radius: 10px;
    padding: 16px;
    margin-top: 16px;
    font-size: 13px;
    color: var(--color-grey-1);
    line-height: 1.55;
}
.compliance-note svg { flex-shrink: 0; margin-top: 2px; }
.compliance-note p { margin: 0; }
.compliance-note a { color: var(--color-primary); font-weight: 600; }

/* Award cards */
.award-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,33,105,0.08);
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    transition: box-shadow .25s, transform .25s;
}
.award-card:hover { box-shadow: 0 12px 40px rgba(0,33,105,0.12); transform: translateY(-4px); }
.award-icon { margin-bottom: 16px; }
.award-year { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-primary); margin-bottom: 8px; }
.award-title { font-size: 1.05rem; font-weight: 700; color: var(--color-dark); margin-bottom: 10px; }
.award-body { font-size: 14px; color: var(--color-grey-1); line-height: 1.6; margin-bottom: 0; }

/* Press contact box */
.press-contact-box {
    background: var(--color-dark);
    border-radius: 16px;
    padding: 36px 40px;
    color: #fff;
}
.press-contact-title { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.press-contact-body { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.65; margin-bottom: 0; }
.press-contact-btn {
    display: inline-block;
    background: var(--color-primary);
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background .25s;
}
.press-contact-btn:hover { background: #007ab8; }

@media (max-width: 768px) {
    .subpage-hero { padding: 110px 0 50px; }
    .subpage-hero-title { font-size: 1.8rem; }
    .about-stat { border-right: none; border-bottom: 1px solid rgba(0,33,105,0.08); }
    .about-stat:last-child { border-bottom: none; }
    .press-contact-box { padding: 28px 24px; }
    .subpage-tab { padding: 14px 16px; font-size: 12px; }
}

/*--------------------------------------------------------------
  # Solutions Subpage
  --------------------------------------------------------------*/

/* ── Hero graphic ── */
.solutions-hero-graphic {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 320px;
    margin: 0 auto;
    align-items: stretch;
}
.shg-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    padding: 20px 24px;
    backdrop-filter: blur(6px);
    position: relative;
    overflow: hidden;
    width: 100%;
}
.shg-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--color-primary);
    border-radius: 14px 14px 0 0;
}
.shg-label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.shg-value { font-size: 1.9rem; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 4px; }
.shg-sub   { font-size: 12px; color: rgba(255,255,255,0.6); }

/* ── Section label ── */
.sol-section-label {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(0,156,227,0.08);
    border-radius: 100px;
    padding: 4px 14px;
    margin-bottom: 16px;
}
.sol-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.25;
    margin-bottom: 16px;
}
.sol-section-desc {
    font-size: 15px;
    color: rgba(0,33,105,0.65);
    line-height: 1.75;
    margin-bottom: 28px;
}

/* ── Alternate section background ── */
.sol-section-alt {
    background: #f6f8fc;
}

/* ── Feature cards (§1 + §4) ── */
.sol-feature-card {
    background: #fff;
    border: 1px solid rgba(0,33,105,0.08);
    border-radius: 14px;
    padding: 22px 20px;
    height: 100%;
    transition: box-shadow .2s, transform .2s;
}
.sol-feature-card:hover {
    box-shadow: 0 10px 32px rgba(0,33,105,0.1);
    transform: translateY(-3px);
}
.sol-feature-icon {
    margin-bottom: 14px;
}
.sol-feature-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}
.sol-feature-desc {
    font-size: 13px;
    color: rgba(0,33,105,0.6);
    line-height: 1.6;
    margin: 0;
}

/* ── Metrics bar (§1) ── */
.sol-metrics-bar {
    display: flex;
    gap: 0;
    background: var(--color-dark);
    border-radius: 16px;
    padding: 28px 40px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.sol-metric {
    flex: 1;
    min-width: 140px;
    text-align: center;
    position: relative;
    padding: 0 20px;
}
.sol-metric + .sol-metric::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    height: 36px;
    width: 1px;
    background: rgba(255,255,255,0.15);
}
.sol-metric-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}
.sol-metric-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: rgba(255,255,255,0.55);
}

/* ── Income panel (§2) ── */
.sol-income-panel {
    background: #fff;
    border: 1px solid rgba(0,33,105,0.08);
    border-radius: 16px;
    padding: 32px;
}
.sol-income-header {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.sol-income-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.sol-income-type {
    font-size: 13px;
    color: rgba(0,33,105,0.7);
    min-width: 150px;
}
.sol-income-bar-wrap {
    flex: 1;
    height: 8px;
    background: rgba(0,33,105,0.06);
    border-radius: 100px;
    overflow: hidden;
}
.sol-income-bar {
    height: 100%;
    background: var(--color-primary);
    border-radius: 100px;
    transition: width 1s ease;
}
.sol-income-pct {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark);
    min-width: 36px;
    text-align: right;
}
.sol-income-metrics {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(0,33,105,0.07);
    margin-top: 24px;
    padding-top: 20px;
}
.sol-income-metric {
    flex: 1;
    text-align: center;
}
.sim-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
}
.sim-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(0,33,105,0.5);
}

/* ── Step cards (§3) ── */
.sol-step-card {
    background: #fff;
    border: 1px solid rgba(0,33,105,0.08);
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    position: relative;
    transition: box-shadow .2s, transform .2s;
}
.sol-step-card:hover {
    box-shadow: 0 10px 32px rgba(0,33,105,0.1);
    transform: translateY(-3px);
}
.sol-step-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: rgba(0,156,227,0.12);
    line-height: 1;
    margin-bottom: 14px;
    font-variant-numeric: tabular-nums;
}
.sol-step-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}
.sol-step-desc {
    font-size: 13px;
    color: rgba(0,33,105,0.6);
    line-height: 1.65;
    margin: 0;
}

/* ── Liquidity note bar (§3) ── */
.sol-liquidity-note {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0,156,227,0.07);
    border: 1px solid rgba(0,156,227,0.18);
    border-radius: 10px;
    padding: 14px 20px;
    margin-top: 12px;
    font-size: 13px;
    color: rgba(0,33,105,0.75);
}

/* ── RM cards (§4) ── */
.sol-rm-card {
    background: #fff;
    border: 1px solid rgba(0,33,105,0.08);
    border-radius: 14px;
    padding: 22px 20px;
    height: 100%;
    transition: box-shadow .2s, transform .2s;
}
.sol-rm-card:hover {
    box-shadow: 0 10px 32px rgba(0,33,105,0.1);
    transform: translateY(-3px);
}
.sol-rm-icon { margin-bottom: 14px; }
.sol-rm-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}
.sol-rm-desc {
    font-size: 13px;
    color: rgba(0,33,105,0.6);
    line-height: 1.6;
    margin: 0;
}

/* ── Checklist (§2, §4) ── */
.sol-checklist { margin-bottom: 24px; }
.sol-check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(0,33,105,0.8);
    line-height: 1.5;
}
.sol-check-item svg { flex-shrink: 0; margin-top: 2px; }

/* ── Security list (§5) ── */
.sol-security-list { display: flex; flex-direction: column; gap: 20px; }
.sol-security-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border: 1px solid rgba(0,33,105,0.07);
    border-radius: 12px;
}
.sol-security-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(0,156,227,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sol-security-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
}
.sol-security-item p {
    font-size: 13px;
    color: rgba(0,33,105,0.6);
    line-height: 1.6;
    margin: 0;
}

/* ── Compliance note (§5) ── */
.compliance-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 16px;
    font-size: 13px;
    color: rgba(0,33,105,0.65);
    background: rgba(0,156,227,0.06);
    border-radius: 10px;
    padding: 14px 18px;
}
.compliance-note p { margin: 0; }
.compliance-note a { color: var(--color-primary); }

/* ── Responsive ── */
@media (max-width: 768px) {
    .solutions-hero-graphic { display: none; }
    .sol-metrics-bar { padding: 20px 16px; gap: 16px; }
    .sol-metric + .sol-metric::before { display: none; }
    .sol-section-title { font-size: 1.4rem; }
}

/*--------------------------------------------------------------
  # Contact Section Redesign
  --------------------------------------------------------------*/

/* ── Info cards — equal height ── */
.contact-info-row { align-items: stretch; }
.contact-info-card {
    background: #fff;
    border: 1px solid rgba(0,33,105,0.09);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transition: box-shadow .2s, transform .2s;
    margin-bottom: 24px;
}
.contact-info-card:hover {
    box-shadow: 0 8px 28px rgba(0,33,105,0.1);
    transform: translateY(-3px);
}
.contact-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(0,156,227,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.contact-info-value {
    font-size: 14px;
    color: rgba(0,33,105,0.65);
    margin: 0;
    line-height: 1.55;
    flex: 1;
}
.contact-info-value a {
    color: var(--color-primary);
    text-decoration: none;
}
.contact-info-value a:hover { text-decoration: underline; }

/* ── Compact form card ── */
.contact-form-card {
    background: #fff;
    border: 1px solid rgba(0,33,105,0.09);
    border-radius: 20px;
    padding: 36px 36px 32px;
    box-shadow: 0 4px 24px rgba(0,33,105,0.07);
}
.contact-form-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0,33,105,0.07);
}
.contact-form-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
}
.contact-form-input {
    border: 1.5px solid rgba(0,33,105,0.12) !important;
    border-radius: 10px !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
    color: var(--color-dark) !important;
    background: #f8f9fc !important;
    transition: border-color .2s, box-shadow .2s !important;
}
.contact-form-input:focus {
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 0 3px rgba(0,156,227,0.12) !important;
    background: #fff !important;
    outline: none !important;
}
.contact-form-submit {
    width: 100%;
    padding: 12px 24px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    cursor: pointer;
    transition: background .25s, transform .15s;
    margin-top: 4px;
}
.contact-form-submit:hover {
    background: var(--color-dark);
    transform: translateY(-1px);
}

/*--------------------------------------------------------------
  # Accounts Subpage
  --------------------------------------------------------------*/

/* ── Hero tier strip ── */
.acc-hero-strip {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 36px;
}
.acc-hero-tier {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 10px;
    padding: 10px 18px;
    min-width: 90px;
}
.acc-hero-tier.acc-hero-tier--managed {
    background: rgba(0,156,227,0.18);
    border-color: rgba(0,156,227,0.35);
}
.aht-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .02em;
}
.aht-from {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    margin-top: 2px;
}

/* ── Tier cards ── */
.acc-cards-row {
    display: flex;
    gap: 24px;
    align-items: stretch;
    flex-wrap: wrap;
}
.acc-tier-card {
    flex: 1;
    min-width: 220px;
    background: #fff;
    border: 1.5px solid rgba(0,33,105,0.1);
    border-radius: 20px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow .25s, transform .25s;
}
.acc-tier-card:hover {
    box-shadow: 0 16px 48px rgba(0,33,105,0.13);
    transform: translateY(-4px);
}
.acc-tier-card.acc-featured {
    border-color: var(--color-primary);
    box-shadow: 0 12px 40px rgba(0,156,227,0.18);
}
.acc-tier-card.acc-featured:hover {
    box-shadow: 0 20px 56px rgba(0,156,227,0.26);
}
.acc-featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
}
.acc-tier-category {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 8px;
}
.acc-tier-name {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1;
}
.acc-tier-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}
.acc-price-currency {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
}
.acc-price-amount {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1;
}
.acc-price-sub {
    font-size: 12px;
    color: rgba(0,33,105,0.5);
    margin-bottom: 24px;
    line-height: 1.4;
}
.acc-divider {
    height: 1px;
    background: rgba(0,33,105,0.07);
    margin-bottom: 20px;
}
.acc-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}
.acc-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(0,33,105,0.75);
    padding: 6px 0;
    border-bottom: 1px solid rgba(0,33,105,0.05);
    line-height: 1.5;
}
.acc-feature-item:last-child { border-bottom: none; }
.acc-feature-item svg { flex-shrink: 0; margin-top: 2px; }
.acc-tier-cta {
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background .2s, color .2s, transform .15s;
    cursor: pointer;
    border: 2px solid var(--color-primary);
    color: var(--color-primary) !important;
    background: transparent;
}
.acc-tier-cta:hover {
    background: var(--color-primary);
    color: #fff !important;
    transform: translateY(-1px);
}
.acc-tier-card.acc-featured .acc-tier-cta {
    background: var(--color-primary);
    color: #fff !important;
    border-color: var(--color-primary);
}
.acc-tier-card.acc-featured .acc-tier-cta:hover {
    background: var(--color-dark);
    border-color: var(--color-dark);
}

/* ── Section label (shared with solutions style) ── */
.acc-section-label {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(0,156,227,0.08);
    border-radius: 100px;
    padding: 4px 14px;
    margin-bottom: 16px;
}
.acc-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.25;
    margin-bottom: 12px;
}
.acc-section-desc {
    font-size: 15px;
    color: rgba(0,33,105,0.6);
    line-height: 1.75;
    margin-bottom: 40px;
}

/* ── Comparison table ── */
.acc-comparison-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1.5px solid rgba(0,33,105,0.09);
    box-shadow: 0 4px 24px rgba(0,33,105,0.06);
}
.acc-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
    min-width: 680px;
}
.acc-comparison-table thead th {
    padding: 20px 18px 16px;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    border-bottom: 2px solid rgba(0,33,105,0.08);
    background: #fff;
}
.acc-comparison-table thead th:first-child {
    text-align: left;
    width: 220px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(0,33,105,0.45);
}
.acc-th-name {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 2px;
}
.acc-th-price {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: rgba(0,33,105,0.5);
}
.acc-th-featured {
    background: rgba(0,156,227,0.06) !important;
    border-top: 2px solid var(--color-primary);
}
.acc-comparison-table tbody tr:hover td { background: rgba(0,33,105,0.025); }
.acc-comparison-table tbody td {
    padding: 14px 18px;
    text-align: center;
    border-bottom: 1px solid rgba(0,33,105,0.06);
    color: rgba(0,33,105,0.75);
    vertical-align: middle;
    background: #fff;
}
.acc-comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--color-dark);
    font-size: 13px;
}
.acc-comparison-table tbody td.acc-td-featured {
    background: rgba(0,156,227,0.04) !important;
}
.acc-comparison-table tbody tr:last-child td { border-bottom: none; }
.acc-check { color: var(--color-primary); }
.acc-dash { color: rgba(0,33,105,0.2); font-size: 18px; font-weight: 300; }

/* ── How It Works steps ── */
.acc-steps-wrap {
    display: flex;
    gap: 0;
    align-items: flex-start;
    position: relative;
}
.acc-steps-wrap::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(10% + 28px);
    right: calc(10% + 28px);
    height: 2px;
    background: rgba(0,33,105,0.08);
    z-index: 0;
}
.acc-step {
    flex: 1;
    text-align: center;
    padding: 0 12px;
    position: relative;
    z-index: 1;
}
.acc-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(0,33,105,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--color-dark);
    margin: 0 auto 20px;
    transition: background .25s, border-color .25s, color .25s;
}
.acc-step:hover .acc-step-num {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}
.acc-step-icon {
    font-size: 24px;
    margin-bottom: 4px;
}
.acc-step-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}
.acc-step-desc {
    font-size: 13px;
    color: rgba(0,33,105,0.6);
    line-height: 1.6;
}
.acc-steps-cta {
    text-align: center;
    margin-top: 52px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .acc-cards-row { flex-direction: column; }
    .acc-tier-card { min-width: unset; }
    .acc-steps-wrap { flex-direction: column; gap: 32px; }
    .acc-steps-wrap::before { display: none; }
    .acc-section-title { font-size: 1.4rem; }
    .acc-hero-strip { gap: 8px; }
    .acc-hero-tier { min-width: 80px; padding: 8px 12px; }
}

/*--------------------------------------------------------------
  # Accounts Hero Strip — Grouped Layout
  --------------------------------------------------------------*/
.acc-hero-strip-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.acc-hero-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.acc-hero-group-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,0.45);
}
.acc-hero-group-divider {
    width: 1px;
    align-self: stretch;
    background: rgba(255,255,255,0.15);
    margin: 18px 4px 0;
}
/* Keep the inner strip flex row */
.acc-hero-strip-wrap .acc-hero-strip {
    margin-top: 0;
}

/*--------------------------------------------------------------
  # Mobile Responsive Fixes — v3.0
  All rules here are strictly inside media queries.
  No desktop style is modified.
  --------------------------------------------------------------*/

/* ─────────────────────────────────────────────────
   0. MOBILE NAV — Compact professional redesign
   ───────────────────────────────────────────────── */

/* Panel position: just below the header */
.mobile-nav {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    border-radius: 0 0 16px 16px;
    padding: 0;
    box-shadow: 0 12px 40px rgba(0,33,105,0.18);
}

/* Header bar inside mobile nav (logo area) */
.mobile-nav-active .mobile-nav-toggle {
    top: 18px;
    right: 18px;
}

/* Each nav link — compact */
.mobile-nav a {
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid rgba(0,33,105,0.06);
    color: var(--color-dark) !important;
    display: flex;
    align-items: center;
}
.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
    color: var(--color-primary) !important;
    background: rgba(0,156,227,0.04);
}

/* Remove bottom border from last item before action buttons */
.mobile-nav li:last-of-type > a { border-bottom: none; }

/* "Sign In" link — subtle style */
.mobile-nav a[href="login"],
.mobile-nav a[href*="login"] {
    color: var(--color-dark) !important;
    font-weight: 600;
}

/* "Start Investing" → styled as CTA pill */
.mobile-nav .btn-log {
    margin: 12px 16px 16px;
    background: var(--color-primary) !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 12px 24px !important;
    text-align: center;
    font-size: 14px !important;
    font-weight: 700 !important;
    display: block;
    border-bottom: none !important;
    transition: background .2s;
}
.mobile-nav .btn-log:hover {
    background: var(--color-dark) !important;
}

/* "Get started" bot link variant */
.mobile-nav a.btn-log {
    margin: 12px 16px 16px;
    background: var(--color-primary) !important;
    color: #fff !important;
    border-radius: 50px !important;
    text-align: center;
    border-bottom: none !important;
}

/* Hide mega-panel arrows in mobile nav */
.mobile-nav .mega-arrow { display: none !important; }

/* Mobile hamburger toggle button — cleaner
   Colors adapt to header state:
   - Default (header transparent over dark hero): white icon + subtle light bg
   - When body.is-header-scrolled (header white): primary icon + subtle dark bg
   - When menu is open (.mobile-nav-active, below): handled separately
*/
.mobile-nav-toggle {
    top: 18px;
    right: 18px;
    background: rgba(255,255,255,0.12);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.mobile-nav-toggle i { color: #ffffff; }

body.is-header-scrolled .mobile-nav-toggle {
    background: rgba(0,33,105,0.06);
}
body.is-header-scrolled .mobile-nav-toggle i {
    color: var(--color-primary);
}

/* ─────────────────────────────────────────────────
   1. PREVENT HORIZONTAL OVERFLOW (global)
   ───────────────────────────────────────────────── */
@media (max-width: 768px) {
    body { overflow-x: hidden; }
}

/* ─────────────────────────────────────────────────
   2. HEADER & LOGO
   ───────────────────────────────────────────────── */
@media (max-width: 768px) {
    #header .logo svg { height: 52px !important; }
}

/* ─────────────────────────────────────────────────
   3. MEGA-DROPDOWNS — disabled on mobile
   (Mobile nav / hamburger handles navigation)
   ───────────────────────────────────────────────── */
@media (max-width: 992px) {
    .mega-drop > .mega-panel { display: none !important; pointer-events: none !important; }
    .mega-arrow { display: none !important; }
}

/* ─────────────────────────────────────────────────
   4. HOMEPAGE HERO
   ───────────────────────────────────────────────── */
@media (max-width: 768px) {
    #intro { height: auto; min-height: 70vh; }
    #intro p { font-size: 15px; width: 94%; margin-bottom: 20px; }
    #intro .carousel-control-prev,
    #intro .carousel-control-next { width: 14%; }
    .intro-buttons .btn { padding: 10px 22px; font-size: 14px; }
}
@media (max-width: 480px) {
    #intro h2 { font-size: 22px; margin-bottom: 14px; }
    #intro p { font-size: 13px; }
    .intro-buttons { display: flex; flex-direction: column; gap: 10px; align-items: center; }
    .intro-buttons .btn { width: 220px; }
}

/* ─────────────────────────────────────────────────
   5. SECTION HEADERS
   ───────────────────────────────────────────────── */
@media (max-width: 768px) {
    .section-header h3 { font-size: 22px; }
    .section-header p  { font-size: 15px; line-height: 24px; }
}
@media (max-width: 480px) {
    .section-header h3 { font-size: 19px; }
    .section-header p  { font-size: 14px; }
}

/* ─────────────────────────────────────────────────
   6. GLOBAL TYPOGRAPHY & SPACING
   ───────────────────────────────────────────────── */
@media (max-width: 600px) {
    p { margin-bottom: 16px; }
}

/* ─────────────────────────────────────────────────
   7. FOOTER
   ───────────────────────────────────────────────── */
@media (max-width: 600px) {
    #footer .footer-top .footer-info svg { height: 46px !important; }

    /* Stack newsletter inputs vertically */
    #footer .footer-top .footer-newsletter input[type="email"] {
        width: 100%;
        border-radius: 4px 4px 0 0;
        display: block;
    }
    #footer .footer-top .footer-newsletter input[type="submit"] {
        width: 100%;
        border-radius: 0 0 4px 4px;
        display: block;
        padding: 8px 0;
    }

    /* Tighter social icons */
    #footer .social-links a { width: 32px; height: 32px; margin-right: 3px; }

    /* Compact top padding */
    #footer .footer-top { padding-top: 40px; }
}

/* ─────────────────────────────────────────────────
   8. SUBPAGE HERO (all subpages)
   ───────────────────────────────────────────────── */
@media (max-width: 480px) {
    .subpage-hero { padding: 88px 0 38px; }
    .subpage-hero-title { font-size: 1.3rem !important; }
    .subpage-hero-subtitle { font-size: 0.88rem; }
    .subpage-hero .breadcrumb { font-size: 12px; padding: 4px 0; }

    /* Accounts hero tier strip — grouped layout on mobile */
    .acc-hero-strip-wrap { gap: 10px; }
    .acc-hero-group-divider { display: none; }
    .acc-hero-tier { min-width: 64px; padding: 7px 10px; }
    .aht-name { font-size: 11px; }
    .aht-from { font-size: 10px; }
}

/* ─────────────────────────────────────────────────
   9. SUBPAGE TAB BAR — mobile top + horizontal scroll
   ───────────────────────────────────────────────── */
@media (max-width: 992px) {
    /* Mobile header is shorter — JS will refine this dynamically */
    .subpage-tabs-bar { top: 80px; }
}
@media (max-width: 768px) {
    .subpage-tabs-bar .container {
        padding-left: 4px;
        padding-right: 4px;
        justify-content: flex-start;
        scrollbar-width: none;
    }
    .subpage-tabs-bar .container::-webkit-scrollbar { display: none; }
    .subpage-tab {
        padding: 12px 14px;
        font-size: 11px;
        flex-shrink: 0;
    }
}
@media (max-width: 480px) {
    .subpage-tab { padding: 11px 12px; font-size: 10.5px; }
}

/* ─────────────────────────────────────────────────
   10. SUBPAGE SECTIONS — reduce vertical padding
   ───────────────────────────────────────────────── */
@media (max-width: 768px) {
    .subpage-section { padding: 56px 0; scroll-margin-top: 108px; }
}
@media (max-width: 480px) {
    .subpage-section { padding: 44px 0; }
}

/* ─────────────────────────────────────────────────
   11. ABOUT PAGE — Stats bar (2×2 grid on mobile)
   ───────────────────────────────────────────────── */
@media (max-width: 600px) {
    .about-stats-bar {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 28px 0;
    }
    .about-stat { border-right: none !important; border-bottom: none !important; }
    .about-stat .stat-number { font-size: 1.6rem; }
    .about-stat .stat-label  { font-size: 11px; }
}

/* ─────────────────────────────────────────────────
   12. LEADER & AWARD CARDS (about subpage)
   ───────────────────────────────────────────────── */
@media (max-width: 600px) {
    .leader-card { padding: 20px 16px; }
    .leader-avatar { width: 64px; height: 64px; }
    .award-card { padding: 20px 16px; }
    .compliance-badge { padding: 14px 12px; }
}

/* ─────────────────────────────────────────────────
   13. SOLUTIONS — service cards compact
   ───────────────────────────────────────────────── */
@media (max-width: 600px) {
    .sol-service-card { padding: 20px 16px; }
    .sol-service-icon { width: 44px; height: 44px; }
    .sol-service-title { font-size: 15px; }
    .sol-service-desc  { font-size: 13px; }
}

/* ─────────────────────────────────────────────────
   14. ACCOUNTS — tier cards compact
   ───────────────────────────────────────────────── */
@media (max-width: 600px) {
    .acc-tier-card { padding: 22px 18px; }
    .acc-price-amount { font-size: 2rem; }
    .acc-tier-name { font-size: 1.3rem; }
    .acc-feature-list li { font-size: 13px; }
    .acc-section-title { font-size: 1.3rem; }
}

/* ─────────────────────────────────────────────────
   15. ACCOUNTS — comparison table (compact + scrollable)
   ───────────────────────────────────────────────── */
@media (max-width: 768px) {
    .acc-comparison-wrap { border-radius: 12px; }
    .acc-comparison-table th,
    .acc-comparison-table td { padding: 10px 8px; font-size: 12px; }
    .acc-comparison-table thead th:first-child { min-width: 120px; }
    .acc-comparison-table thead th:not(:first-child) { min-width: 78px; }
}
@media (max-width: 540px) {
    .acc-comparison-table th,
    .acc-comparison-table td { padding: 8px 5px; font-size: 11px; }
    .acc-comparison-table thead th:first-child { min-width: 100px; font-size: 11px; }
    .acc-comparison-table thead th:not(:first-child) { min-width: 60px; }
    .acc-th-name { font-size: 11px; }
    .acc-th-min  { font-size: 9px; }
    .acc-check svg { width: 14px; height: 14px; }
    .acc-dash { font-size: 13px; }
}

/* ─────────────────────────────────────────────────
   16. CONTACT SECTION
   ───────────────────────────────────────────────── */
@media (max-width: 600px) {
    .contact-info-card { padding: 20px 16px; gap: 10px; margin-bottom: 16px; }
    .contact-info-icon { width: 44px; height: 44px; border-radius: 10px; }
    .contact-info-icon svg { width: 22px; height: 22px; }
    .contact-form-card { padding: 22px 16px 18px; border-radius: 14px; }
    .contact-form-input { font-size: 14px !important; }
    .contact-form-submit { font-size: 14px; }
    .contact-form-header h3 { font-size: 1.2rem; }
}

/* ─────────────────────────────────────────────────
   17. REGISTER MODAL — account type selector
   ───────────────────────────────────────────────── */
@media (max-width: 480px) {
    .register-modal-btn { font-size: 14px; padding: 11px 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   Live Investment Movements — Card Carousel (one-by-one scroll)
   ═══════════════════════════════════════════════════════════════ */

.h-live-carousel-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(10,18,42,0.8), rgba(6,12,30,0.9));
  border: 1px solid rgba(255,255,255,0.07);
  max-height: 420px;
  padding: 0 4px;
}
.h-live-carousel-wrap::before,
.h-live-carousel-wrap::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 60px;
  z-index: 2;
  pointer-events: none;
}
.h-live-carousel-wrap::before { top: 0; background: linear-gradient(to bottom, rgba(8,14,32,1), transparent); }
.h-live-carousel-wrap::after  { bottom: 0; background: linear-gradient(to top, rgba(8,14,32,1), transparent); }

.h-live-carousel {
  display: flex;
  flex-direction: column;
  animation: carouselUp 90s linear infinite;
}
.h-live-carousel:hover { animation-play-state: paused; }

@keyframes carouselUp {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* Card item */
.h-live-card {
  margin: 6px 8px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  transition: background 0.2s, border-color 0.2s;
}
.h-live-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}

/* Top row: icon + badge + amount */
.h-live-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.h-live-card-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
/* Type colors */
.h-live-card[data-type="buy"]       .h-live-card-icon { background: rgba(96,165,250,0.14);  color: #60a5fa; }
.h-live-card[data-type="sell"]      .h-live-card-icon { background: rgba(52,211,153,0.14);  color: #34d399; }
.h-live-card[data-type="deposit"]   .h-live-card-icon { background: rgba(245,158,11,0.14);  color: #f59e0b; }
.h-live-card[data-type="profit"]    .h-live-card-icon { background: rgba(167,139,250,0.14); color: #a78bfa; }
.h-live-card[data-type="withdraw"]  .h-live-card-icon { background: rgba(239,68,68,0.12);   color: #f87171; }
.h-live-card[data-type="account"]   .h-live-card-icon { background: rgba(52,211,153,0.14);  color: #34d399; }
.h-live-card[data-type="corporate"] .h-live-card-icon { background: rgba(251,191,36,0.14);  color: #fbbf24; }

.h-live-card-badge {
  flex: 1;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}
.h-live-card-amount {
  font-size: 15px;
  font-weight: 800;
  color: #34d399;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.h-live-card[data-type="withdraw"] .h-live-card-amount { color: #f87171; }
.h-live-card[data-type="sell"]     .h-live-card-amount { color: #60a5fa; }
.h-live-card[data-type="corporate"] .h-live-card-amount { color: #fbbf24; }

/* Description line */
.h-live-card-desc {
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Pulse dot */
.h-live-pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  animation: livePulse 2s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(52,211,153,0); }
}

@media (max-width: 768px) {
  .h-live-card { padding: 12px 14px; margin: 4px 4px; }
  .h-live-card-icon { width: 30px; height: 30px; font-size: 12px; }
  .h-live-card-badge { font-size: 12px; }
  .h-live-card-amount { font-size: 13px; }
  .h-live-card-desc { font-size: 11px; }
  .h-live-carousel-wrap { max-height: 360px; }
}

/*--------------------------------------------------------------
  # Thats it!
  --------------------------------------------------------------*/