*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --blue: #2d6cdf;
    --blue-light: #72a1ef;
    --blue-pale: #b7d6ff;
    --ink: #060c3c;
    --text: #282828;
    --text-sub: #2f2f2f;
    --muted: #5d6180;
    --page: #fafafa;
    --white: #ffffff;
    --radius-pill: 999px;
    --shadow-nav: 0 14px 40px -18px rgba(6, 12, 59, 0.18);
    --shadow-card: 0 6px 30px -2px rgba(6, 12, 59, 0.08);
    --container-max: 1280px;
    --container-pad: clamp(16px, 4vw, 24px);
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    color: var(--text);
    background: var(--page);
    min-width: 320px;
    overflow-x: hidden;
}
.container {
    width: 100% !important;
    max-width: var(--container-max) !important;
    margin: 0 auto !important;
    padding-left: var(--container-pad) !important;
    padding-right: var(--container-pad) !important;
}
img {
    display: block;
    max-width: 100%;
}
a {
    color: inherit;
    text-decoration: none;
}
.page-shell {
    min-height: 100vh;
    background: linear-gradient(to top, var(--page) 30%, #d9e8ff 90%, var(--blue-pale) 145%);
    padding-top: 2px;
}
.solutions-page-shell {
    background: #fff;
}
.icon-arrow-45 {
    transform: rotate(45deg);
}
.site-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 10px;
    z-index: 100;
    padding: 0 var(--container-pad);
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 10px var(--container-pad);
    border-radius: var(--radius-pill);
    background: var(--white);
    box-shadow: var(--shadow-nav);
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.brand-logo {
    width: 120px;
    height: auto;
    display: block;
}
.brand-mark {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}
.brand-mark img {
    position: absolute;
}
.brand-mark img:nth-child(1) {
    inset: 0;
    width: 100%;
    height: 100%;
}
.brand-mark img:nth-child(2) {
    inset: 12% 73% 13% 7%;
}
.brand-mark img:nth-child(3) {
    inset: 22% 86% 23% 6%;
}
.brand-mark img:nth-child(4) {
    inset: 22% 72% 23% 19%;
}
.brand-mark img:nth-child(5) {
    inset: 39% 74% 40% 22%;
}
.brand-mark img:nth-child(6) {
    inset: 39% 88% 40% 8%;
}
.brand-type {
    display: grid;
    line-height: 1;
    color: var(--blue);
}
.brand-name {
    font-family: "Oxanium", sans-serif;
    font-size: 21.12px;
    font-weight: 400;
    line-height: 1;
}
.brand-sub {
    font-family: "Montserrat", sans-serif;
    font-size: 5.73px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-left: 6px;
    margin-top: 2px;
}
.nav-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    width: auto;
}
.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 10px;
    border-radius: var(--radius-pill);
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
    transition:
        color 160ms ease,
        background 160ms ease;
    min-height: 44px;
}
.nav-link:hover {
    color: var(--blue);
    background: #eef5ff;
}
.nav-link.active {
    font-weight: 600;
    color: var(--blue);
}
.nav-link i {
    color: var(--blue);
    font-size: 12px;
}
.chevron-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.nav-link.mobile-cta {
    display: none;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px 8px 14px;
    border-radius: var(--radius-pill);
    background: var(--blue);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    transition:
        background 160ms ease,
        transform 160ms ease,
        box-shadow 160ms ease;
    box-shadow: 0 18px 34px -22px rgb(45 108 223 / 0.8);
}
.cta-btn:hover {
    background: #235fc8;
    transform: translateY(-1px);
    box-shadow: 0 22px 38px -20px rgb(45 108 223);
}
.w-fit {
    width: fit-content;
}
.cta-icon {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--white);
    flex-shrink: 0;
    overflow: hidden;
}
.cta-icon img {
    width: 12px;
    height: 12px;
    object-fit: contain;
}
.cta-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 11px;
    line-height: 1;
}
.nav-toggle,
.menu-button {
    display: none;
}
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding-top: clamp(190px, 19vw, 275px);
    padding-bottom: 72px;
    overflow: hidden;
    background: linear-gradient(to top, #fafafa 30%, #c8dfff 90%, #b7d6ff 140%);
    isolation: isolate;
}
.hero-wave {
    position: absolute;
    top: 50%;
    width: min(60vw, 900px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.85;
    transform: translateY(-50%);
}
.hero-wave {
    height: auto;
}
.hero-wave-left {
    right: 50%;
}
.hero-wave-right {
    left: 50%;
    width: min(56vw, 840px);
    transform: translateY(-50%) rotateY(180deg);
}
.grid-overlay {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 1;
}
.grid-top {
    top: 260px;
    width: 1110px;
    opacity: 0.37;
}
.grid-top img,
.grid-bottom img {
    width: 100%;
}
.grid-bottom {
    top: 62%;
    width: 1157px;
    opacity: 0.25;
}
.float-card {
    position: absolute;
    z-index: 5;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-card);
    font-family: "Inter", sans-serif;
    pointer-events: none;
    overflow: hidden;
}
.revenue-card {
    left: 118px;
    top: 395px;
    width: 178px;
    padding: 12px 12px 10px;
    border-radius: 4.5px;
}
.revenue-card .fc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}
.revenue-card .fc-title {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--ink);
}
.revenue-card .fc-badge {
    font-size: 8px;
    font-weight: 400;
    color: var(--muted);
}
.revenue-card .fc-chart {
    width: 100%;
    margin-top: 2px;
}
.visitor-card {
    right: 120px;
    top: 117px;
    width: 85px;
    padding: 10px 10px 8px;
    border-radius: 4px;
}
.visitor-card .fc-label {
    font-size: 9px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 2px;
}
.visitor-card .fc-big {
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.05;
}
.project-card {
    left: 174px;
    top: 145px;
    width: 70px;
    height: 96px;
    padding: 0;
    background: var(--white);
    border-radius: 7.793px;
    box-shadow: 3.542px 7.085px 21.255px 0 rgb(0 0 0 / 0.05);
    overflow: hidden;
}
.hero-widget-frame {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
}
.hero-widget-image {
    position: absolute;
    display: block;
    max-width: none;
}
.hero-widget-image--project {
    width: 717.34%;
    height: 392.34%;
    left: -358.67%;
    top: -56.96%;
}
.project-card .fc-label {
    font-size: 7.5px;
    color: var(--muted);
    margin-bottom: 2px;
}
.project-card .fc-big {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.1;
}
.fc-dot {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.stats-card {
    right: 120px;
    top: 116px;
    width: 167px;
    padding: 0;
    background: #fff0;
    box-shadow: none;
    border-radius: 0;
}
.sales-card {
    right: 127px;
    top: 164px;
    width: 120px;
    padding: 10px 10px 8px;
    border-radius: 4px;
}
.sales-card .fc-title {
    display: block;
    font-size: 9.2px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}
.sales-card .fc-pie {
    width: 58px;
    height: 58px;
    margin: 0 auto 4px;
}
.fc-legend {
    display: flex;
    gap: 4px;
    justify-content: center;
}
.fc-legend span {
    display: block;
    width: 8px;
    height: 4px;
    border-radius: 2px;
}
.growth-card {
    right: 249px;
    top: 413px;
    width: 97.682px;
    height: 73.385px;
    padding: 0;
    background: var(--white);
    border-radius: 7.4px;
    box-shadow: 5px 6px 26px 0 rgb(0 0 0 / 0.05);
    overflow: hidden;
}
.hero-widget-image--growth {
    width: 517.17%;
    height: 516.3%;
    left: -251.14%;
    top: -316.3%;
}
.hero-body {
    position: relative;
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 903px;
    padding: 0 24px;
}
.hero-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
}
.hero-line1 {
    font-size: clamp(34px, 3.2vw, 44px);
    font-weight: 400;
    color: #000;
    text-transform: none;
    line-height: 1.15;
}
.hero-line2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(48px, 4.2vw, 56px);
    line-height: 1.02;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: #fff0;
    white-space: nowrap;
}
.hero-sub {
    max-width: 647px;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-sub);
    line-height: 1.5;
    margin-bottom: 28px;
}
@media (max-width: 1100px) {
    .site-header {
        inset: 16px 24px auto;
    }
    .nav-links {
        width: auto;
        gap: 4px;
    }
    .nav-link {
        font-size: 16px;
        padding: 8px;
    }
}
@media (max-width: 900px) {
    .site-header {
        inset: 12px 12px auto;
    }
    .menu-button {
        display: grid;
        place-items: center;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #eef5ff;
        color: var(--ink);
        cursor: pointer;
        order: 3;
    }
    .menu-button i {
        grid-area: 1/1;
        font-size: 18px;
        transition:
            opacity 160ms ease,
            transform 160ms ease;
    }
    .menu-button .fa-xmark {
        opacity: 0;
        transform: rotate(-45deg) scale(0.7);
    }
    .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        width: auto;
        padding: 14px;
        border-radius: 20px;
        background: rgb(255 255 255 / 0.98);
        box-shadow: var(--shadow-nav);
        gap: 2px;
        opacity: 0;
        transform: translateY(-8px);
        visibility: hidden;
        transition:
            opacity 160ms ease,
            transform 160ms ease,
            visibility 160ms ease;
    }
    .nav-link {
        justify-content: space-between;
        min-height: 44px;
        padding: 10px 14px;
    }
    .nav-link.mobile-cta {
        display: flex;
        background: var(--blue);
        color: #fff;
        border-radius: var(--radius-pill);
        font-weight: 600;
        margin-top: 6px;
    }
    .nav-link.mobile-cta i {
        color: var(--white);
    }
    .nav-toggle:checked ~ .nav-links {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
    .nav-toggle:checked + .menu-button .fa-bars {
        opacity: 0;
        transform: rotate(45deg) scale(0.7);
    }
    .nav-toggle:checked + .menu-button .fa-xmark {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
    .cta-btn.nav-demo {
        display: none;
    }
    .hero {
        min-height: 100vh;
        padding-top: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero-wave,
    .grid-overlay {
        display: none;
    }
    .float-card {
        display: none;
    }
    .hero-body {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }
}
@media (max-width: 640px) {
    .site-header {
        top: 8px;
        padding: 0 10px;
    }
    .navbar {
        padding: 10px 12px;
    }
    .brand-logo {
        width: 112px;
    }
    .hero {
        padding-top: 100px;
    }
    .hero-line2 {
        white-space: normal;
    }
}
.leads-hero-wrapper {
    width: 100%;
    background: linear-gradient(180deg, #eef5ff 0%, #ffffff 100%);
    border-bottom: 1px solid #eef5ff;
}
.leads-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 160px var(--container-pad) 120px;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    overflow: hidden;
}
.leads-hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 540px;
}
.leads-hero-title {
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 400;
    color: var(--text);
    line-height: 1.2;
    margin: 0;
}
.leads-hero-tagline {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(24px, 3.2vw, 36px);
    color: var(--blue);
    line-height: 1.15;
    margin: 0;
}
.leads-hero-desc {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-sub);
    line-height: 1.6;
    margin: 8px 0 0 0;
}
.leads-hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.leads-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    background: #fff0;
    color: var(--blue);
    border: 2px solid var(--blue);
    font-size: 16px;
    font-weight: 500;
    transition: all 200ms ease;
    cursor: pointer;
}
.leads-cta-secondary:hover {
    background: var(--blue);
    color: var(--white);
}
.leads-pricing-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgb(45 108 223 / 0.12);
    color: var(--blue);
    font-size: 9px;
    flex-shrink: 0;
    transition:
        background 200ms ease,
        color 200ms ease;
}
.leads-cta-secondary:hover .leads-pricing-icon {
    background: rgb(255 255 255 / 0.25);
    color: var(--white);
}
.leads-hero-visual {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
}
.leads-mockup {
    width: 100%;
    max-width: 580px;
    height: auto;
    background: #fff0;
    transition: transform 320ms ease;
}
.leads-mockup:hover {
    transform: translateY(-6px);
}
@media (max-width: 1100px) {
    .leads-hero {
        gap: 40px;
        padding: 130px 40px 90px;
    }
    .leads-hero-title {
        font-size: 36px;
    }
    .leads-hero-tagline {
        font-size: 32px;
    }
    .leads-mockup {
        max-width: 500px;
    }
}
@media (max-width: 768px) {
    .leads-hero {
        flex-direction: column;
        gap: 40px;
        padding: 110px 20px 80px;
        text-align: center;
    }
    .leads-hero-content {
        align-items: center;
        max-width: 100%;
    }
    .leads-hero-title {
        font-size: 30px;
    }
    .leads-hero-tagline {
        font-size: 28px;
    }
    .leads-hero-ctas {
        justify-content: center;
    }
    .leads-mockup {
        max-width: 100%;
    }
}
.solutions-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 80px var(--container-pad);
    width: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f0f6ff 50%, #ffffff 100%);
    margin: 0 auto;
}
.solutions-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    margin-bottom: 56px;
}
.solutions-header {
    padding-top: 8px;
}
.sh-title {
    font-size: clamp(26px, 3.2vw, 32px);
}
.sh-tag {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sh-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 4px 12px rgb(45 108 223 / 0.12);
}
.sh-tag img {
    width: 14px;
    height: 14px;
}
.sh-tag span {
    font-size: 20px;
    font-weight: 500;
    color: #000;
}
.sh-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 30px;
    font-weight: 400;
    color: #000;
    text-align: center;
}
.gradient-text {
    background: linear-gradient(to right, var(--blue), var(--blue-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: #fff0;
}
.sh-italic {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-style: italic;
    font-weight: 600;
    line-height: 1;
}
.solutions-header .sh-italic {
    font-size: 48px;
}
.solutions-cards {
    display: flex;
    flex-direction: column;
    gap: 52px;
    width: 100%;
}
.solution-card {
    display: flex;
    align-items: stretch;
    gap: 48px;
    background: var(--white);
    padding: 40px;
    border-radius: 50px;
    width: 100%;
    box-shadow: var(--shadow-card);
}
.solution-card {
    transition:
        transform 320ms ease,
        box-shadow 320ms ease;
    will-change: transform;
}
.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgb(6 12 59 / 0.12);
}
.solution-card {
    opacity: 0;
    transform: translateY(18px);
}
.solution-card.in-view {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 560ms ease,
        transform 560ms cubic-bezier(0.2, 0.9, 0.3, 1);
}
.sc-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    justify-content: center;
}
.sc-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    width: 100%;
    flex-wrap: wrap;
}
.sc-header .sh-italic {
    font-size: 40px;
}
.sc-header h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
}
.sc-desc {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    line-height: 1.6;
}
.sc-desc .font-light {
    font-weight: 300;
}
.sc-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 8px;
}
.sc-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text);
}
.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #f6f6f6;
    border-radius: 50%;
    flex-shrink: 0;
    color: var(--blue);
    font-size: 11px;
}
.icon-circle img {
    width: 12px;
    height: 12px;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--blue);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 18px;
    border-radius: 50px;
    transition: all 0.2s ease;
}
.btn-primary .btn-icon {
    background: var(--white);
    color: var(--blue);
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease;
}
.btn-primary:hover {
    background: #235fc8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgb(45 108 223 / 0.8);
}
.btn-primary:hover .btn-icon {
    background: var(--white);
    color: #1a4ba3;
    transform: translate(1px, -1px);
}
.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--white);
    border-radius: 50%;
}
.rotate-45 {
    display: inline-block;
    transform: rotate(45deg);
}
.btn-icon img {
    width: 14px;
    height: 14px;
}
.sc-visual {
    flex: 1;
    display: flex;
    align-items: stretch;
    min-height: 412px;
}
.solution-card.sc-reverse .sc-visual-inner {
    background: linear-gradient(180deg, rgb(255 255 255 / 0.7) 0%, rgb(183 214 255 / 0.15) 100%);
}
.solutions-bottom-divider {
    display: block;
    width: 100%;
    margin-top: 28px;
}
.sc-visual-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(183 214 255 / 0.28) 0%, rgb(249 252 255 / 0.85) 100%);
    border: 1px solid rgb(183 214 255 / 0.35);
    border-radius: 36px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sc-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
    pointer-events: none;
}
.sc-visual-title {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 36px;
}
.sc-visual-title .sh-italic {
    font-size: 36px;
}
.sc-visual-title span {
    font-size: 16px;
    color: #525252;
}
.sc-mockup {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    width: 86%;
    max-width: 560px;
    border: 3px solid #b7d6ff;
    border-radius: 18px;
    z-index: 10;
    box-shadow: 0 28px 80px rgb(6 12 59 / 0.06);
}
.solution-card {
    padding: 48px;
}
@media (max-width: 1100px) {
    .solutions-section {
        padding: 60px 40px;
    }
    .solution-card {
        flex-direction: column;
        padding: 32px;
    }
    .solution-card.sc-reverse {
        flex-direction: column;
    }
    .sc-visual {
        width: 100%;
        min-height: 400px;
    }
}
@media (max-width: 640px) {
    .solutions-section {
        padding: 40px 20px;
    }
    .sh-title {
        font-size: 26px;
    }
    .solutions-header .sh-italic {
        font-size: 36px;
    }
    .sc-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .sc-header h4 {
        font-size: 20px;
    }
    .sc-visual {
        min-height: 350px;
    }
    .sc-mockup {
        top: 130px;
        width: 90%;
    }
    .sc-visual-title .sh-italic {
        font-size: 28px;
    }
}
.logos-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    padding: 70px 0;
    background: var(--page);
}
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: infiniteScroll 30s linear infinite;
}
.marquee-track:hover {
    animation-play-state: paused;
}
.logo-item {
    flex-shrink: 0;
    max-width: 140px;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
    filter: grayscale(0%);
    transition: all 0.3s ease;
}
.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.08);
}
@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}
.animate-scroll-left {
    animation: scrollLeft 60s linear infinite;
}
.animate-scroll-right {
    animation: scrollRight 60s linear infinite;
}
@media (max-width: 768px) {
    .marquee-track {
        gap: 35px;
    }
    .logo-item {
        max-width: 85px;
        max-height: 22px;
    }
}
.features-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px var(--container-pad) 120px;
    background: rgb(102 169 255 / 0.05);
    overflow: hidden;
}
.features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.fb-grid {
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 1440px;
    opacity: 0.6;
}
.fb-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 400px;
    background: radial-gradient(ellipse at top, rgb(114 161 239 / 0.15) 0%, transparent 70%);
}
.features-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    width: 100%;
    max-width: 1284px;
    margin: 0 auto;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    width: 100%;
}
.solutions-section.features-section {
    padding: 64px 0;
    background: #f4f4f4;
}
.solutions-section.features-section > .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}
.solutions-section.features-section .solutions-header {
    gap: 24px;
}
.solutions-section.features-section .sh-tag span {
    font-size: 20px;
}
.solutions-section.features-section .sh-title > span:first-child {
    font-size: 32px;
    font-weight: 400;
}
.solutions-section.features-section .sh-title .sh-italic {
    font-size: 48px;
}
.solutions-section.features-section .feature-grid {
    width: 100%;
    max-width: var(--container-max);
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 24px;
}
.solutions-section.features-section .feature-card {
    background: #fff;
    border-radius: 30px;
    border: 1px solid #eef2f8;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-height: 415px;
}
.solutions-section.features-section .feature-card--wide {
    grid-column: span 3;
    min-height: 391px;
}
.solutions-section.features-section .feature-card:not(.feature-card--wide) {
    grid-column: span 2;
}
.solutions-section.features-section .feature-shot {
    width: 100%;
    height: 255px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.solutions-section.features-section .feature-shot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.solutions-section.features-section .feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    color: #000;
}
.solutions-section.features-section .feature-card p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.35;
    color: #000;
}
.solutions-section.features-section .features-cta {
    display: flex;
    width: fit-content;
    margin: 0 auto;
}
.feature-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
    background: var(--white);
    padding: 20px;
    border-radius: 30px;
    width: 100%;
}
.fc-visual {
    position: relative;
    height: 255px;
    width: 100%;
    border-radius: 12px;
    box-shadow:
        0 0 0 4px var(--white),
        0 12px 96px 0 rgb(6 11 19 / 0.06);
}
.fc-visual-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #e9ebf1;
    border-radius: 12px;
    overflow: hidden;
    background: #fff0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fc-img {
    width: 110%;
    height: 110%;
    object-fit: cover;
    object-position: center top;
}
.fc-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 4px 12px;
}
.fc-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
}
.fc-content p {
    font-size: 18px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.5;
}
@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .solutions-section.features-section .feature-grid {
        grid-template-columns: 1fr 1fr;
    }
    .solutions-section.features-section .feature-card,
    .solutions-section.features-section .feature-card--wide,
    .solutions-section.features-section .feature-card:not(.feature-card--wide) {
        grid-column: span 1;
        min-height: auto;
    }
}
@media (max-width: 768px) {
    .features-section {
        padding: 60px 20px 80px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .solutions-section.features-section {
        padding: 56px 16px;
    }
    .solutions-section.features-section .feature-grid {
        grid-template-columns: 1fr;
    }
    .solutions-section.features-section .sh-title > span:first-child {
        font-size: 28px;
    }
    .solutions-section.features-section .sh-title .sh-italic {
        font-size: 38px;
    }
    .solutions-section.features-section .feature-shot {
        height: 220px;
    }
    .solutions-section.features-section .feature-card p {
        font-size: 16px;
    }
}
.testimonials-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 72px 24px 104px;
    background: linear-gradient(to bottom, #ffffff 0%, #e1edff 100%);
    overflow: hidden;
}
.testimonials-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    width: 100%;
    max-width: 1284px;
    margin: 0 auto;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    background: var(--white);
    padding: 26px;
    border-radius: 16px;
    border: 1px solid #e9ebf1;
    box-shadow:
        0 12px 40px 0 rgb(6 11 19 / 0.04),
        0 0 0 4px #fff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 16px 48px 0 rgb(6 11 19 / 0.08),
        0 0 0 4px #fff;
}
.tc-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.tc-content h3 {
    font-size: 18px;
    font-weight: 500;
    color: #060b13;
    line-height: 1.5;
    font-family: "Inter", sans-serif;
}
.tc-content p {
    font-size: 15px;
    font-weight: 400;
    color: #363d4f;
    line-height: 1.7;
    font-family: "Inter", sans-serif;
}
.tc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.tc-user {
    display: flex;
    align-items: center;
    gap: 16px;
}
.tc-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.tc-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.tc-name {
    font-size: 14px;
    font-weight: 400;
    color: #060b13;
    font-family: "Inter", sans-serif;
}
.tc-handle {
    font-size: 12px;
    font-weight: 500;
    color: #2d6cdf;
    font-family: "Inter", sans-serif;
}
.tc-social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #e9ebf1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.tc-social-icon img {
    width: 24px;
    height: 24px;
}
.testimonials-bottom-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 300px;
    background:
        radial-gradient(70% 130% at 50% 100%, rgb(102 169 255 / 0.22) 0%, #fff0 72%),
        linear-gradient(180deg, #fff0 0%, rgb(183 214 255 / 0.2) 100%);
    filter: blur(2px);
    pointer-events: none;
    z-index: 1;
}
@media (max-width: 1100px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 20px 80px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .testimonial-card {
        padding: 24px;
    }
}
.sh-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    background-color: #2d6cdf;
    border-radius: 50%;
    flex-shrink: 0;
}
.solutions-bottom-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    pointer-events: none;
}
.faq-section {
    position: relative;
    padding: 120px 24px 80px;
    background: linear-gradient(180deg, #f1f7ff 0%, #ffffff 55%);
    overflow: hidden;
}
.faq-bg-vector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    pointer-events: none;
}
.faq-bg-vector img {
    width: 100%;
    height: auto;
    min-height: 180px;
    object-fit: cover;
}
.faq-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: var(--white);
    border: 1px solid #e6edf8;
    border-radius: 16px;
    box-shadow: 0 8px 30px -20px rgb(6 12 60 / 0.22);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    border: 0;
    background: #fff0;
    color: var(--ink);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
}
.faq-icon {
    flex-shrink: 0;
    color: var(--blue);
    font-size: 18px;
    transition: transform 220ms ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 260ms ease;
}
.faq-answer p {
    padding: 0 24px 22px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-sub);
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.faq-item.active .faq-answer {
    max-height: 220px;
}
@media (max-width: 900px) {
    .faq-section {
        padding: 90px 16px 64px;
    }
    .faq-question {
        font-size: 17px;
        padding: 18px 18px;
    }
    .faq-answer p {
        padding: 0 18px 18px;
        font-size: 15px;
    }
}
.faq-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 24px 140px;
    background: rgb(183 214 255 / 0.15);
    overflow: hidden;
}
.faq-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.faq-bg-vector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.faq-bg-vector img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.faq-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 192px;
    overflow: hidden;
}
.faq-pattern-inner {
    width: 100%;
    height: 100%;
    background: url(../assets/faq/faq-bg-pattern-fill.svg);
    background-size: cover;
    -webkit-mask-image: url(../assets/faq/faq-bg-pattern-mask.svg);
    mask-image: url(../assets/faq/faq-bg-pattern-mask.svg);
    -webkit-mask-size: cover;
    mask-size: cover;
}
.faq-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 1258px;
}
.faq-item {
    background: #fff;
    border-radius: 20px;
    padding: 24px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #fff0;
}
.faq-item:hover {
    border-color: #2d6cdf;
    box-shadow: 0 4px 20px rgb(45 108 223 / 0.05);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question span {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #101828;
}
.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px 80px;
    }
    .faq-question span {
        font-size: 16px;
    }
}
.faq-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #eef5ff 0%, #ffffff 56%);
}
.faq-bg-vector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    pointer-events: none;
}
.faq-bg-vector img {
    width: 100%;
    height: auto;
    min-height: 170px;
    object-fit: cover;
}
.faq-container {
    position: relative;
    z-index: 2;
}
.faq-list {
    gap: 14px;
}
.faq-item {
    border: 1px solid #e6edf8;
    border-radius: 16px;
    box-shadow: 0 8px 26px -18px rgb(6 12 59 / 0.24);
    padding: 0;
}
.faq-question {
    width: 100%;
    border: 0;
    background: #fff0;
    cursor: pointer;
    padding: 22px 24px;
    text-align: left;
    gap: 12px;
}
.faq-question span {
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
}
.faq-icon {
    color: var(--blue);
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.24s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}
.faq-answer p {
    padding: 0 24px 22px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-sub);
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.faq-item.active .faq-answer {
    max-height: 220px;
}
@media (max-width: 900px) {
    .faq-question {
        padding: 18px;
    }
    .faq-question span {
        font-size: 18px;
    }
    .faq-answer p {
        padding: 0 18px 18px;
        font-size: 16px;
    }
}
@media (max-width: 1100px) {
    .faq-section .solutions-header {
        gap: 18px;
        margin-bottom: 40px;
    }

    .faq-section .sh-tag {
        gap: 10px;
    }

    .faq-section .sh-tag span {
        font-size: 18px;
    }

    .faq-section .sh-title {
        font-size: 30px;
        line-height: 1.1;
    }

    .faq-section .solutions-header .sh-italic {
        font-size: 42px;
        white-space: normal;
    }
}
@media (max-width: 768px) {
    .faq-section .solutions-header {
        gap: 12px;
        margin-bottom: 28px;
    }

    .faq-section .sh-tag span {
        font-size: 16px;
    }

    .faq-section .sh-title {
        font-size: 24px;
        line-height: 1.15;
    }

    .faq-section .solutions-header .sh-italic {
        font-size: 30px;
        white-space: normal;
    }
}
.cta-section {
    padding: 64px var(--container-pad);
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
}
.cta-box {
    position: relative;
    width: 100%;
    height: 558px;
    background: #2d6cdf;
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.cta-ellipse {
    position: absolute;
    opacity: 0.8;
}
.cta-ellipse-1 {
    width: 834px;
    height: 834px;
    left: 696px;
    top: -446px;
}
.cta-ellipse-2 {
    width: 834px;
    height: 834px;
    left: -324px;
    top: 172px;
}
.cta-ellipse-3 {
    width: 404px;
    height: 404px;
    left: -202px;
    top: -125px;
}
.cta-ellipse-4 {
    width: 404px;
    height: 404px;
    left: 1038px;
    top: 257px;
}
.cta-content {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 64px;
}
.cta-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 527px;
    color: #fff;
}
.cta-text h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 32px;
    font-weight: 500;
}
.cta-text h2 {
    font-size: 48px;
    margin-bottom: 8px;
}
.cta-text p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 20px;
}
.cta-section .cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    width: fit-content;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.cta-section .cta-btn:hover {
    transform: translateY(-2px);
}
.cta-section .cta-btn > span {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #2d6cdf;
}
.cta-btn-icon {
    background: #2d6cdf;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #211d1d;
    font-size: 14px;
}
.cta-phones {
    position: relative;
    width: 442px;
    height: 710px;
    margin-top: 200px;
}
.phone-mockup {
    position: absolute;
    width: 291px;
    height: 597px;
}
.phone-1 {
    right: 0;
    top: 28px;
    z-index: 1;
}
.phone-2 {
    right: 151px;
    top: 140px;
    z-index: 2;
}
.phone-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.phone-screen {
    position: absolute;
    top: 1.88%;
    left: 4.4%;
    width: 91.12%;
    height: 96.24%;
    object-fit: cover;
    border-radius: 35px;
}
@media (max-width: 1100px) {
    .cta-section {
        padding: 40px 24px;
    }
    .cta-content {
        flex-direction: column;
        text-align: center;
        padding: 60px 24px;
        gap: 40px;
    }
    .cta-box {
        height: auto;
    }
    .cta-text {
        align-items: center;
    }
    .cta-phones {
        width: 350px;
        height: 450px;
        margin-top: 0;
    }
    .phone-mockup {
        width: 220px;
        height: 450px;
    }
    .phone-2 {
        right: 100px;
        top: 50px;
    }
}
@media (max-width: 768px) {
    .cta-text h3 {
        font-size: 24px;
    }
    .cta-text h2 {
        font-size: 36px;
    }
    .cta-phones {
        display: none;
    }
}
.site-footer {
    position: relative;
    background: #fff;
    padding: 80px 0 30px;
    overflow: hidden;
    width: 100%;
}
.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.footer-bg-left {
    position: absolute;
    left: -5.5px;
    top: 0.5px;
    height: 499px;
    width: auto;
}
.footer-bg-right-container {
    position: absolute;
    right: -5.5px;
    top: 0.5px;
    height: 499px;
    width: 443px;
}
.footer-bg-right-container img {
    position: absolute;
}
.footer-bg-right-1 {
    inset: 0 4.7% 0 4.64%;
}
.footer-bg-right-2 {
    inset: 13.03% 59.75% 13.43% 0;
}
.footer-bg-right-3 {
    inset: 13.03% 0 13.42% 59.54%;
}
.footer-bg-right-4 {
    inset: 35.39% 9.35% 35.62% 73.05%;
}
.footer-bg-right-5 {
    inset: 35.39% 73.27% 35.62% 9.25%;
}
.footer-container {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 88px;
    gap: 40px;
}
.footer-main-col {
    max-width: 476px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.footer-brand img {
    width: 238px;
    height: auto;
}
.footer-tagline {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    color: #060b13;
    line-height: 1.5;
}
.footer-subscribe {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 24px;
}
.subscribe-input-wrapper {
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 12px 16px;
    width: 297px;
}
.subscribe-input-wrapper input {
    background: #fff0;
    border: none;
    width: 100%;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    color: #a6a6a6;
    outline: none;
}
.subscribe-btn {
    background: #2d6cdf;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.subscribe-btn:hover {
    transform: translateY(-2px);
}
.subscribe-btn span {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
}
.subscribe-btn-icon {
    background: #fff;
    color: #2d6cdf;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.footer-nav-cols {
    display: flex;
    gap: 45px;
}
.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-width: 177px;
}
.footer-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #0d1b3d;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}
.footer-nav-link:hover {
    color: #2d6cdf;
}
.nav-chevron {
    width: 24px;
    height: 24px;
    transform: rotate(-90deg);
}
.footer-bottom {
    border-top: 1px solid #f3f3f3;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-copyright {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    color: #060b13;
}
.footer-socials {
    display: flex;
    gap: 12px;
}
.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid #e9ebf1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d1b3d;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-link:hover {
    border-color: #2d6cdf;
    color: #2d6cdf;
    background: rgb(45 108 223 / 0.05);
}
@media (max-width: 1100px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-main-col {
        align-items: center;
    }
    .footer-subscribe {
        flex-direction: column;
        width: 100%;
    }
    .subscribe-input-wrapper {
        width: 100%;
        max-width: 400px;
    }
    .footer-nav-cols {
        flex-wrap: wrap;
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .footer-nav-cols {
        gap: 30px;
    }
    .footer-nav-col {
        min-width: 140px;
        gap: 20px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}
.old-footer {
    display: none;
}
.site-footer {
    position: relative;
    background: #fbfcff;
    border-top: 1px solid #e8eefb;
    padding: 56px 24px 22px;
    overflow: hidden;
}
.footer-top,
.footer-bottom {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
}
.footer-top {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px 48px;
    padding-bottom: 34px;
}
.footer-pattern {
    position: absolute;
    top: 10px;
    width: 210px;
    height: 220px;
    border: 2px solid #d8e7ff;
    border-left: 0;
    border-radius: 0 80px 80px 0;
    opacity: 0.7;
}
.footer-pattern::before,
.footer-pattern::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 2px solid #d8e7ff;
    border-left: 0;
    border-radius: 0 68px 68px 0;
}
.footer-pattern::after {
    inset: 36px;
    border-radius: 0 56px 56px 0;
}
.footer-pattern-left {
    left: -110px;
}
.footer-pattern-right {
    right: -110px;
    transform: scaleX(-1);
}
.footer-pattern-svg {
    position: absolute;
    top: 0;
    width: auto;
    height: 500px;
    z-index: 1;
    pointer-events: none;
}
.footer-pattern-svg.footer-pattern-left {
    left: -16px;
}
.footer-pattern-svg.footer-pattern-right {
    right: -16px;
    transform: rotate(0deg);
    transform-origin: center;
}
.footer-brand img {
    width: 148px;
    height: auto;
}
.footer-about {
    margin-top: 18px;
    max-width: 360px;
    font-size: 14px;
    line-height: 1.5;
    color: #4e5675;
}
.footer-subscribe {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
}
.footer-subscribe input {
    width: 190px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid #edf1f9;
    background: #fff;
    padding: 0 12px;
    color: #8390af;
    font-size: 12px;
    outline: none;
}
.footer-subscribe button {
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    padding: 0 10px 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.footer-subscribe button i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}
.footer-subscribe-icon {
    transform: rotate(45deg);
}
.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    gap: 18px 26px;
    align-content: start;
    padding-top: 22px;
}
.footer-nav-grid a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: #112048;
    font-size: 16px;
    font-weight: 500;
}
.footer-nav-grid a i {
    font-size: 11px;
    color: #a5b1c9;
}
.footer-socials {
    display: flex;
    gap: 10px;
}
.footer-socials a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #d9e5fa;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.footer-bottom {
    border-top: 1px solid #deebfd;
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    z-index: 2;
}
.footer-bottom p {
    font-size: 14px;
    color: #3c4560;
}
@media (max-width: 980px) {
    .footer-top {
        grid-template-columns: 1fr;
        row-gap: 34px;
    }
    .footer-subscribe {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .footer-subscribe input {
        width: 100%;
    }
    .footer-subscribe button {
        align-self: flex-start;
    }
    .footer-nav-grid {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
        padding-top: 0;
    }
    .footer-pattern-svg.footer-pattern-left,
    .footer-pattern-svg.footer-pattern-right {
        display: none;
    }
}
@media (max-width: 640px) {
    .site-footer {
        padding: 48px 16px 22px;
    }
    .footer-nav-grid {
        grid-template-columns: 1fr;
    }
    .footer-subscribe {
        flex-wrap: nowrap;
    }
    .footer-subscribe input {
        width: 100%;
    }
    .footer-subscribe button {
        align-self: flex-start;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-pattern {
        display: none;
    }
}
@font-face {
    font-family: "Font Awesome 6 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/webfonts/fa-brands-400.woff2) format("woff2");
}
@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/webfonts/fa-regular-400.woff2) format("woff2");
}
@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/webfonts/fa-solid-900.woff2) format("woff2");
}
.blogs-hero {
    position: relative;
    background: linear-gradient(180deg, #b7d6ff 0%, #fafafa 100%);
    padding: 160px 0 64px;
    overflow: hidden;
    min-height: 464px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.blogs-hero-bg {
    position: absolute;
    bottom: -36px;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 1;
}
.hero-decoration {
    width: 1110px;
    opacity: 0.37;
}
.blogs-hero-content {
    position: relative;
    z-index: 10;
}
.hero-titles {
    margin: 24px 0;
}
.hero-title-main {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #000;
    margin-bottom: 4px;
}
.hero-title-gradient {
    font-size: 48px;
    background: linear-gradient(90deg, #2d6cdf 0%, #72a1ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
}
.hero-description {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    color: #2f2f2f;
    max-width: 800px;
    line-height: 1.5;
}
.featured-blog-section {
    background: #fff;
    padding: 80px 0;
}
.featured-blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 48px;
}
.featured-blog-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: flex-start;
}
@media (min-width: 1024px) {
    .featured-blog-card {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }
}
.fb-image {
    width: 100%;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
}
.fb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fb-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.fb-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.fb-date {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    color: #757575;
}
.fb-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: #101828;
    line-height: 1.2;
}
.fb-excerpt {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    color: #757575;
    line-height: 1.5;
}
.all-blogs-section {
    padding: 80px 0;
    background: #fafafa;
}
.section-header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 48px;
    text-align: left;
}
.sh-titles-left {
    margin-top: 12px;
}
.section-header-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
    text-align: center;
}
.sh-titles-centered {
    margin-top: 12px;
}
.sh-title-small {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #000;
    margin-bottom: 8px;
}
.sh-title-gradient {
    font-size: 48px;
    background: linear-gradient(90deg, #2d6cdf 0%, #72a1ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
}
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 32px;
    max-width: var(--container-max);
    margin: 0 auto;
}
.blog-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.05);
}
.bc-image {
    position: relative;
    height: 280px;
    border-radius: 24px;
    overflow: hidden;
}
.bc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bc-icon-btn {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: #2d6cdf;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    z-index: 5;
    transition: transform 0.3s ease;
}
.blog-card:hover .bc-icon-btn {
    transform: scale(1.1);
}
.bc-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.bc-date {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    color: #757575;
}
.bc-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #101828;
    line-height: 1.4;
}
@media (max-width: 1200px) {
    .featured-blog-card {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .fb-image {
        width: 100%;
        height: 360px;
    }
    .fb-content {
        gap: 24px;
        align-items: flex-start;
    }
    .blogs-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}
@media (max-width: 768px) {
    .blogs-hero {
        padding: 120px 0 40px;
    }
    .hero-title-main {
        font-size: 24px;
    }
    .hero-title-gradient {
        font-size: 36px;
    }
    .featured-blog-section,
    .all-blogs-section {
        padding: 40px 0;
    }
    .fb-title {
        font-size: 28px;
    }
    .sh-title-small {
        font-size: 24px;
    }
    .sh-title-gradient {
        font-size: 36px;
    }
    .bc-image {
        height: 220px;
    }
}
.blog-details-hero {
    padding: 140px 0 40px;
}
.bd-tag-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.bd-tag-row span {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000;
}
.bd-date {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    color: #2f2f2f;
    margin-bottom: 16px;
}
.bd-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #000;
    line-height: 1.3;
    max-width: 900px;
}
.blog-details-main-img {
    padding: 0;
    margin-bottom: 64px;
}
.bd-main-img-container {
    height: 600px;
    border-radius: 24px;
    overflow: hidden;
}
.bd-main-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-details-content {
    padding: 0 0 64px;
    max-width: 100%;
}
.bd-content-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.bd-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.bd-section h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #2f2f2f;
}
.bd-section p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    color: #2f2f2f;
    line-height: 1.6;
}
.bd-conclusion {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    color: #2f2f2f;
    line-height: 1.6;
}
.recommended-blogs-section {
    padding: 64px 0;
    background: #f4f7ff;
}
.rb-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 48px;
}
.rb-tag-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.rb-tag-row span {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000;
}
.rb-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 32px;
    color: #000;
    margin-bottom: 4px;
}
.rb-subtitle {
    font-size: 48px;
}
@media (max-width: 1100px) {
    .blog-details-hero,
    .blog-details-main-img,
    .blog-details-content,
    .recommended-blogs-section {
        padding-left: 40px;
        padding-right: 40px;
    }
    .bd-main-img-container {
        height: 400px;
    }
}
@media (max-width: 768px) {
    .blog-details-hero,
    .blog-details-main-img,
    .blog-details-content,
    .recommended-blogs-section {
        padding-left: 24px;
        padding-right: 24px;
    }
    .bd-title {
        font-size: 24px;
    }
    .bd-main-img-container {
        height: 300px;
    }
    .rb-subtitle {
        font-size: 36px;
    }
}
.blog-details-page {
    background: #f4f4f4;
}
.blog-details-hero {
    padding: 150px 0 34px;
    background: #f4f4f4;
}
.blog-details-hero-inner {
    max-width: var(--container-max);
}
.bd-tag-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.bd-tag-row span:last-child {
    font-size: 18px;
    font-weight: 500;
    color: #0f1d43;
}
.bd-date {
    margin-bottom: 10px;
    color: #5d6180;
    font-size: 16px;
    font-weight: 500;
}
.bd-title {
    font-size: clamp(30px, 4.2vw, 48px);
    line-height: 1.2;
    font-weight: 400;
    color: #0f1d43;
}
.blog-details-main-img {
    padding: 0;
    margin-bottom: 64px;
}
.bd-main-img-container {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid #e6edf8;
    box-shadow: 0 20px 40px -28px rgb(6 12 59 / 0.25);
}
.bd-main-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-details-content {
    padding: 44px 0 78px;
}
.bd-content-inner {
    width: 100%;
    display: grid;
    gap: 26px;
}
.bd-section {
    display: grid;
    gap: 10px;
}
.bd-section h2 {
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.3;
    color: #111b42;
    font-weight: 600;
}
.bd-section p,
.bd-conclusion {
    font-size: 18px;
    line-height: 1.75;
    color: #3f4869;
}
.recommended-blogs-section {
    padding: 78px 0;
    background: #f4f7ff;
}
.rb-header {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 6px;
    margin-bottom: 40px;
}
.rb-tag-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.rb-tag-row span:last-child {
    font-size: 18px;
    color: #0f1d43;
    font-weight: 500;
}
.rb-title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 500;
    color: #111b42;
    text-align: center;
}
.rb-subtitle {
    font-size: clamp(36px, 4vw, 52px);
    text-align: center;
}
.recommended-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1100px) {
    .recommended-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 760px) {
    .blog-details-hero {
        padding-top: 118px;
    }
    .bd-section p,
    .bd-conclusion {
        font-size: 16px;
    }
    .recommended-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog details gallery layout */
.blog-details-page .blog-details-main-img {
    margin-bottom: 0;
}

.blog-details-page .bd-main-img-container {
    height: 430px;
}

.bd-date-under-image {
    margin: 18px 0 0;
    color: #5d6180;
    font-size: 16px;
    font-weight: 500;
}

.blog-gallery-section {
    padding: 0 0 78px;
    background: #f4f4f4;
}

.blog-gallery-header {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.blog-gallery-header h2 {
    margin: 0;
    color: #111b42;
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 600;
}

.blog-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.blog-gallery-item {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 2.65;
    border: 0;
    border-radius: 0;
    padding: 0;
    overflow: hidden;
    background: #111827;
    cursor: zoom-in;
}

.blog-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease, opacity 260ms ease;
}

.blog-gallery-item:hover img {
    opacity: 0.86;
    transform: scale(1.045);
}

.gallery-dialog {
    width: min(92vw, 1100px);
    max-width: 1100px;
    border: 0;
    border-radius: 24px;
    padding: 0;
    overflow: visible;
    background: transparent;
}

.gallery-dialog::backdrop {
    background: rgb(6 8 18 / 0.82);
    backdrop-filter: blur(6px);
}

.gallery-dialog-img {
    width: 100%;
    max-height: 84vh;
    object-fit: contain;
    border-radius: 20px;
    background: #0b1020;
    box-shadow: 0 30px 90px -30px rgb(0 0 0 / 0.75);
}

.gallery-dialog-close {
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #111b42;
    cursor: pointer;
    box-shadow: 0 16px 34px -18px rgb(0 0 0 / 0.55);
}

@media (max-width: 1100px) {
    .blog-details-page .bd-main-img-container {
        height: 330px;
    }

    .blog-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .blog-details-page .blog-details-main-img,
    .blog-gallery-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .blog-details-page .bd-main-img-container {
        height: 230px;
        border-radius: 18px;
    }

    .bd-date-under-image {
        font-size: 14px;
        margin-top: 14px;
    }

    .blog-gallery-section {
        padding-bottom: 56px;
    }

    .blog-gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery-dialog {
        width: calc(100vw - 32px);
    }

    .gallery-dialog-close {
        top: -14px;
        right: -10px;
        width: 38px;
        height: 38px;
    }
}
.contact-hero {
    padding: 140px 0 64px;
    background: linear-gradient(180deg, #b7d6ff -50%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}
.contact-hero-bg {
    position: absolute;
    bottom: -36px;
    left: -1755px;
    top: 261px;
    width: 1110px;
    opacity: 0.37;
    pointer-events: none;
}
.contact-hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}
.ch-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.ch-tag span {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000;
}
.ch-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.2;
}
.ch-subtitle {
    font-size: 48px;
    margin-bottom: 24px;
}
.ch-desc {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    color: #2f2f2f;
    line-height: 1.6;
}
.contact-section {
    padding: 64px 0;
    background: #fafafa;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
}
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.contact-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 32px;
}
.cc-header {
    margin-bottom: 32px;
}
.cc-header h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #101828;
    margin-bottom: 16px;
}
.cc-header p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    color: #4a5565;
}
.cc-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.cc-item h4 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #101828;
    margin-bottom: 8px;
}
.cc-item p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    color: #4a5565;
    line-height: 1.5;
}
.cc-socials {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}
.cc-social-link {
    width: 40px;
    height: 40px;
    background: #eaf0fc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d6cdf;
    font-size: 18px;
    transition: all 0.3s ease;
}
.cc-social-link:hover {
    background: #2d6cdf;
    color: #fff;
}
.cc-map-container {
    height: 256px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}
.cc-map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-form-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 32px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #101828;
}
.form-group input,
.form-group textarea {
    background: #fff;
    border: 0.8px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 16px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #101828;
    outline: none;
    transition: border-color 0.3s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #d7d7d7;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #2d6cdf;
}
.form-group textarea {
    height: 170px;
    resize: none;
}
.btn-send {
    background: #2d6cdf;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}
.btn-send:hover {
    background: #1e56c0;
}
.contact-faq-section {
    padding: 64px 0;
    background: rgb(183 214 255 / 0.15);
}
@media (max-width: 1100px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .contact-hero,
    .contact-section,
    .contact-faq-section {
        padding-left: 24px;
        padding-right: 24px;
    }
    .ch-subtitle {
        font-size: 36px;
    }
    .cc-details {
        grid-template-columns: 1fr;
    }
}
.about-page-shell .about-hero {
    position: relative;
}
.about-page-shell .about-hero-content {
    max-width: 800px;
}
.about-page-shell .about-hero-break {
    display: none;
}
.about-page-shell .about-hero-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}
.about-page-shell .about-hero-btn {
    min-width: 200px;
}
.about-page-shell .about-hero-stats {
    width: 100%;
    max-width: 1100px;
}
.about-page-shell .about-hero-stat {
    text-align: center;
}
.about-page-shell .cta-btn-icon i {
    color: #fff;
}

@media (max-width: 1100px) {
    .about-page-shell .about-hero {
        padding-top: 128px;
        padding-bottom: 56px;
    }

    .about-page-shell .about-hero-content {
        max-width: 720px;
    }

    .about-page-shell .about-hero-title {
        font-size: 38px;
    }

    .about-page-shell .about-hero-subtitle {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .about-page-shell .about-hero-desc {
        max-width: 600px;
        font-size: 16px;
        line-height: 1.55;
        margin-bottom: 28px;
    }

    .about-page-shell .about-hero-actions {
        gap: 12px;
    }

    .about-page-shell .about-hero-btn {
        min-width: 180px;
    }

    .about-page-shell .about-hero-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 18px;
        padding-inline: 0;
        padding-top: 28px;
    }

    .about-page-shell .about-hero-stat span:first-child {
        font-size: 42px !important;
    }

    .about-page-shell .about-hero-stat span:last-child {
        font-size: 15px;
    }
}

@media (max-width: 640px) {
    .about-page-shell .about-hero {
        padding-top: 108px;
        padding-bottom: 44px;
    }

    .about-page-shell .about-hero-content {
        max-width: 100%;
        padding-inline: 4px;
    }

    .about-page-shell .about-hero-title {
        font-size: 30px;
        line-height: 1.14;
    }

    .about-page-shell .about-hero-subtitle {
        font-size: 32px;
        line-height: 1.06;
        margin-bottom: 18px;
    }

    .about-page-shell .about-hero-break {
        display: block;
    }

    .about-page-shell .about-hero-desc {
        max-width: 540px;
        font-size: 15px;
        line-height: 1.55;
        margin-bottom: 24px;
    }

    .about-page-shell .about-hero-actions {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 12px;
        width: 100%;
        margin-bottom: 20px;
    }

    .about-page-shell .about-hero-btn {
        min-width: 0;
        flex: 1 1 0;
        width: auto;
        padding-left: 14px;
        padding-right: 14px;
        font-size: 14px;
    }

    .about-page-shell .about-hero-btn span:first-child {
        white-space: nowrap;
    }

    .about-page-shell .about-hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 14px;
        padding-top: 20px;
    }

    .about-page-shell .about-hero-stat span:first-child {
        font-size: 32px !important;
        margin-bottom: 4px !important;
    }

    .about-page-shell .about-hero-stat span:last-child {
        font-size: 12px;
        line-height: 1.25;
    }
}
.teams-hero {
    padding: 180px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to top, #fafafa 30%, #b7d6ff 150%);
}
.teams-hero-container {
    position: relative;
    z-index: 2;
}
.teams-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.teams-hero-tag span:last-child {
    font-size: 20px;
    font-weight: 500;
    color: #000;
}
.teams-hero-titles {
    margin-bottom: 24px;
}
.teams-title-main {
    font-size: 32px;
    font-weight: 400;
    color: #000;
    margin-bottom: 4px;
}
.teams-title-gradient {
    font-size: 48px;
}
.teams-hero-description {
    font-size: 16px;
    color: #2f2f2f;
    max-width: 800px;
    line-height: 1.6;
}
.teams-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}
.team-grid-section {
    padding: 64px 0 100px;
    background: #fafafa;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.team-card {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition:
        transform 0.3s ease,
        shadow 0.3s ease;
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.05);
}
.tc-image {
    width: 100%;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
}
.tc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-card .tc-info {
    background: #fbfbfb;
    border-radius: 20px;
    padding: 16px 20px;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100%;
    gap: 12px;
    transition: background 0.3s ease;
}
.team-card:hover {
    background: #e7f1ff;
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgb(0 0 0 / 0.04);
}
.team-card:hover .tc-info {
    background: #fff;
}
.team-card .tc-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    flex: 1;
}
.team-card .tc-name {
    font-size: 20px;
    font-weight: 600;
    color: #101828;
    margin-bottom: 2px;
}
.team-card .tc-role {
    font-size: 16px;
    color: #667085;
    font-weight: 400;
}
.team-card .tc-social {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d6cdf;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.02);
}
.team-card:hover .tc-social {
    background: rgb(220 235 255 / 0.4);
}
.team-card .tc-social:hover {
    background: #2d6cdf;
    color: #fff;
    transform: rotate(15deg);
}
@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .teams-hero {
        padding-top: 140px;
    }
    .teams-title-gradient {
        font-size: 36px;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .tc-image {
        height: 300px;
    }
}
.premium-bg-container {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #eef5ff 0%, #ffffff 56%);
}
.premium-bg-top,
.premium-bg-bottom {
    position: absolute;
    overflow: hidden;
}
.premium-bg-container {
    position: relative;
    overflow: hidden;
}
.premium-bg-top,
.premium-bg-bottom {
    left: 50%;
    width: 100vw;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}
.premium-bg-top {
    top: 0;
    transform: translateX(-50%);
}
.premium-bg-bottom {
    bottom: 0;
    top: auto;
    transform: translateX(-50%) scaleY(-1);
}
.premium-bg-top img,
.premium-bg-bottom img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
}
.faq-section {
    position: relative;
    overflow: hidden;
}
.faq-bg-vector {
    position: absolute;
    left: 50%;
    bottom: 0;
    top: auto;
    width: 100vw;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.18;
}
.faq-bg-vector img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.faq-container {
    position: relative;
    z-index: 2;
}
/* Shared navbar solutions dropdown */
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-link-dropdown,
.nav-dropdown > .nav-link {
    gap: 6px;
}

.nav-caret {
    color: var(--blue);
    font-size: 14px;
    line-height: 1;
    transform: translateY(-1px);
    transition: transform 160ms ease;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    min-width: 190px;
    padding: 8px;
    border: 1px solid #e7eefb;
    border-radius: 18px;
    background: rgb(255 255 255 / 0.98);
    box-shadow: 0 18px 46px -24px rgb(6 12 59 / 0.34);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -6px);
    transition:
        opacity 160ms ease,
        transform 160ms ease,
        visibility 160ms ease;
    z-index: 120;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret {
    transform: translateY(-1px) rotate(180deg);
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 12px;
    border-radius: 12px;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    transition:
        background 160ms ease,
        color 160ms ease;
}

.nav-dropdown-item:hover,
.nav-dropdown-item:focus-visible {
    background: #eef5ff;
    color: var(--blue);
    outline: 0;
}

@media (max-width: 900px) {
    .nav-dropdown {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 0;
        margin: -2px 0 6px 12px;
        padding: 4px;
        border: 0;
        border-left: 1px solid #dbe9ff;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        transform: none;
    }

    .nav-dropdown-item {
        min-height: 38px;
        padding: 8px 12px;
        color: #4e5675;
        font-size: 14px;
    }
}
.nav-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px;
}

@media (max-width: 900px) {
    .nav-dropdown::after {
        display: none;
    }
}
/* Testimonials: 3-card rows with a featured center card */
.testimonials-section .testimonials-container {
    max-width: 1240px;
}

.testimonials-section .testimonials-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr) minmax(0, 0.92fr);
    gap: clamp(18px, 2.1vw, 30px);
    align-items: center;
    overflow: visible;
}

.testimonials-section .testimonial-card {
    width: 100%;
    min-height: 176px;
    height: 100%;
    padding: clamp(22px, 2.2vw, 30px);
    border-radius: 18px;
    box-shadow:
        0 18px 50px -28px rgb(6 12 59 / 0.26),
        0 0 0 1px rgb(231 238 251 / 0.9);
    transform-origin: center;
}

.testimonials-section .testimonial-card:nth-child(3n + 2) {
    min-height: 196px;
    transform: scale(1.04);
    z-index: 2;
    box-shadow:
        0 24px 70px -30px rgb(6 12 59 / 0.32),
        0 0 0 1px rgb(214 228 250 / 0.95);
}

.testimonials-section .testimonial-card:nth-child(3n + 2):hover {
    transform: scale(1.04) translateY(-5px);
}

.testimonials-section .testimonial-card:nth-child(3n + 1),
.testimonials-section .testimonial-card:nth-child(3n) {
    transform: scale(0.96);
}

.testimonials-section .testimonial-card:nth-child(3n + 1):hover,
.testimonials-section .testimonial-card:nth-child(3n):hover {
    transform: scale(0.96) translateY(-5px);
}

.testimonials-section .tc-content h3 {
    font-size: clamp(15px, 1.4vw, 18px);
}

.testimonials-section .tc-content p {
    font-size: clamp(13px, 1.1vw, 15px);
    line-height: 1.55;
}

.testimonials-section .tc-footer {
    gap: 16px;
}

@media (max-width: 1100px) {
    .testimonials-section .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
    }

    .testimonials-section .testimonial-card,
    .testimonials-section .testimonial-card:nth-child(3n + 1),
    .testimonials-section .testimonial-card:nth-child(3n + 2),
    .testimonials-section .testimonial-card:nth-child(3n) {
        min-height: 180px;
        transform: none;
    }

    .testimonials-section .testimonial-card:hover,
    .testimonials-section .testimonial-card:nth-child(3n + 1):hover,
    .testimonials-section .testimonial-card:nth-child(3n + 2):hover,
    .testimonials-section .testimonial-card:nth-child(3n):hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 760px) {
    .testimonials-section .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .testimonials-section .testimonial-card,
    .testimonials-section .testimonial-card:nth-child(3n + 1),
    .testimonials-section .testimonial-card:nth-child(3n + 2),
    .testimonials-section .testimonial-card:nth-child(3n) {
        min-height: 0;
        padding: 22px;
    }
}
/* Footer links: simple list with right chevron (match reference) */
.footer-nav-grid {
    gap: 20px 34px;
}

.footer-nav-grid a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 40px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #1d2b4f;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.35;
    transform: none;
}

.footer-nav-grid a::after {
    content: "";
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 20 20%27 fill=%27none%27%3E%3Cpath d=%27M5.5 7.5L10 12l4.5-4.5%27 stroke=%27%2399A7C4%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E");
    transform: translateY(-1px);
    transition:
        transform 160ms ease,
        opacity 160ms ease;
    opacity: 0.95;
}

.footer-nav-grid a:hover,
.footer-nav-grid a:focus-visible {
    border: 0;
    background: transparent;
    color: var(--blue);
    transform: none;
    outline: none;
}

.footer-nav-grid a:hover::after,
.footer-nav-grid a:focus-visible::after {
    transform: translateY(-1px);
    opacity: 1;
}

@media (max-width: 980px) {
    .footer-nav-grid {
        gap: 14px 24px;
    }

    .footer-nav-grid a {
        min-height: 36px;
        font-size: 16px;
    }

    .footer-nav-grid a::after {
        width: 14px;
        height: 14px;
        background-size: 14px 14px;
    }
}

/* CTA mobile/tablet: keep the app mockups visible and centered like the design */
@media (max-width: 1100px) {
    .cta-section {
        max-width: 100%;
        padding: 42px 16px;
    }

    .cta-box {
        min-height: 760px;
        height: auto;
        align-items: flex-start;
        border-radius: 24px;
    }

    .cta-content {
        min-height: 760px;
        padding: 44px 20px 0;
        flex-direction: column;
        justify-content: flex-start;
        gap: 24px;
        text-align: center;
    }

    .cta-text {
        align-items: center;
        max-width: 370px;
        margin: 0 auto;
        gap: 10px;
    }

    .cta-text h3 {
        max-width: 320px;
        font-size: 24px;
        line-height: 1.15;
    }

    .cta-text h2 {
        font-size: 34px;
        line-height: 1;
        margin-bottom: 0;
    }

    .cta-text p {
        max-width: 330px;
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 1.45;
    }

    .cta-section .cta-btn {
        padding: 9px 14px 9px 18px;
        font-size: 14px;
    }

    .cta-section .cta-btn > span {
        font-size: 14px;
    }

    .cta-phones {
        display: block;
        position: absolute;
        left: 50%;
        bottom: -120px;
        width: 330px;
        height: 430px;
        margin-top: 0;
        transform: translateX(-50%);
    }

    .phone-mockup {
        width: 190px;
        height: 390px;
    }

    .phone-1 {
        right: 4px;
        top: 0;
        z-index: 1;
    }

    .phone-2 {
        left: 0;
        right: auto;
        top: 92px;
        z-index: 2;
    }
}

@media (max-width: 640px) {
    .cta-section {
        padding: 32px 12px;
    }

    .cta-box {
        min-height: 680px;
        border-radius: 18px;
    }

    .cta-content {
        min-height: 680px;
        padding: 28px 18px 0;
        gap: 18px;
    }

    .cta-text h3 {
        max-width: 260px;
        font-size: 20px;
    }

    .cta-text h2 {
        font-size: 28px;
    }

    .cta-text p {
        max-width: 270px;
        font-size: 12px;
    }

    .cta-phones {
        display: block;
        bottom: -92px;
        width: 285px;
        height: 360px;
    }

    .phone-mockup {
        width: 165px;
        height: 338px;
    }

    .phone-1 {
        right: -4px;
        top: 0;
    }

    .phone-2 {
        left: -3px;
        top: 78px;
    }

    .phone-screen {
        border-radius: 24px;
    }
}

/* Mobile navbar: keep dropdown content inside the menu panel */
@media (max-width: 900px) {
    .site-header {
        z-index: 1200;
        padding: 0 0 ;
    }

    .navbar {
        position: relative;
        z-index: 1201;
    }

    .nav-links {
        z-index: 1202;
        padding: 16px !important;
        border: 1px solid #e7eefb;
        border-radius: 24px !important;
        background: #fff !important;
        box-shadow: 0 24px 50px -28px rgba(6, 12, 59, 0.45) !important;
        max-height: calc(100vh - 110px);
        overflow-y: auto;
    }

    .nav-dropdown {
        display: flex !important;
        width: 100%;
        flex-direction: column;
        align-items: stretch !important;
    }

    .nav-dropdown > .nav-link {
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static !important;
        display: grid;
        min-width: 0 !important;
        margin: 0 0 6px 12px !important;
        padding: 4px 0 4px 12px !important;
        border: 0 !important;
        border-left: 1px solid #dbe9ff !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .nav-dropdown-item {
        min-height: 34px !important;
        padding: 7px 10px !important;
        border-radius: 10px !important;
        color: #4e5675 !important;
        font-size: 14px !important;
    }

    .nav-dropdown-item:hover,
    .nav-dropdown-item:focus-visible {
        color: var(--blue) !important;
        background: #eef5ff !important;
    }

    .nav-dropdown::after {
        display: none !important;
    }
}

/* Mobile footer: compact single-column layout matching the reference */
@media (max-width: 760px) {
    .site-footer {
        --footer-mobile-pad: 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 32px var(--footer-mobile-pad) 24px !important;
        background: #fff !important;
    }

    .footer-pattern,
    .footer-pattern-svg,
    .footer-bg {
        display: none !important;
    }

    .footer-top,
    .footer-bottom,
    .footer-brand-col,
    .footer-main-col {
        display: contents !important;
    }

    .footer-brand {
        order: 1;
        width: fit-content;
        margin: 0 0 12px !important;
        align-self: flex-start;
    }

    .footer-brand img {
        width: 153px !important;
        height: auto;
    }

    .footer-about,
    .footer-tagline {
        order: 2;
        width: 100% !important;
        max-width: 358px !important;
        margin: 0 0 24px !important;
        color: #060b13 !important;
        font-size: 14px !important;
        line-height: normal !important;
        text-align: left !important;
    }

    .footer-socials {
        order: 3;
        display: flex !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        margin: 0 0 24px !important;
        width: 100%;
    }

    .footer-socials a,
    .social-link {
        width: 40px !important;
        height: 40px !important;
        border-radius: 50% !important;
        border: 1px solid #e9ebf1 !important;
        color: var(--blue) !important;
        background: #fff !important;
        font-size: 14px !important;
    }

    .footer-subscribe {
        order: 4;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
        width: 100% !important;
        margin: 0 0 24px !important;
    }

    .subscribe-input-wrapper,
    .footer-subscribe input {
        width: 100% !important;
        max-width: none !important;
    }

    .subscribe-input-wrapper {
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
    }

    .footer-subscribe input {
        height: 42px !important;
        border: 1px solid #f0f0f0 !important;
        border-radius: 16px !important;
        background: #fafafa !important;
        padding: 0 16px !important;
        color: #a6a6a6 !important;
        font-size: 14px !important;
    }

    .footer-subscribe button,
    .subscribe-btn {
        align-self: flex-start !important;
        width: 152px !important;
        height: 40px !important;
        min-height: 40px !important;
        padding: 0 8px 0 18px !important;
        border-radius: 50px !important;
        background: var(--blue) !important;
        color: #fff !important;
        font-size: 16px !important;
        justify-content: center !important;
        box-shadow: none !important;
    }

    .footer-subscribe button i,
    .footer-subscribe button .icon,
    .subscribe-btn-icon {
        width: 28px !important;
        height: 28px !important;
        font-size: 11px !important;
    }

    .footer-nav-grid,
    .footer-nav-cols {
        order: 5;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 0 20px !important;
    }

    .footer-nav-col {
        display: contents !important;
    }

    .footer-nav-grid a,
    .footer-nav-link {
        width: 100% !important;
        min-height: 24px !important;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        color: #1d2b4f !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        text-align: left !important;
        line-height: normal !important;
    }

    .footer-nav-grid a::after,
    .footer-nav-link::after {
        content: "";
        width: 14px;
        height: 14px;
        flex-shrink: 0;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 14px 14px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 20 20%27 fill=%27none%27%3E%3Cpath d=%27M5.5 7.5L10 12l4.5-4.5%27 stroke=%27%23b8c2d4%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E");
    }

    .footer-bottom p,
    .footer-copyright {
        order: 6;
        width: 100%;
        margin: 0 !important;
        padding-top: 20px;
        border-top: 1px solid #f3f3f3;
        color: #060b13 !important;
        font-size: 14px !important;
        text-align: center !important;
    }
}

@media (min-width: 761px) and (max-width: 1100px) {
    .site-footer {
        padding-left: 32px !important;
        padding-right: 32px !important;
    }
}

@media (max-width: 420px) {
    .site-footer {
        --footer-mobile-pad: 20px;
        width: 100%;
    }
}

.footer-subscribe button .icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

@media (max-width: 1100px) {
    .footer-subscribe button .icon {
        width: 28px !important;
        height: 28px !important;
    }
}
