:root {
    --brand: #0B3BA2;
    --brand-rgb: 11, 59, 162;
    --silver: #f8fafc;
    --bronze: #FFF7F0;
    --gold: #FFD700;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: #2D2D2D;
    background: #FBFBFE;
    font-family: "Baloo 2", "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

/* global h1 sizing */
h1 {
    font-size: clamp(1.25rem, 4.1667vw, 5rem);
    line-height: 78px;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.125rem, 0.8333rem + 0.9722vw, 2rem);
    text-align: center;
    margin-top: 0;
    margin-bottom: 1em;
    margin-left: auto;
    margin-right: auto;
    max-width: 725px;
}

p {
    line-height: 1.5;
}

h4 {
    margin-top: 0;
    margin-bottom: 1em;
    font-size: clamp(1rem, 0.8333rem + 0.5556vw, 1.5rem);
}

h2+p {
    text-align: center;
    margin: 0 auto 1em;
    max-width: 725px;
}

section {
    padding-top: 48px;
    padding-bottom: 48px;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: var(--brand);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 6px rgba(16, 24, 40, 0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 24px 0;
    margin: 0 auto;
}

.logo a {
    display: inline-block;
    max-width: 175px;
}

@media screen and (max-width: 600px) {
    .logo a {
        max-width: 130px;
    }
}

.logo img {
    max-width: 100%;
    display: block;
}

.primary-nav {
    margin: 0 auto;
}

.primary-nav ul {
    display: flex;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.primary-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 160ms ease, color 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus {
    background: rgba(0, 0, 0, 0.04);
    outline: none;
}

.actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn {
    display: inline-block;
    padding: 0 32px;
    border-radius: 52px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.3s all ease;
    flex-shrink: 0;
    line-height: 44px;
}

.btn.signup {
    display: inline-block;
    background: linear-gradient(90deg, var(--brand), var(--brand));
    color: #fff;
    padding: 0 32px;
    border-radius: 52px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(var(--brand-rgb), 0.15);
    transition: 0.3s all ease;
    background: rgba(255, 255, 255, 0.3);
    border-color: #fff;
    line-height: 44px;
}

.btn.signup:active {
    transform: translateY(1px);
}

.btn.signup:focus {
    outline: 3px solid rgba(var(--brand-rgb), 0.18);
}


.btn.signup:hover,
.btn.signup:focus {
    background: rgba(255, 255, 255, 0.1);
}


.btn.signup i {
    display: none;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.25rem;
    padding: 0.4rem;
    cursor: pointer;
    transition: 0.3s all ease;
    color: #fff;
}

@media (max-width: 1200px) {
    .primary-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: #fff;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        transform-origin: top;
        transform: scaleY(0);
        transition: transform 160ms ease;
        overflow: hidden;
        z-index: 1100;
    }

    .primary-nav.open {
        transform: scaleY(1);
    }

    .primary-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .primary-nav a {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: 0;
        color: var(--brand);
    }

    .menu-toggle {
        display: flex;
        position: relative;
        width: 30px;
        height: 30px;
        background: transparent;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: #fff;
        position: relative;
    }

    .menu-toggle span::before,
    .menu-toggle span::after {
        content: "";
        position: absolute;
        display: block;
        width: 100%;
        height: 2px;
        background: #fff;
        left: 0;
        transition: 0.3s all ease;
    }

    .menu-toggle span::before {
        top: -6px;
    }

    .menu-toggle span::after {
        bottom: -6px;
    }

    .btn.signup {
        /* keep same padding/radius on small screens */
        padding: 0;
        border: none;
        background: transparent;
    }

    .btn.signup:hover,
    .btn.signup:focus {
        background: transparent;
        outline: none;
    }

    .btn.signup span {
        display: none;
    }

    .btn.signup i {
        display: flex;
        padding: 0 10px;
    }

}

/* Disable ornament animations on small screens and respect reduced motion */
@media (max-width: 760px),
(prefers-reduced-motion: reduce) {

    .intro-ornament,
    .intro-ornament-rot {
        animation: none !important;
        transition: none !important;
        will-change: auto !important;
    }

    /* remove container pointer-events just in case and avoid layout changes */
    .intro-ornaments {
        display: none !important;
    }
}

.intro {
    position: relative;
    /* ensure ornaments are contained */
    z-index: 2;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    background: radial-gradient(91.06% 164.82% at 50% 2.57%, #F8F8F8 0%, #DEDEFF 48.08%, #D9E5FF 100%);
    padding: 60px 0 100px;
}

.intro .container {
    position: relative;
    z-index: 2;
}

/* styles for intro ornaments added alongside the .intro section */
.intro-ornaments {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: visible;
    z-index: 0;
}

.intro-ornament {
    position: absolute;
    z-index: 1;
    width: 28px;
    height: 28px;
    display: block;
    transform-origin: center;
    opacity: 0.95;
    transition: opacity 0.6s ease;
    will-change: transform, opacity;
    /* animation uses per-element css vars set inline */
    animation: intro-float var(--float-dur, 10s) ease-in-out var(--float-delay, 0s) infinite;
}

/* gentle translate oscillation */
@keyframes intro-float {
    0% {
        transform: translate(-50%, -50%) translate(0px, 0px);
    }

    50% {
        transform: translate(-50%, -50%) translate(var(--float-x, 8px), var(--float-y, 6px));
    }

    100% {
        transform: translate(-50%, -50%) translate(0px, 0px);
    }
}

/* rotation wrapper: start at --base-rot and rotate +360deg */
.intro-ornament-rot {
    width: 100%;
    height: 100%;
    display: block;
    transform-origin: 50% 50%;
    /* spin animation uses base rotation variable so initial rotation is preserved */
    animation: intro-spin var(--spin-dur, 10s) linear infinite;
    animation-direction: var(--spin-dir, normal);
}

/* spin keyframes combine base rotation with full rotation */
@keyframes intro-spin {
    from {
        transform: rotate(var(--base-rot, 0deg));
    }

    to {
        transform: rotate(calc(var(--base-rot, 0deg) + 360deg));
    }
}

/* svg sizing inside ornament */
.intro-ornament-rot svg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(11, 59, 162, 0.06));
}

/* subtle motion increase when user hovers intro */
.intro:hover .intro-ornament {
    animation-timing-function: ease-in-out;
    opacity: 1;
}

.intro-grid {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.intro-left {
    flex: 1 1 52%;
    max-width: 720px;
    display: flex;
    flex-direction: column;
}

.intro .lead {
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.intro .lead a {
    text-decoration: none;
    font-weight: 700;
}

.intro-ex {
    margin-top: auto;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.intro-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}



.btn-primary {
    display: inline-block;
    position: relative;
    z-index: 1;
    border: none;
    color: #fff;
    padding: 0 32px;
    border-radius: 52px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(var(--brand-rgb), 0.12);
    transition: 0.3s all ease;
    overflow: hidden;
    line-height: 44px;
}

/* background implemented with pseudo element so we can control its opacity */
.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(86.62deg, #3D67F5 -4.06%, #1A49E8 67.34%, #042BAD 128.53%);
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: -1;
    pointer-events: none;
}

.btn.btn-icon {
    display: inline-flex;
    align-items: center;
}

.btn.btn-icon svg {
    margin-left: 10px;
}

/* on hover reduce the background (pseudo) opacity to 0.8 */
.btn-primary:hover::before,
.btn-primary:focus::before {
    opacity: 0.8;
}

.btn-ghost {
    background: #fff;
    color: var(--brand);
    border: 1px solid var(--brand);
    /* brand colored border added */
}

/* btn-ghost hover/focus: white text on brand background */
.btn-ghost:hover {
    background: var(--brand);
    color: #fff;
}

.intro-right {
    flex: 1 1 48%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-right img {
    width: 100%;
    max-width: 572px;
    height: auto;
    object-fit: cover;
}

.p_icon {
    width: 1em;
    height: 1em;
    margin-right: 0.5rem;
    vertical-align: middle;
    object-fit: contain;
}

@media (max-width: 880px) {
    .intro-grid {
        flex-direction: column-reverse;
        text-align: center;
    }

    .intro-left {
        max-width: 720px;
    }

    .intro-right {
        width: 100%;
    }

    .intro-left h1 {
        font-size: 1.8rem;
    }

    .intro-actions {
        justify-content: center;
    }
}

@media (max-width: 580px) {
    .intro {
        padding: 1.5rem 0;
        min-height: calc(100vh - 64px);
    }

    .intro-left .lead {
        font-size: 0.98rem;
    }

    .btn {
        padding: 0 32px;
    }

    .btn-primary {
        padding: 0 32px;
    }

    .intro-actions {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .intro-ex {
        justify-content: center;
    }
}

.partners {
    position: relative;
    overflow: hidden;
}

.partners-bg {
    position: relative;
    padding-top: 28px;
    padding-bottom: 28px;
}

.partners-bg::before,
.partners-bg::after {
    content: "";
    position: absolute;
    top: 0;
    width: 10vw;
    height: 100%;
    background-image: url('/assets/img/frame72.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
}

.partners-bg::before {
    left: 0;
}

.partners-bg::after {
    right: 0;
}

.partners-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: center;
    justify-items: center;
    padding: 0;
}

.partners-list img {
    max-width: 140px;
    max-height: 56px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .partners-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem 1rem;
    }
}

@media (max-width: 1200px) {

    .partners-bg::before,
    .partners-bg::after {
        display: none;
    }
}


.case {
    padding: 3.5rem 0;
    background: #fbfcfe;
}

.case-sub {
    text-align: center;
    max-width: 60ch;
    margin: 0 auto 1.75rem;
    color: #475569;
    font-size: 1rem;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 1.25rem;
    align-items: start;
}

.case-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(16, 24, 40, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    height: 100%;
}

.case-icon {
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
    display: block;
    object-fit: contain;
    margin: 0;
}

.case-item p {
    margin: 0;
}

@media (max-width: 880px) {
    .case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .case-grid {
        grid-template-columns: 1fr;
    }

    .case-item {
        padding: 1rem;
        gap: 0.5rem;
    }
}

.tabs-section {
    padding: 3rem 0;
    background: #fff;
}

.tabs-nav-wrap {
    display: flex;
    justify-content: center;
    margin-top: 48px;
    margin-bottom: 48px;
}

.tabs-nav {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 8px;
    background-color: #f4f4f4;
    border-radius: 14px;
}

.tab-btn {
    appearance: none;
    border: none;
    padding: 0 20px;
    border-radius: 10px;
    font-weight: 400;
    cursor: pointer;
    transition: 0.3s all ease;
    background: transparent;
    line-height: 28px;
}

.tab-btn:hover,
.tab-btn:focus {

    outline: none;
}

.tab-btn.active,
.tab-btn[aria-selected="true"] {
    background: #fff;
    font-weight: 500;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(var(--brand-rgb), 0.12);
}

.tab-panel {
    display: none;
    padding: 0.5rem 0;
}

.tab-panel.active {
    display: block;
}

.tab-inner {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.tab-list {
    flex: 1 1 52%;
    max-width: 620px;
}

.feature-list {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.li-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: transparent;
    border: 1px solid #E5ECFF;
}

.li-content h5 {
    margin: 0 0 0.5em 0;
    font-size: clamp(1rem, 0.8333rem + 0.5556vw, 1.5rem);
}

.li-content p {
    margin: 0;
    color: #A6A6A6;
    font-size: clamp(0.875rem, 0.7917rem + 0.2778vw, 1.125rem);
    line-height: 1.4;
}

.btn-primary {
    display: inline-block;
    position: relative;
    z-index: 1;
    border: none;
    color: #fff;
    padding: 0 32px;
    border-radius: 52px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(var(--brand-rgb), 0.12);
    transition: 0.3s all ease;
    overflow: hidden;
    line-height: 44px;
}

/* background implemented with pseudo element so we can control its opacity */
.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(86.62deg, #3D67F5 -4.06%, #1A49E8 67.34%, #042BAD 128.53%);
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: -1;
    pointer-events: none;
}

/* ensure button content stays above the pseudo background */
.btn-primary * {
    position: relative;
    z-index: 1;
}

/* on hover reduce the background (pseudo) opacity to 0.8 */
.btn-primary:hover::before,
.btn-primary:focus::before {
    opacity: 0.8;
}

.tab-image {
    flex: 1 1 44%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab-image img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(16, 24, 40, 0.06);
    object-fit: cover;
}

@media (max-width: 880px) {
    .tab-inner {
        flex-direction: column-reverse;
        text-align: center;
    }

    .tab-list,
    .tab-image {
        width: 100%;
        max-width: none;
    }

    .feature-list li {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: .5rem;
    }

    .li-icon {
        margin-bottom: 0.25rem;
    }

    .li-content p {
        max-width: 48ch;
    }
}

.media-section {
    padding: 3rem 0;
    background: #ffffff;
}



.media-wrap {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
}

:root {
    --media-text-h: 420px;
}

.media-text {
    background: linear-gradient(180deg, var(--brand) 0%, var(--brand) 100%);
    color: #fff;
    padding: 2rem 5rem 2rem 2rem;
    border-radius: 14px;
    min-height: var(--media-text-h);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 12px 40px rgba(var(--brand-rgb), 0.08);
}

.media-text h2+p {
    text-align: initial;
}


.media-text h2 {
    color: #fff;
    text-align: left;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.media-text p {
    color: #fff;
}

.btn-media {
    align-self: start;
    display: inline-block;
    background: linear-gradient(90deg, var(--brand), var(--brand));
    color: #fff;
    padding: 0 32px;
    border-radius: 52px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(var(--brand-rgb), 0.15);
    transition: 0.3s all ease;
    background: rgba(255, 255, 255, 0.3);
    border-color: #fff;
    line-height: 44px;
}

.btn-media:active {
    transform: translateY(1px);
}

.btn-media:focus {
    outline: 3px solid rgba(var(--brand-rgb), 0.18);
}


.btn-media:hover,
.btn-media:focus {
    background: rgba(255, 255, 255, 0.1);
}

.media-video {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-left: -15%;
    z-index: 2;
}

.media-video .video-ratio {
    width: 100%;
    max-width: 720px;
    height: calc(var(--media-text-h) * 0.85);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(16, 24, 40, 0.12);
}

.media-video iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

@media (max-width: 1000px) {
    :root {
        --media-text-h: 360px;
    }

    .media-grid {
        gap: 1.25rem;
    }

    .media-video .video-ratio {
        max-width: 640px;
    }
}

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

    .media-video {
        margin-left: 0;
        z-index: 1;
    }

    :root {
        --media-text-h: auto;
    }

    .media-text {
        min-height: auto;
        padding: 1.5rem;
        text-align: left;
    }

    .media-video .video-ratio {
        height: auto;
        aspect-ratio: 16/9;
        max-width: 100%;
    }

    .media-text .btn {
        align-self: center;
        text-align: center;
    }
}

.testimonials {
    position: relative;
    width: 100%;
    padding: 4rem 1rem;
    background: linear-gradient(180deg, var(--brand) 0%, var(--brand) 100%);
    color: #fff;
    overflow: hidden;
}

.testimonials-map {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover;
    pointer-events: none;
    z-index: 0;
    transform: translateZ(0);
    padding: 50px;
}

.testimonials-map svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonials-wrap {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.testimonials-carousel {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 260px;
    margin: 0 auto 0;
    overflow: visible;
}

.testimonial-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-item.active {
    opacity: 1;
    pointer-events: auto;
}

.testimonial-inner {
    width: 100%;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-start;
}

.testimonial-text {
    flex: 0 0 33%;
    color: #FFD72E;
    padding: 1rem 1.25rem;
    background: transparent;
}

.testimonial-text .quote-mark {
    font-size: 3em;
    line-height: 0.7;
    font-weight: 800;
    color: #FFD72E;
}

.testimonial-body {
    margin: 0.6rem 0;
    font-size: 1.5rem;
    line-height: 1.45;
    color: #FFD72E;
}

.testimonial-credit {
    margin-top: auto;
    font-weight: 700;
    color: #FFD72E;
}

.testimonial-school {
    margin-top: 0.15rem;
}

.testimonial-sign {
    text-align: right;
}

.testimonial-fill {
    flex: 1 1 auto;
}

.testimonial-dots {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 1.25rem;
    z-index: 1;
}

.dot-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 6px;
    cursor: pointer;
    transition: 0.3s all ease;
}

.dot-btn img {
    display: block;
    color: inherit;
    width: 38px;
    height: 45px;
    object-fit: contain;
    filter: grayscale(100%);
}

.dot-mark {
    display: block;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
    opacity: 0.9;
}

.dot-btn.active {
    color: #FFD72E;
}

.dot-btn.active .dot-mark {
    background: #FFD72E;
    box-shadow: 0 4px 18px rgba(255, 215, 46, 0.16);
}

.dot-btn.active img {
    filter: none;
}

.testimonials-cta {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

@media (max-width: 980px) {
    .testimonials-carousel {
        height: 320px;
    }

    .testimonial-inner {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-text {
        flex: none;
        width: 100%;
    }

    .testimonial-credit {
        text-align: center;
    }
}

@media (max-width: 520px) {
    .testimonial-body {
        font-size: 0.98rem;
    }

    .testimonials {
        padding: 2.25rem 0.75rem;
    }
}

.setup-progress {
    padding: 3rem 0;
    background: #ffffff;
}



.progress-wrap {
    margin-top: 1.5rem;
}

.progress-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 920px;
    margin: 0 auto 1.5rem;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

.progress-step {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    width: auto;
    text-align: left;
    color: #94a3b8;
}

.step-marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    border: 1px solid #CFD6DC;
    color: #CFD6DC;
    font-size: 0.95rem;
    line-height: 28px;
    width: 28px;
    height: 28px;
}

.step-name {
    font-size: 0.95rem;
    margin: 0;
    color: #CFD6DC;
}

.progress-connector {
    flex: 1 1 auto;
    height: 1px;
    background: #e2e8f0;
}

.progress-step.passed {
    color: var(--brand);
}

.progress-step.passed .step-marker {
    color: var(--brand);
    border-color: var(--brand);
}

.progress-step.passed .step-name {
    color: var(--brand);
}

.progress-connector.passed {
    background: linear-gradient(90deg, var(--brand), var(--brand));
}

.step-contents {
    max-width: 920px;
    margin: 0 auto;
}

.step-content {
    display: none;
    background: #fff;
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(16, 24, 40, 0.04);
}

.step-content[aria-hidden="false"] {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.step-controls {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

@media (max-width: 760px) {
    .progress-bar {
        gap: 0.5rem;
        align-items: flex-start;
        justify-content: space-between;
    }

    .progress-step {
        margin: 6px 0;
    }

    .step-controls {
        justify-content: center;
    }

    .progress-connector {
        display: none;
    }
}

.step-box {
    background: #FFCD29;
    border-radius: 30px;
    padding: 30px;
    margin-bottom: 1rem;
    text-align: center;
}

.step-box__title {
    margin: 0 0 1em 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.step-box__subtitle {
    margin: 0 0 2em 0;

}

.radio-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: flex-start;
    margin-top: 0.5rem;
    flex-wrap: wrap;
    border: 0;
    padding: 0;
}

.radio-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
    padding: 0.25rem;
    border-radius: 8px;
    transition: transform .12s ease;
}

.radio-item input[type="radio"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.radio-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.radio-icon img {
    width: 38px;
    height: 45px;
    object-fit: contain;
    filter: grayscale(100%);
}

.radio-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #D8D8D8;
    box-shadow: none;
    color: transparent;
    font-size: 0;
    position: relative;
    z-index: 1;
}

.radio-label::after {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--brand);
    display: block;
    transform: scale(0);
    transition: transform .14s ease;
}

.radio-item input[type="radio"]:checked+.radio-icon+.radio-label::after {
    transform: scale(1);
}

.radio-item:hover {
    transform: none;
}

.radio-item input[type="radio"]:checked+.radio-icon {
    transform: none;
}

.radio-item input[type="radio"]:checked+.radio-icon img {
    filter: none;
}

.radio-group--inline {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: .5rem;
}

.radio-item.small {
    padding: 0.15rem;
}

.radio-item.small .radio-icon {
    width: 38px;
    height: 45px;
}

.radio-item.small .radio-label {
    font-weight: 600;
}

.summary-block {
    margin-top: 0.5rem;
    background: rgba(0, 0, 0, 0.04);
    padding: 0.75rem;
    border-radius: 8px;
    text-align: left;
}

.step-content p {
    margin-top: 0.6rem;
}

.slider-box {
    width: 100%;
    margin: 0;
    text-align: center;
    position: relative;
}

.slider-title {
    display: block;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.slider-value {

    color: var(--brand);
    font-size: 0.8rem;
    font-weight: 700;
}

.slider-wrap {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    padding: 0;
    box-sizing: border-box;
}

.slider-wrap input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 2px;
    background: #000;
    outline: none;
    position: relative;
    margin: 0;
}

.slider-wrap input[type="range"]::before,
.slider-wrap input[type="range"]::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    pointer-events: none;
    border-radius: 50%;
    background: #000;
}

.slider-wrap input[type="range"]::before {
    left: 0;
}

.slider-wrap input[type="range"]::after {
    right: 0;
}

.slider-wrap input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(86.62deg, #3D67F5 -4.06%, #1A49E8 67.34%, #042BAD 128.53%);
    box-shadow: 0 2px 6px rgba(var(--brand-rgb), 0.18);
    cursor: pointer;
    border: none;
    top: -10px;
    position: relative;
    z-index: 1;
}

.slider-wrap input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(86.62deg, #3D67F5 -4.06%, #1A49E8 67.34%, #042BAD 128.53%);
    border: none;
    cursor: pointer;
    z-index: 1;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    gap: 4px;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #475569;
}

.slider-labels .lbl {
    text-align: center;
}

/* make marks at 50 and 100 visually stronger */
.slider-labels .lbl:nth-child(2),
.slider-labels .lbl:nth-child(3) {
    font-weight: 700;
}

/* responsive */
@media (max-width:560px) {
    .slider-wrap {
        padding: 0 6px;
    }

    .slider-value {
        font-size: 0.95rem;
    }

    .slider-wrap input[type="range"]::-webkit-slider-thumb {
        width: 16px;
        height: 16px;
    }
}

.email-form .input-wrap {
    position: relative;

    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.email-form .icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #94a3b8;
    pointer-events: none;
    height: 30px;
    width: 35px;
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    border-right: 1px solid #e6eefc;
    z-index: 1;
}


.email-form .icon.icon-email {
    background-image: url(/assets/img/email.svg);
}

.email-form .contact-email {
    width: 100%;
    padding: 0 1rem 0 50px;
    border-radius: 20px;
    border: 1px solid #e6eefc;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(var(--brand-rgb), 0.04);
    font-size: 1rem;
    outline: none;
    line-height: 44px;
}

.email-form .contact-email:focus {
    border-color: var(--brand);
    box-shadow: 0 8px 30px rgba(var(--brand-rgb), 0.12);
}

.plans-section {
    padding: 3rem 0;
    background: radial-gradient(86.55% 117.22% at 38.78% 13.4%, rgba(249, 250, 251, 0.15) 0%, rgba(249, 218, 117, 0.15) 45.19%, rgba(73, 73, 255, 0.15) 100%)
        /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */
    ;
}


/* grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
    padding: 0 0.5rem;
}

/* card */
.plan-item {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 12px 40px rgba(16, 24, 40, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: space-between;
    min-height: 240px;
    position: relative;
    overflow: hidden;
}

.plan-item::before {
    content: "";
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    height: 300%;
    width: 300%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}


.plan-item.bronze {
    background-color: var(--bronze);


}

.btn.btn-choose {
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);

}

.btn.btn-choose:hover {
    background-color: rgba(0, 0, 0, 0.1);
}


.plan-item.silver {
    background-color: var(--silver);
}

.plan-item.gold {
    background-color: var(--gold);
}

.plan-item.gold .btn.btn-choose {
    background: var(--gold);
    color: initial;
    border-color: var(--gold);
}

.plan-item.bronze .btn.btn-choose {
    background: var(--bronze);
    color: initial;
    border-color: var(--bronze);
}

.plan-item.gold .btn.btn-choose:hover {
    background-color: rgba(255, 205, 41, 0.6);
}

.plan-item.bronze .btn.btn-choose:hover {
    background-color: rgba(255, 175, 56, 0.2);
}


.plan-item.diamond {
    background-color: var(--brand);
    color: #fff
}

.plan-item.diamond .btn.btn-choose {
    display: inline-block;
    position: relative;
    z-index: 1;
    border: none;
    color: #fff;
    padding: 0 32px;
    border-radius: 52px;
    font-weight: 700;
    text-decoration: none;
    border-color: transparent;
    transition: 0.3s all ease;
    overflow: hidden;
    line-height: 44px;
}


.plan-item.diamond .btn.btn-choose::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(86.62deg, #3D67F5 -4.06%, #1A49E8 67.34%, #042BAD 128.53%);
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: -1;
    pointer-events: none;
}

.plan-item.diamond .btn.btn-choose:hover::before {
    opacity: 0.8;
}


.plan-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #fff;
    border-radius: 15px;
    padding: 25px 15px;
    box-shadow: 0 12px 40px rgba(16, 24, 40, 0.06);
    position: relative;
    z-index: 2;
}



/* header */
.plan-header {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.plan-title {
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.plan-title img {
    width: 1.2em;
    height: 1.2em;
    margin-right: 0.5rem;
    vertical-align: middle;
    object-fit: contain;
}

.plan-sub {
    margin-bottom: 0.5rem;

}

/* price */
.plan-price {
    font-size: 1.35rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* benefits */
.plan-benefits {
    margin: 0.5rem 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    color: #475569;
    font-size: 0.95rem;
}

.plan-benefits li {
    margin-bottom: 0.5rem;
}

.plan-benefits li::before {
    content: "✓";
    display: inline-block;
    margin-right: 0.6rem;
    color: #fff;
    font-weight: 700;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--brand);
    text-align: center;
    font-size: 0.85rem;
    line-height: 17px;
    text-indent: 3px;
}

/* actions */
.plan-actions {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}



/* responsive */
@media (max-width: 1100px) {
    .plans-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-price {
        font-size: 1.1rem;
    }

    .plan-item {
        min-height: auto;
    }
}

.plans-details {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.plans-details h2 {
    margin-top: 30px;
}

.details-toggle {
    display: flex;
    justify-content: center;
    width: 100%;
}

.js-plans-toggle {
    cursor: pointer;
}

/* spoiler panel hidden state */
.plans-details-panel {
    width: 100%;
    max-width: 1200px;
    transition: max-height .32s ease, opacity .25s ease;
    overflow: hidden;
    opacity: 1;
}

.plans-details-panel.spoiler-hidden {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
}

/* table wrapper for horizontal scroll on small screens */
.table-wrap {
    overflow-x: auto;
    background: transparent;
    padding: 0.5rem 0;
}

/* details table */
.details-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.details-table .bronze {
    background: var(--bronze);
}

.details-table .silver {
    background: var(--silver);
}

.details-table .gold {
    background: var(--gold);
}
.details-table .diamond {
    background: var(--brand);
    color: #fff
}

.details-table thead th {
    text-align: center;
    padding: 0.75rem 1rem;
    border-left: 1px solid rgba(0,0,0,0.1);
    font-weight: 700;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.details-table thead th:first-child {
    border-left: none;
}


.details-table tbody th {
    text-align: left;
    padding: 0.6rem 1rem;
    font-weight: 700;    
    border-bottom: 1px solid rgba(0,0,0,0.1);
    vertical-align: middle;
}

.details-table td {
    padding: 0.6rem 1rem;

    border-bottom: 1px solid rgba(0,0,0,0.1);
    border-left: 1px solid rgba(0,0,0,0.1);
    vertical-align: middle;
    text-align: center;
}

.details-table tbody tr:last-child td,
.details-table tbody tr:last-child th {
    border-bottom: none;

}

.details-table td.supported {
    background-color: #7777FD;
    color: #fff;
}

/* emphasize positive values */
.details-table td:contains('Included'),
.details-table td:contains('Unlimited') {
    font-weight: 700;
    color: var(--brand);
}

/* responsive */
@media (max-width: 900px) {
    .details-table {
        min-width: 680px;
    }
}

@media (max-width: 560px) {
    .details-table {
        min-width: 520px;
    }
}

.contact-section {
    padding: 3rem 0 0;
    background: #ffffff;
}


.contact-card {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem 1.25rem;
    box-shadow: 0 12px 40px rgba(16, 24, 40, 0.06);
}

.contact-card__title {
    margin: 0 0 0.25rem;
    font-size: 1.15rem;
    font-weight: 800;
    text-align: left;
}

.contact-card__subtitle {
    margin: 0 0 0.9rem;
    color: #475569;
    font-size: 0.95rem;
    text-align: left;
}

/* form layout */
.contact-form .form-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-form .form-group {
    flex: 1 1 48%;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.contact-form .form-group.full {
    flex: 1 1 100%;
}

.contact-form label {
    font-size: 0.85rem;
    font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 0 1rem;
    border-radius: 30px;
    border: 1px solid #e6eefc;
    background: transparent;
    box-shadow: 0 6px 20px rgba(var(--brand-rgb), 0.04);
    outline: none;
    resize: vertical;
}

.contact-form textarea {
    padding: 1rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
    padding-left: 50px;
    line-height: 44px;
    position: relative;
}


.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 8px 30px rgba(var(--brand-rgb), 0.08);
}

.contact-form .input-wrap {
    position: relative;
}

.contact-form .icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #94a3b8;
    pointer-events: none;
    height: 30px;
    width: 35px;
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    border-right: 1px solid #e6eefc;
    z-index: 1;
}

.contact-form .icon.icon-user {
    background-image: url(/assets/img/signup.svg);
}

.contact-form .icon.icon-email {
    background-image: url(/assets/img/email.svg);
}

.contact-form .icon.icon-subj {
    background-image: url(/assets/img/subj.svg);
}


/* actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

/* footer */
.contact-footer {
    margin-top: 1rem;
    background: #00A357;
    color: #ffffff;
    padding: 1rem 0;
}

.contact-footer-inner {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-footer-text {
    font-weight: 700;
    color: #ffffff;
}

.contact-footer-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
}

/* responsive */
@media (max-width: 760px) {
    .contact-card {
        padding: 1rem;
    }

    .contact-form .form-row {
        flex-direction: column;
    }

    .contact-form .form-group {
        flex: 1 1 100%;
        width: 100%;
    }

    .form-actions {
        justify-content: center;
    }

    .contact-footer-inner {
        text-align: center;
        padding: 0 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* language switch */
.lang-switch {
    position: relative;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
    background: transparent;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 700;
}

.lang-toggle .flag {
    font-size: 18px;
    line-height: 1;

}

.flag {
    width: 28px;
}

.flag img {
    width: 100%;
    display: block;
}



.lang-toggle .lang-code {
    font-size: 0.9rem;
}

.lang-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 180px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(16, 24, 40, 0.12);
    list-style: none;
    margin: 0;
    padding: 6px;
    display: none;
    z-index: 1400;
}

.lang-menu[aria-hidden="false"] {
    display: block;
}

.lang-item {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    width: 100%;
    padding: 0.5rem 0.6rem;
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
}

.lang-item[aria-checked="true"] {
    background: rgba(var(--brand-rgb), 0.06);
}



.lang-item .flag {
    font-size: 18px;
    line-height: 1;
}

.lang-item .code {
    font-weight: 800;
    width: 34px;
    display: inline-block;
}

.lang-item .label {
    font-size: 0.95rem;
}

/* visual styling for header when using white text */
.site-header .lang-toggle,
.site-header .btn.login {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.12);
}

/* responsive adjustments */
@media (max-width:1200px) {
    .header-inner {
        padding-left: 0;
        padding-right: 0;
        gap: 0.5rem;
        justify-content: space-between;
    }

    .primary-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: #fff;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        transform-origin: top;
        transform: scaleY(0);
        transition: transform 160ms ease;
        overflow: hidden;
        z-index: 1100;
        min-height: 100vh;
    }

    .primary-nav.open {
        transform: scaleY(1);
    }

    .primary-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .primary-nav a {
        text-align: left;
    }

    .menu-toggle {
        display: block;
    }

    .lang-menu {
        right: 0;
        left: auto;
    }

    .lang-code {
        display: none;
    }
}

.faqs-section {
    padding: 3rem 0;
    background: #ffffff;
}

.faqs-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 1.5rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

.faqs-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(16, 24, 40, 0.04);
    overflow: hidden;
    border: 1px solid #eef2f6;
}

.faq-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-weight: 700;
}

.faq-question {
    flex: 1 1 auto;
    text-align: left;
    font-size: 1rem;
}

.faq-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    transition: transform .18s ease;
    position: relative;
}

.faq-icon::after,
.faq-icon::before {
    content: "";
    display: block;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 2px;
    background-color: #fff;
}

.faq-icon::before {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* answer panel with slide animation */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease, padding 220ms ease;
    padding: 0 1rem;
    background: #ffffff;
}

.faq-answer p {
    margin: 0.9rem 0 1rem 0;
    color: #475569;
    line-height: 1.5;
}

/* expanded state */
.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-item.open .faq-answer {
    padding: 0 1rem;
}

/* right column */
.faqs-right {
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 8px 30px rgba(16, 24, 40, 0.04);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: flex-start;
}

.faqs-right-text {
    margin: 0;
    color: #475569;
}

/* subscribe inline */
.subscribe-inline {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.subscribe-inline input[type="email"] {
    padding: 0 1rem 0 50px;
    border-radius: 20px;
    border: 1px solid #e6eefc;
    background: #fff;
    box-shadow: 0 6px 20px rgba(var(--brand-rgb), 0.04);
    outline: none;
    line-height: 44px;
    width: 100%;
}


.subscribe-form label {
    margin-bottom: 0.7rem;
    display: block;
}

.faqs-right p {
    color: var(--brand);
}

.faqs-right a {
    color: inherit;
    text-decoration: underline;
}

.subscribe-inline .input-wrap {
    position: relative;
}

.subscribe-inline .icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #94a3b8;
    pointer-events: none;
    height: 30px;
    width: 35px;
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    border-right: 1px solid #e6eefc;
    z-index: 1;
}

.subscribe-inline .icon.icon-email {
    background-image: url(/assets/img/email.svg);
}



/* responsive */
@media (max-width: 980px) {
    .faqs-grid {
        grid-template-columns: 1fr;
    }

    .faqs-right {
        order: 2;
    }

    .faqs-left {
        order: 1;
    }
}

.site-footer {
    background: var(--brand);
    color: #ffffff;
    padding: 2rem 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 1.25rem;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0 1rem;
}

.footer-left .footer-logo img {
    height: 36px;
    width: auto;
    display: block;
}

.footer-nav ul {
    display: flex;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    opacity: 0.95;
    font-size: 0.95rem;
}

.footer-nav a:hover,
.footer-nav a:focus {
    text-decoration: underline;
    outline: none;
}

.footer-brand {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: flex-end;
    max-width: 360px;
    text-align: right;
}

.footer-badge {
    height: 1em;
    margin-right: 5px;
    display: block;
}

.footer-brand p {
    margin: 0;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.25;
    display: flex;
    align-items: center;
}


@media (max-width: 760px) {
    .footer-inner {
        flex-direction: column;
        text-align: left;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-brand {
        justify-content: flex-start;
        text-align: left;
    }
}