:root {
    --color-amber: #ffae00;
    --color-aqua-bright: #00ffff;
    --color-bg-card-dark: #080312;
    --color-bg-hero: #020208;
    --color-black: #000;
    --color-black-soft: #050505;
    --color-blue-deep: #172ca1;
    --color-blue-electric: #0093ea;
    --color-blue-link: #0769c4;
    --color-border-gray: #ddd;
    --color-border-muted: #ccc;
    --color-border-pale: #e0e0e0;
    --color-cyan: #00fffb;
    --color-gold: #ffd700;
    --color-gray-333: #333;
    --color-gray-555: #555;
    --color-gray-900: #212121;
    --color-gray-light-bg: #f8f8f8;
    --color-green-accent: #00ff88;
    --color-hero-accent: #105ce5;
    --color-mint-pale: #afffff;
    --color-purple-cta-start: #5b21b6;
    --color-purple-deep: #3b0764;
    --color-purple-mid: #7e03aa;
    --color-select-option-bg: #0a0a12;
    --color-select-option-text: #e8e8ed;
    --color-text-dim: #706d6d;
    --color-text-muted: #b0b0b0;
    --color-text-secondary: #909090;
    --color-text-soft: #979393;
    --color-text-tertiary: #a0a0a0;
    --color-violet: #7c3aed;
    --color-violet-dark: #6d28d9;
    --color-white: #fff;
    --rgb-link-blue: rgb(18, 120, 215);
    --rgba-bg-select: rgba(10, 10, 16, 0.98);
    --rgba-black-05: rgba(0, 0, 0, 0.5);
    --rgba-black-06: rgba(0, 0, 0, 0.6);
    --rgba-black-07: rgba(0, 0, 0, 0.7);
    --rgba-black-095: rgba(5, 5, 5, 0.95);
    --rgba-blue-01: rgba(0, 147, 234, 0.1);
    --rgba-cyan-01: rgba(0, 255, 251, 0.1);
    --rgba-cyan-015: rgba(0, 255, 251, 0.15);
    --rgba-cyan-02: rgba(0, 255, 251, 0.2);
    --rgba-cyan-03: rgba(0, 255, 251, 0.3);
    --rgba-cyan-035: rgba(0, 255, 251, 0.35);
    --rgba-cyan-04: rgba(0, 255, 251, 0.4);
    --rgba-cyan-05: rgba(0, 255, 251, 0.5);
    --rgba-gradient-09: rgba(5, 5, 15, 0.9);
    --rgba-gradient-095: rgba(5, 5, 15, 0.95);
    --rgba-hero-overlay-mobile: rgba(2, 2, 8, 0.58);
    --rgba-hero-overlay-tablet: rgba(2, 2, 8, 0.5);
    --rgba-nav-bottom: rgba(10, 10, 15, 0.95);
    --rgba-nav-mid: rgba(10, 10, 20, 0.95);
    --rgba-nav-top: rgba(20, 20, 30, 0.98);
    --rgba-overlay-050: rgba(10, 10, 20, 0.5);
    --rgba-panel-07: rgba(10, 10, 20, 0.7);
    --rgba-panel-dark-05: rgba(5, 5, 10, 0.5);
    --rgba-panel-dark-07: rgba(5, 5, 10, 0.7);
    --rgba-purple-bg-09: rgba(15, 10, 30, 0.9);
    --rgba-violet-03: rgba(124, 58, 237, 0.3);
    --rgba-violet-04: rgba(124, 58, 237, 0.4);
    --rgba-violet-05: rgba(124, 58, 237, 0.5);
    --rgba-white-005: rgba(255, 255, 255, 0.05);
    --rgba-white-008: rgba(255, 255, 255, 0.08);
    --rgba-white-01: rgba(255, 255, 255, 0.1);
    --rgba-white-012: rgba(255, 255, 255, 0.12);
    --rgba-white-015: rgba(255, 255, 255, 0.15);
    --rgba-white-03: rgba(255, 255, 255, 0.3);
    --rgba-white-04: rgba(255, 255, 255, 0.4);
    --rgba-white-08: rgba(255, 255, 255, 0.8);
    --rgba-white-09: rgba(255, 255, 255, 0.9);
    --rgba-white-092: rgba(255, 255, 255, 0.92);
    /* Offset for fixed navbar (matches outer bar height incl. border) */
    --sp-navbar-height: calc(1.1rem + 66px + 1px);
}

@media (min-width: 992px) {
    :root {
        --sp-navbar-height: 94px;
    }
}

/* Prevent horizontal scrollbar from overflowing content (e.g. ~1066px viewports) */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    max-width: 100%;
    overflow-y: scroll;
    scrollbar-gutter: stable;
    scroll-padding-top: var(--sp-navbar-height);
}

body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    padding-top: var(--sp-navbar-height);
}

.navbar-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--rgba-black-095) !important;
    background: linear-gradient(180deg, var(--rgba-nav-top) 0%, var(--rgba-nav-bottom) 100%);
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--rgba-white-005);
    padding: 0.55rem 0;
    box-shadow: 0 2px 20px var(--rgba-black-05);
}

.navbar {
    padding: 0.55rem 0;
    align-items: center;
    min-height: 0;
}

/* Keep the flex row short: links + button match the logo, not vice versa */
.navbar.navbar-sticky>.container-fluid {
    align-items: center;
    min-height: 0;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        align-items: center;
    }
}

/* Logo: one height on the img (no “window” crop). The old crop was clipping the bolt and a tall in-flow img inflated the navbar via flex min-height. */
.navbar-brand {
    display: flex;
    align-items: center;
    margin-right: 0.75rem;
    padding-top: 0;
    padding-bottom: 0;
    flex-shrink: 0;
    max-width: none;
    min-height: 0;
}

.navbar-logo-wrap {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}

.navbar-logo-wrap .logo {
    filter: drop-shadow(2px 2px 2px var(--rgba-black-07));
    display: block;
    width: auto;
    height: 66px;
    margin: 0;
    padding: 0;
    border: 0;
}

@media (min-width: 992px) {
    .navbar-logo-wrap .logo {
        height: 75px;
    }
}

.navbar-nav .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--rgba-white-08) !important;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 14px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--color-cyan) !important;
}

.navbar-nav .nav-link.active {
    color: var(--color-cyan) !important;
    font-weight: 400;
    text-decoration: none;
}

.navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns%3D%22http://www.w3.org/2000/svg%22 viewBox%3D%220 0 30 30%22%3E%3Cpath stroke%3D%22white%22 stroke-width%3D%222%22 d%3D%22M4 7h22M4 15h22M4 23h22%22/%3E%3C/svg%3E');
}

.navbar-right-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.navbar-btn {
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.navbar-btn-secondary {
    background-color: transparent;
    color: var(--rgba-white-08);
    border: 1px solid var(--rgba-white-03);
}

.navbar-btn-secondary:hover {
    border-color: var(--color-cyan);
    color: var(--color-cyan);
}

.navbar-btn-primary {
    background: var(--color-hero-accent);
    /* background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-blue-electric) 100%); */
    color: var(--color-white);
}

.navbar-btn-primary:hover {
    box-shadow: 0 0 20px var(--rgba-cyan-04);
    transform: translateY(-2px);
}

a.navbar-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* im interested button */
.fancy {
    background-color: transparent;
    border: 2px solid var(--color-white);
    border-radius: 0;
    box-sizing: border-box;
    color: var(--color-black);
    cursor: pointer;
    display: inline-block;
    float: right;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0;
    outline: none;
    overflow: visible;
    padding: 1.25em 2em;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    transition: all 0.3s ease-in-out;
    user-select: none;
    font-size: 13px;
}

.fancy::before {
    content: " ";
    width: 1.5625rem;
    height: 2px;
    background: var(--color-white);
    top: 50%;
    left: 1.5em;
    position: absolute;
    transform: translateY(-50%);
    transform-origin: center;
    transition: background 0.3s linear, width 0.3s linear;
}

.fancy .text {
    font-size: 1.125em;
    line-height: 1.33333em;
    padding-left: 2em;
    display: block;
    text-align: left;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-white);
}

.fancy .top-key {
    height: 2px;
    width: 1.5625rem;
    top: -2px;
    left: 0.625rem;
    position: absolute;
    background: var(--color-gray-900);
    transition: width 0.5s ease-out, left 0.3s ease-out;
}

.fancy .bottom-key-1 {
    height: 2px;
    width: 1.5625rem;
    right: 1.875rem;
    bottom: -2px;
    position: absolute;
    background: var(--color-gray-900);
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy .bottom-key-2 {
    height: 2px;
    width: 0.625rem;
    right: 0.625rem;
    bottom: -2px;
    position: absolute;
    background: var(--color-gray-900);
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy:hover {
    color: var(--color-white);
    background: var(--color-white);
}

.fancy:hover::before {
    width: 0.9375rem;
    background: var(--color-black);
}

.fancy:hover .text {
    color: var(--color-black);
    padding-left: 1.5em;
}

.fancy:hover .top-key {
    left: -2px;
    width: 0px;
}

.fancy:hover .bottom-key-1,
.fancy:hover .bottom-key-2 {
    right: 0;
    width: 0;
}

.custom-caption {
    position: absolute;
    top: 60%;
    left: 10%;
    transform: translateY(-50%);
    text-align: left;
    color: var(--color-white);
}

.razz-link:hover {
    text-decoration: underline !important;
}

/* Use inset, not 100vw — vw includes scrollbar width and causes horizontal overflow */
.black-bg {
    position: fixed;
    inset: 0;
    background: var(--color-black-soft);
    z-index: -2;
    pointer-events: none;
}

.gradient_bg_tr,
.gradient_bg_tl,
.gradient_bg_bl {
    position: fixed;
    z-index: -1;
    pointer-events: none;
    opacity: 0.26;
}

.gradient_bg_tr {
    top: 0;
    right: 0;
    width: 400px;
}

.gradient_bg_tl {
    top: 0;
    left: 0;
    width: 320px;
}

.gradient_bg_bl {
    bottom: 0;
    left: 0;
    width: 520px;
}

.gradient_bg_tr img,
.gradient_bg_tl img,
.gradient_bg_bl img {
    width: 100%;
    height: auto;
    display: block;
    filter: blur(5px);
}

@media (max-width: 768px) {
    .gradient_bg_tr,
    .gradient_bg_tl,
    .gradient_bg_bl {
        display: none;
    }
}

.slider-container {
    text-align: center;
    background: var(--color-black);
    color: var(--color-white);
    padding: 20px;
}

.swiper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.swiper-slide img {
    width: 100%;
    height: auto;
}

.button-group {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 1000;
    color: var(--color-white);
    padding: 10px 15px;
}

.nav-button {
    background-color: var(--color-gray-333);
    color: var(--color-white);
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 5px;
}

.nav-button:hover {
    background-color: var(--color-gray-555);
}

@media (max-width: 768px) {
    .nav-button {
        padding: 6px 12px;
        font-size: 14px;
    }
}

.text-container {
    position: absolute;
    top: 10px;
    left: 10px;
    color: var(--color-white);
    padding: 10px 15px;
    border-radius: 5px;
    max-width: 600px;
    text-align: justify;
    z-index: 1000;
}

.slider-container {
    position: relative;
}

/* contact */
.contact-btn {
    border: 2px solid var(--color-border-muted);
    border-radius: 50px;
    padding: 8px 25px;
    background: var(--color-white);
    transition: 0.3s;
}

.contact-btn:hover {
    border-color: var(--color-black);
    background: var(--color-gray-light-bg);
}

.contact-heading {
    color: var(--color-white);
}

.contact-text {
    color: var(--color-text-dim);
}

.social-icons a {
    margin: 0 8px;
    font-size: 22px;
    color: var(--color-white);
    background: var(--color-blue-deep);
    padding: 10px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--color-blue-link);
}

.info-box {
    position: relative;
    padding: 20px 20px 20px 40px;
}

.info-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 0;
    height: 180px;
    border-left: .5px solid var(--color-border-gray);
}

.info-title {
    color: var(--rgb-link-blue);
    font-weight: bold;
}

.info-content {
    color: var(--color-text-soft);
}

@media (max-width: 991px) {
    .info-box {
        padding-left: 20px;
    }

    .info-box::before {
        display: none;
    }
}

.form-section label {
    color: var(--color-text-soft);
}

.form-section ::placeholder {
    color: var(--color-text-soft);
}

.form-section input,
.form-section textarea {
    background-color: transparent !important;
    border: 1px solid var(--color-text-soft);
    color: var(--color-white);
}

.form-section input:focus,
.form-section textarea:focus {
    border-color: var(--rgb-link-blue);
    outline: none;
    box-shadow: none;
    color: var(--color-white);
}

/* btn */
.btn {
    --border-color: linear-gradient(-45deg, var(--color-amber), var(--color-purple-mid), var(--color-cyan));
    --border-width: 0.125em;
    --curve-size: 0.5em;
    --blur: 30px;
    --bg: var(--color-bg-card-dark);
    --color: var(--color-mint-pale);
    color: var(--color);
    cursor: pointer;
    position: relative;
    isolation: isolate;
    display: inline-grid;
    place-content: center;
    padding: 0.5em 1.5em;
    font-size: 17px;
    border: 0;
    text-transform: uppercase;
    box-shadow: 10px 10px 20px var(--rgba-black-06);
    clip-path: polygon(0% var(--curve-size),
            var(--curve-size) 0,
            100% 0,
            100% calc(100% - var(--curve-size)),
            calc(100% - var(--curve-size)) 100%,
            0 100%);
    transition: color 250ms;
}

.btn::after,
.btn::before {
    content: "";
    position: absolute;
    inset: 0;
}

.btn::before {
    background: var(--border-color);
    background-size: 300% 300%;
    animation: move-bg7234 5s ease infinite;
    z-index: -2;
}

@keyframes move-bg7234 {
    0% {
        background-position: 31% 0%;
    }

    50% {
        background-position: 70% 100%;
    }

    100% {
        background-position: 31% 0%;
    }
}

.btn::after {
    background: var(--bg);
    z-index: -1;
    clip-path: polygon(var(--border-width) calc(var(--curve-size) + var(--border-width) * 0.5),
            calc(var(--curve-size) + var(--border-width) * 0.5) var(--border-width),
            calc(100% - var(--border-width)) var(--border-width),
            calc(100% - var(--border-width)) calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
            calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)) calc(100% - var(--border-width)),
            var(--border-width) calc(100% - var(--border-width)));
    transition: clip-path 500ms;
}

.btn:where(:hover, :focus)::after {
    clip-path: polygon(calc(100% - var(--border-width)) calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
            calc(100% - var(--border-width)) var(--border-width),
            calc(100% - var(--border-width)) var(--border-width),
            calc(100% - var(--border-width)) calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
            calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)) calc(100% - var(--border-width)),
            calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)) calc(100% - var(--border-width)));
    transition: 200ms;
}

.btn:where(:hover, :focus) {
    color: var(--color-white);
}

/* Hero Section Styles */
.hero-section {
    background-color: var(--color-bg-hero);
    background-image: url("../home_desk/backround-hero.png");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
}

/* Scaled artwork on large desktop */
@media (min-width: 1024px) {
    .hero-section {
        background-size: 70% auto;
        background-position: center right;
    }
}

/* Tablet / small laptop: same idea as desktop, avoid harsh cover crop */
@media (max-width: 1023px) {
    .hero-section {
        background-size: 82% auto;
        background-position: center right;
        min-height: clamp(520px, 70vh, 640px);
    }
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    min-width: 0;
}

/* About page: center hero content like other sections */
.about-page .hero-section {
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 3.5rem;
}

.about-page .hero-container {
    align-items: center;
}

@media (max-width: 767.98px) {
    .about-page .hero-section {
        align-items: center;
        padding-top: 3.25rem;
        padding-bottom: 2.75rem;
    }

    .about-page .hero-container {
        align-items: center;
    }
}

.hero-content {
    flex: 1;
    max-width: 640px;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.hero-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
    min-width: 0;
}

.hero-media {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.marketplace-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, var(--rgba-cyan-01) 0%, var(--rgba-blue-01) 100%);
    border: 1px solid var(--rgba-cyan-03);
    border-radius: 50px;
    color: var(--color-cyan);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.marketplace-badge i {
    margin-right: 0.5rem;
    vertical-align: -0.06em;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--color-hero-accent);
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 14px;
    color: var(--color-text-tertiary);
    font-family: 'Inter', sans-serif;
}

.feature-item i {
    color: var(--color-green-accent);
    font-size: 18px;
}

.hero-search-wrapper {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.search-input-group {
    display: flex;
    background: var(--rgba-white-008);
    border: 1px solid var(--rgba-white-015);
    border-radius: 8px;
    overflow: hidden;
    flex: 1;
    min-width: 250px;
}

.search-input-group select {
    background: var(--rgba-bg-select);
    border: none;
    color: var(--rgba-white-092);
    color-scheme: dark;
    accent-color: var(--color-cyan);
    padding: 0.75rem 1rem;
    padding-right: 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    outline: none;
    cursor: pointer;
    border-radius: 0;
}

.search-input-group select option {
    background: var(--color-select-option-bg);
    background-color: var(--color-select-option-bg);
    color: var(--color-select-option-text);
}

.search-input-group select:focus {
    box-shadow: inset 0 0 0 1px var(--rgba-cyan-035);
}

.search-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--rgba-white-09);
    padding: 0.75rem 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.search-input-group input::placeholder {
    color: var(--rgba-white-04);
}

.search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.8rem;
    background: var(--color-hero-accent);
    border: none;
    color: var(--color-white);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

a.search-btn {
    text-decoration: none;
    box-sizing: border-box;
}

.search-btn i {
    color: #ffffff;
    font-size: 14px;
}

.search-btn:hover {
    box-shadow: 0 0 25px var(--rgba-cyan-04);
    transform: translateY(-2px);
}

.search-btn--dark {
    background: #0a0a0a;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.search-btn--dark:hover {
    background: #141414;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.38);
    box-shadow: 0 0 22px rgba(0, 0, 0, 0.45);
    transform: translateY(-2px);
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.35rem;
    margin-top: 0.35rem;
}

.hero-content--biz .hero-description {
    margin-bottom: 2.35rem;
}

.popular-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.tag {
    padding: 0.5rem 1rem;
    background: var(--rgba-cyan-01);
    border: 1px solid var(--rgba-cyan-02);
    border-radius: 20px;
    color: var(--color-cyan);
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--rgba-cyan-02);
    border-color: var(--color-cyan);
}

/* Trust stats bar (below hero) */
.trust-stats-section {
    position: relative;
    z-index: 2;
    padding: 0 12px 72px;
    margin-top: -8px;
}

.trust-stats-section .container {
    max-width: min(98vw, 1920px);
    width: 100%;
}

.trust-stats-bar {
    display: flex;
    align-items: stretch;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--rgba-panel-07) 0%, var(--rgba-bg-select) 100%);
    border: 1px solid var(--rgba-white-01);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 64px var(--rgba-black-05);
}

.trust-stat {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.75rem;
    padding: 2.35rem 2.15rem;
    min-width: 0;
    border-right: 1px solid var(--rgba-white-012);
}

.trust-stat:last-child {
    border-right: none;
}

.trust-stat__icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.05rem;
    border-radius: 18px;
    background: var(--rgba-white-005);
}

.trust-stat--products .trust-stat__icon {
    color: var(--color-blue-link);
    filter: drop-shadow(0 0 14px var(--rgba-cyan-03));
}

.trust-stat--customers .trust-stat__icon {
    color: var(--color-green-accent);
    filter: drop-shadow(0 0 14px var(--color-green-accent));
}

.trust-stat--support .trust-stat__icon {
    color: var(--color-violet);
    filter: drop-shadow(0 0 14px var(--rgba-violet-03));
}

.trust-stat--rating .trust-stat__icon {
    color: var(--color-gold);
    filter: drop-shadow(0 0 14px var(--color-gold));
}

.trust-stat__body {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-width: 0;
}

.trust-stat__metric {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.75rem, 2.8vw, 2.65rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.1;
}

.trust-stat__label {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.95rem, 1.35vw, 1.15rem);
    font-weight: 500;
    color: var(--color-text-secondary);
    letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-content {
        flex: 1;
        max-width: none;
        width: 100%;
        min-width: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 44px 15px 48px;
        /* Full-width art, anchored top — readable text on darker left */
        background-size: 100% auto;
        background-position: center top;
        background-repeat: no-repeat;
    }

    /* Fade hero artwork so base color shows through (reads as “more transparent”) */
    .hero-section::after {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--rgba-hero-overlay-tablet);
        pointer-events: none;
        z-index: 0;
    }

    .hero-container {
        position: relative;
        z-index: 1;
        min-width: 0;
        width: 100%;
    }

    .marketplace-badge {
        font-size: 10px;
        padding: 0.4rem 0.65rem;
        letter-spacing: 0.35px;
        margin-bottom: 1rem;
        line-height: 1.3;
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }

    .marketplace-badge i {
        margin-right: 0.35rem;
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-features {
        gap: 1rem;
        flex-direction: column;
    }

    .hero-search-wrapper {
        flex-direction: column;
        width: 100%;
    }

    .search-input-group {
        min-width: 0;
        flex-direction: column;
        align-items: stretch;
    }

    .search-input-group select {
        width: 100%;
        border-bottom: 1px solid var(--rgba-white-012);
        border-radius: 8px 8px 0 0;
    }

    .search-input-group input {
        width: 100%;
        min-width: 0;
    }

    .search-btn {
        width: 100%;
    }

    .hero-row {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-media {
        order: -1;
    }

    .hero-cta-row {
        gap: 0.85rem;
    }

    .hero-cta-row .search-btn {
        width: auto;
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 0;
    }

    .about-page__section--mission {
        padding: 2.5rem 15px;
    }

    .about-page__section--mission .hero-container {
        gap: 0;
    }

    .about-page__section--mission .hero-title {
        font-size: 1.65rem;
        margin-bottom: 1.2rem;
    }

    .about-page__section--mission .hero-description {
        font-size: 1.05rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .about-page__section--mission .about-page__mission-body {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .about-page__section--mission .search-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .about-page__section--mission .hero-cta-row {
        margin-top: 1rem;
    }

    .popular-tags {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 0.5rem;
        margin-bottom: 2rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        width: 100%;
        max-width: 100%;
    }

    .popular-tags::-webkit-scrollbar {
        display: none;
    }

    .popular-tags .tag {
        flex-shrink: 0;
        font-size: 11px;
        padding: 0.4rem 0.7rem;
    }

    .trust-stats-section {
        padding: 0 10px 48px;
    }

    .trust-stats-section .container {
        max-width: 100%;
    }

    .trust-stats-bar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1px;
        padding: 1px;
        background: var(--rgba-white-012);
        border-radius: 18px;
    }

    .trust-stat {
        border: none;
        background: linear-gradient(180deg, var(--rgba-panel-07) 0%, var(--rgba-bg-select) 100%);
        padding: 1.65rem 1.35rem;
        gap: 1.2rem;
    }

    .trust-stat__metric {
        font-size: 1.65rem;
    }

    .trust-stat__label {
        font-size: 0.95rem;
    }

    .trust-stat__icon {
        width: 64px;
        height: 64px;
        font-size: 1.65rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 36px 16px 40px;
        /* Slight horizontal nudge so shield/graphic stays in frame on narrow screens */
        background-size: 100% auto;
        background-position: 50% 0;
    }

    .hero-section::after {
        background: var(--rgba-hero-overlay-mobile);
    }

    .hero-title {
        font-size: 1.5rem;
        word-wrap: break-word;
    }

    .trust-stats-section {
        padding: 0 10px 40px;
    }

    .trust-stats-bar {
        display: flex;
        flex-direction: column;
        gap: 1px;
        padding: 1px;
        background: var(--rgba-white-012);
        border-radius: 16px;
    }

    .trust-stat {
        border: none;
        background: linear-gradient(180deg, var(--rgba-panel-07) 0%, var(--rgba-bg-select) 100%);
        padding: 1.45rem 1.15rem;
    }

    .trust-stat__metric {
        font-size: 1.5rem;
    }

    .trust-stat__label {
        font-size: 0.9rem;
    }

    .trust-stat__icon {
        width: 58px;
        height: 58px;
        font-size: 1.5rem;
    }
}

/* How It Works Section — overrides below in how-explore-combined context */
.how-it-works-section {
    position: relative;
}

.section-title-main {
    margin-bottom: 1rem !important;
}

.section-subtitle {
    margin-bottom: 3rem !important;
}

/* Explore by Category Section (standalone page, outside how-explore-combined) */
.explore-section {
    background: linear-gradient(135deg, var(--rgba-overlay-050) 0%, var(--rgba-panel-dark-05) 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.section-header a {
    transition: all 0.3s ease;
}

.section-header a:hover {
    color: var(--color-aqua-bright) !important;
    text-shadow: 0 0 10px var(--rgba-cyan-05);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--rgba-white-005);
    border: 1px solid var(--rgba-white-01);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, var(--rgba-cyan-01) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.category-card:hover {
    background: var(--rgba-white-008);
    border-color: var(--rgba-cyan-03);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px var(--rgba-cyan-01);
}

.category-card:hover::before {
    opacity: 1;
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--color-white);
    transition: all 0.3s ease;
    box-shadow: 0 0 25px var(--rgba-cyan-02);
}

.category-card:hover .category-icon {
    box-shadow: 0 0 40px var(--rgba-cyan-04);
    transform: scale(1.1);
}

.category-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.category-description {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .explore-section {
        padding: 60px 20px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-header h2 {
        font-size: 1.8rem !important;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-card {
        padding: 1.5rem;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ============================================
           How it Works + Explore by Category
        ============================================ */
.how-explore-combined {
    padding: 70px 0;
    position: relative;
}

.how-explore-combined .container {
    max-width: 1400px;
    padding-left: 2rem;
    padding-right: 2.5rem;
}

.how-explore-combined__row {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

/* LEFT: How it works */
.how-it-works-section {
    flex: 0 0 60%;
    max-width: 60%;
}

.hiw-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: var(--color-white);
    font-size: 2.2rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.hiw-subtitle {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-muted);
    font-size: 1rem;
    margin: 0 0 1.75rem 0;
}

.hiw-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.9rem;
}

.hiw-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.6rem 1.1rem 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: border-color 0.3s ease, background 0.3s ease;
    cursor: default;
}

.hiw-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(0, 255, 251, 0.2);
}

.hiw-badge {
    position: absolute;
    top: -11px;
    left: -11px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--color-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hiw-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem auto 1.1rem;
}

.hiw-icon {
    font-size: 1.9rem;
}

.hiw-card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--color-white);
    font-size: 1rem;
    margin: 0 0 0.55rem 0;
    line-height: 1.3;
}

.hiw-card-desc {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* RIGHT: Explore by Category */
.how-explore-combined .explore-section {
    flex: 1;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
}

.explore-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.explore-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: var(--color-white);
    font-size: 1.7rem;
    margin: 0;
    white-space: nowrap;
}

.explore-view-all {
    font-family: 'Inter', sans-serif;
    color: var(--color-cyan);
    font-size: 0.85rem;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.explore-view-all:hover {
    opacity: 0.8;
    color: var(--color-cyan);
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.explore-grid .category-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.3rem 1rem 1.15rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.explore-grid .category-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(0, 255, 251, 0.2);
}

.explore-grid .category-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-white);
    margin: 0 0 0.8rem 0;
}

.explore-grid .category-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--color-white);
    font-size: 0.88rem;
    margin: 0 0 0.3rem 0;
    line-height: 1.3;
}

.explore-grid .category-description {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-secondary);
    font-size: 0.78rem;
    margin: 0;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 800px) {
    .hiw-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .how-explore-combined {
        padding: 50px 0;
    }

    .how-explore-combined__row {
        flex-direction: column;
        gap: 2.5rem;
    }

    .how-it-works-section {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .how-explore-combined .explore-section {
        flex: none;
        width: 100%;
    }

    .hiw-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hiw-title {
        font-size: 1.6rem;
    }

    .explore-title {
        font-size: 1.3rem;
    }
}

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

@media (max-width: 600px) {
    .explore-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   Razz ecosystem block (landing — not How it works)
   ============================================ */
.rze-section {
    padding: 70px 0;
    position: relative;
}

.rze-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: var(--color-white);
    font-size: 2.2rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.rze-title-accent {
    color: #00fffb;
}

.rze-subtitle {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-muted);
    font-size: 1rem;
    margin: 0 0 1.75rem 0;
}

.rze-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
}

.rze-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.6rem 1.1rem 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: border-color 0.3s ease, background 0.3s ease;
    cursor: default;
}

a.rze-card.rze-card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.rze-card:hover,
a.rze-card.rze-card-link:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(0, 255, 251, 0.2);
}

.rze-card-cta {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-cyan);
    margin-top: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.rze-card-cta .fa-external-link-alt {
    font-size: 0.7rem;
    opacity: 0.9;
}

.rze-badge {
    position: absolute;
    top: -11px;
    left: -11px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--color-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.rze-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    max-width: 100%;
    min-height: 3.25rem;
    margin: 0.5rem auto 1.1rem;
}

.rze-logo {
    display: block;
    flex-shrink: 0;
    max-width: 100%;
    max-height: 3rem;
    width: auto;
    height: auto;
    object-fit: contain;
}

.rze-card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--color-white);
    font-size: 1rem;
    margin: 0 0 0.55rem 0;
    line-height: 1.3;
}

.rze-card-link .rze-card-title,
.rze-card-link .rze-card-desc {
    display: block;
}

.rze-card-desc {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 991px) {
    .rze-section {
        padding: 50px 0;
    }

    .rze-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 800px) {
    .rze-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Featured Products & Why Choose Section */
/* ============================================
           Featured Products + Why Choose Section
        ============================================ */
.featured-products-section {
    padding: 70px 0;
    position: relative;
}

.fp-container {
    max-width: 1400px;
    padding-left: 2rem;
    padding-right: 2.5rem;
}

.fp-row {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 1.5rem;
}

/* LEFT: 75% */
.fp-left {
    flex: 0 0 75%;
    max-width: 75%;
}

.fp-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: var(--color-white);
    font-size: 2.2rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.fp-subtitle {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-muted);
    font-size: 1rem;
    margin: 0 0 1.75rem 0;
}

.fp-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.fp-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.4rem 1.2rem 1.1rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.fp-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(0, 255, 251, 0.2);
}

.fp-card-top {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.9rem;
}

.fp-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-white);
}

.fp-badge {
    font-family: 'Inter', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.22rem 0.5rem;
    border-radius: 4px;
    line-height: 1.4;
}

.fp-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--color-white);
    font-size: 0.95rem;
    margin: 0 0 0.45rem 0;
    line-height: 1.35;
}

.fp-desc {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-secondary);
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0 0 0.85rem 0;
    flex-grow: 1;
}

.fp-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
}

.fp-price {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--color-white);
    font-size: 0.88rem;
}

.fp-rating {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.fp-rating .fa-star {
    color: #ffd700;
    font-size: 0.75rem;
}

.fp-rating span {
    color: var(--color-text-secondary);
}

.fp-button {
    background: linear-gradient(135deg, var(--color-violet) 0%, var(--color-violet-dark) 100%);
    color: var(--color-white);
    text-decoration: none;
    border: none;
    padding: 0.6rem 0.85rem;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    margin-bottom: 0.65rem;
    width: 100%;
}

.fp-button:hover {
    box-shadow: 0 0 20px var(--rgba-violet-04);
}

.fp-demo {
    font-family: 'Inter', sans-serif;
    color: var(--color-cyan);
    font-size: 0.76rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    justify-content: center;
}

.fp-demo:hover {
    color: var(--color-aqua-bright);
}

/* RIGHT: Why Choose — 25% */
.fp-right {
    flex: 0 0 25%;
    max-width: 25%;
}

.wc-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: var(--color-white);
    font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.wc-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.wc-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.wc-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--color-white);
}

.wc-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--color-white);
    font-size: 0.88rem;
    margin: 0 0 0.2rem 0;
}

.wc-text {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-secondary);
    font-size: 0.76rem;
    line-height: 1.4;
    margin: 0;
}

/* Bottom strip */
.fp-bottom-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
}

.fp-strip-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.2rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.fp-strip-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(0, 255, 251, 0.2);
}

.fp-strip-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-white);
}

.fp-strip-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--color-white);
    font-size: 0.9rem;
    margin: 0 0 0.2rem 0;
}

.fp-strip-text {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-secondary);
    font-size: 0.78rem;
    line-height: 1.4;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .featured-products-section {
        padding: 50px 0;
    }

    .fp-row {
        flex-direction: column;
        gap: 2.5rem;
    }

    .fp-left {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .fp-right {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .wc-title {
        text-align: center;
    }

    .wc-list {
        max-width: 100%;
    }

    .wc-item {
        min-width: 0;
    }

    .wc-item>div:last-child {
        min-width: 0;
    }

    .fp-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fp-bottom-strip {
        grid-template-columns: 1fr;
    }
}

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

/* Additional Features Section (legacy, kept for reference) */
.additional-features-section {
    display: none;
}

.additional-features-section-UNUSED {
    background: linear-gradient(135deg, var(--rgba-panel-07) 0%, var(--rgba-panel-dark-07) 100%);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--rgba-white-005);
}

.feature-card {
    background: var(--rgba-white-005);
    border: 1px solid var(--rgba-white-01);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, var(--rgba-cyan-01) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover {
    background: var(--rgba-white-008);
    border-color: var(--rgba-cyan-03);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--rgba-cyan-015);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 25px var(--rgba-cyan-02);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    box-shadow: 0 0 40px var(--rgba-cyan-04);
    transform: scale(1.1);
}

.feature-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    margin-top: 0;
}

.feature-description {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .additional-features-section {
        padding: 40px 15px;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.9rem;
    }
}

/* CTA Section Styles */
.cta-section {
    --cta-blue: #105ce5;
    background-color: var(--cta-blue);
    /* background-image: */
    /* radial-gradient(ellipse 70% 55% at 15% 45%, rgba(255, 255, 255, 0.18) 0%, transparent 55%),
                radial-gradient(ellipse 55% 70% at 90% 20%, rgba(120, 190, 255, 0.35) 0%, transparent 50%),
                radial-gradient(ellipse 50% 45% at 75% 85%, rgba(40, 100, 220, 0.4) 0%, transparent 55%), */
    /* linear-gradient(165deg, #0d4fd6 0%, var(--cta-blue) 45%, #0a4bc7 100%); */
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 0 50px rgba(16, 92, 229, 0.55),
        0 0 100px rgba(80, 150, 255, 0.25);
}

/* .cta-section::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 25%;
            transform: translate(-50%, -50%);
            width: min(520px, 90vw);
            height: min(380px, 70vh);
            background: radial-gradient(
                ellipse at center,
                rgba(255, 255, 255, 0.22) 0%,
                rgba(140, 200, 255, 0.12) 35%,
                transparent 70%
            );
            pointer-events: none;
            z-index: 0;
            filter: blur(2px);
        }

        .cta-section::after {
            content: "";
            position: absolute;
            bottom: -20%;
            right: -5%;
            width: 380px;
            height: 380px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, transparent 65%);
            pointer-events: none;
            z-index: 0;
        } */

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-heading {
    position: relative;
    z-index: 1;
}

.cta-description {
    position: relative;
    z-index: 1;
}

.cta-buttons {
    position: relative;
    z-index: 1;
}

.cta-button {
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button-primary {
    background: #ffffff !important;
    color: #0f172a !important;
    border: none !important;
    border-radius: 10px !important;
}

.cta-button-primary:hover {
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.35), 0 0 24px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cta-button-secondary {
    background: rgba(15, 23, 42, 0.35) !important;
    border: 2px solid rgba(255, 255, 255, 0.85) !important;
    border-radius: 10px !important;
    color: #ffffff !important;
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 0 28px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cta-feature-icon {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.35rem;
    width: 1.75rem;
    text-align: center;
    flex-shrink: 0;
}

.cta-icon-shield-bolt {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.95);
}

.cta-icon-shield-bolt .fa-shield-alt {
    font-size: 1.35rem;
}

.cta-icon-shield-bolt .fa-bolt {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -52%);
    font-size: 0.52rem;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    transition: all 0.3s ease;
    padding: 0.35rem 0;
}

.cta-feature-item:hover {
    transform: translateX(10px);
}

@media (max-width: 991px) {
    .cta-section {
        padding: 36px 20px;
    }

    .cta-heading {
        font-size: 2rem !important;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 28px 15px;
    }

    .cta-heading {
        font-size: 1.6rem !important;
        margin-bottom: 1rem;
    }

    .cta-description {
        font-size: 1rem !important;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.5rem !important;
        font-size: 0.9rem;
    }

    .cta-features {
        gap: 1rem;
    }

    .cta-feature-item {
        gap: 0.8rem;
    }

    .cta-feature-icon {
        font-size: 1.15rem !important;
    }

    .cta-icon-shield-bolt .fa-shield-alt {
        font-size: 1.15rem !important;
    }

    .cta-icon-shield-bolt .fa-bolt {
        font-size: 0.45rem !important;
    }

    .cta-feature-item span {
        font-size: 0.9rem !important;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, var(--rgba-gradient-09) 0%, var(--rgba-purple-bg-09) 100%);
    padding: 28px 16px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--rgba-white-005);
    border-bottom: 1px solid var(--rgba-white-005);
}

.testimonials-section-header-row {
    margin-bottom: 0.75rem !important;
}

.testimonials-title-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    gap: 0.65rem 1rem;
    text-align: left;
}

.testimonials-title-row .testimonials-heading {
    flex-shrink: 0;
}

.testimonials-title-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
    align-self: center;
}

.testimonials-subhead {
    font-family: Michroma, sans-serif;
    color: #b0b0b0;
    font-size: 0.8rem;
    line-height: 1.35;
    margin: 0;
    flex: 1;
    min-width: 0;
}

.testimonial-card {
    background: var(--rgba-white-005);
    border: 1px solid var(--rgba-white-01);
    border-radius: 10px;
    padding: 0.9rem 1rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, var(--rgba-cyan-01) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.testimonial-card:hover {
    background: var(--rgba-white-008);
    border-color: var(--rgba-cyan-03);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--rgba-cyan-015);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-text {
    font-family: 'Inter', sans-serif;
    color: var(--color-border-pale);
    font-size: 0.88rem;
    line-height: 1.45;
    margin-bottom: 0.5rem;
    flex-grow: 0;
}

.testimonial-rating {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-gold);
}

.testimonial-author {
    display: flex;
    gap: 0.65rem;
    align-items: center;
    border-top: 1px solid var(--rgba-white-01);
    padding-top: 0.65rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--rgba-cyan-03);
}

.testimonial-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--color-white);
    font-size: 0.88rem;
    margin: 0 0 0.15rem 0;
}

.testimonial-title {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-secondary);
    font-size: 0.78rem;
    margin: 0;
}

@media (max-width: 991px) {
    .testimonials-title-row {
        flex-wrap: nowrap;
    }

    .testimonials-subhead {
        font-size: 0.72rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 20px 12px;
    }

    .testimonials-section-header-row {
        margin-bottom: 0.5rem !important;
    }

    .testimonials-heading {
        font-size: 1.2rem !important;
        flex-shrink: 0;
    }

    .testimonials-subhead {
        font-size: 0.65rem;
    }

    .testimonial-card {
        padding: 0.85rem 0.95rem;
    }

    .testimonial-text {
        font-size: 0.85rem;
    }
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, var(--rgba-gradient-095) 0%, var(--rgba-nav-mid) 100%);
    border-top: 1px solid var(--rgba-white-005);
    padding: 60px 20px 20px 20px;
    /* margin-top: 80px; */
}

/* Footer top columns: spacing via Bootstrap row / col-md-4 in footer_section.html */

.footer-nav-columns__block {
    width: 100%;
    min-width: 0;
}

.footer-nav-columns__block--center {
    text-align: center;
}

/* Center the nav block in the column; heading + links share one left edge (no ragged centering) */
.footer-nav-columns__inner {
    display: inline-block;
    text-align: left;
    vertical-align: top;
}

.footer-nav-columns__block--center .footer-links {
    text-align: left;
}

@media (max-width: 767.98px) {
    .footer-nav-columns__block--center {
        text-align: left;
    }

    .footer-nav-columns__inner {
        display: block;
        width: 100%;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-logo {
    display: block;
    height: 105px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rgba-white-01);
    border-radius: 50%;
    color: var(--color-cyan);
    transition: all 0.3s ease;
    border: 1px solid var(--rgba-cyan-02);
    font-size: 1rem;
    text-decoration: none;
}

.footer-social a:hover,
.footer-social a:focus-visible {
    background: var(--color-cyan);
    color: var(--color-black);
    transform: translateY(-3px);
    text-decoration: none;
}

.footer-social__x {
    width: 1rem;
    height: 1rem;
    display: block;
    flex-shrink: 0;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-cyan);
    padding-left: 0.5rem;
}

.footer-newsletter input {
    transition: all 0.3s ease;
    outline: none;
}

.footer-newsletter input:focus {
    border-color: var(--color-cyan) !important;
    box-shadow: 0 0 20px var(--rgba-cyan-02) !important;
}

.footer-newsletter button:hover {
    box-shadow: 0 0 25px var(--rgba-violet-04);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--rgba-white-005);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-compliance {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1.5rem;
}

.footer-compliance span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 15px 15px 15px;
    }

    .footer-newsletter {
        flex-direction: column;
    }

    .footer-newsletter input {
        width: 100%;
    }

    .footer-compliance {
        justify-content: flex-start;
        margin-top: 1rem;
    }

    .footer-bottom .row {
        flex-direction: column-reverse;
    }

    .footer-bottom .col-md-6:first-child {
        text-align: center;
        margin-top: 1rem;
    }
}

/* --- Contact page (/contact/) --- */
.contact-page {
    min-height: 60vh;
    background: linear-gradient(180deg, var(--color-bg-hero) 0%, var(--color-black-soft) 100%);
    padding-bottom: 3rem;
}

.contact-page__header {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.contact-page__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rgb-link-blue);
    margin-bottom: 0.5rem;
}

.contact-page__title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: var(--color-white);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 0.75rem;
}

.contact-page__lead {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.55;
    margin: 0;
}

.contact-page__card {
    background: var(--rgba-panel-07);
    border: 1px solid var(--rgba-white-008);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
}

@media (min-width: 576px) {
    .contact-page__card {
        padding: 2rem 2rem;
    }
}

.contact-page__form .form-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--color-text-soft);
}

.contact-page__form .form-control,
.contact-page__form .form-select {
    background-color: transparent !important;
    border: 1px solid var(--color-text-soft);
    color: var(--color-white);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
}

.contact-page__form .form-control::placeholder {
    color: var(--color-text-tertiary);
}

.contact-page__form .form-control:focus,
.contact-page__form .form-select:focus {
    border-color: var(--rgb-link-blue);
    box-shadow: 0 0 0 2px var(--rgba-blue-01);
    color: var(--color-white);
}

.contact-page__select,
.contact-page__form select.form-select {
    color: var(--color-white);
}

.contact-page__select option,
.contact-page__form select option {
    background: var(--color-select-option-bg);
    color: var(--color-select-option-text);
}

.contact-page__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-page__submit {
    margin-top: 0.25rem;
}

/* --- Audience pages (/for-business/, /for-individuals/) --- */
.audience-page {
    min-height: 60vh;
    background: linear-gradient(180deg, var(--color-bg-hero) 0%, var(--color-black-soft) 100%);
    padding-bottom: 3rem;
}

/* For Business: tools strip only — avoid empty 60vh + extra bottom padding */
.audience-page--marketplace-strip {
    min-height: 0;
    padding-bottom: 0;
}

.audience-page__header {
    max-width: 42rem;
    margin-bottom: 2.5rem;
}

.audience-page__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ap-accent, var(--rgb-link-blue));
    margin-bottom: 0.5rem;
}

.audience-page__title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: var(--color-white);
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.audience-page__lead {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.audience-page__offers {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.audience-page__offer-card {
    background: var(--rgba-panel-07);
    border: 1px solid var(--rgba-white-008);
    border-radius: 12px;
    padding: 1.5rem 1.35rem;
    border-left: 3px solid var(--ap-accent, var(--rgb-link-blue));
}

@media (min-width: 576px) {
    .audience-page__offer-card {
        padding: 1.65rem 1.5rem;
    }
}

.audience-page__offer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10px;
    background: var(--ap-accent-soft, var(--rgba-blue-01));
    color: #0f5ce5;
    font-size: 1.1rem;
    margin-bottom: 0.85rem;
}

.audience-page__offer-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.audience-page__offer-text {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.audience-page__offer-list {
    margin: 0;
    padding-left: 1.2rem;
    font-family: 'Inter', sans-serif;
    color: var(--color-text-soft);
    font-size: 0.9rem;
    line-height: 1.55;
}

.audience-page__offer-list li {
    margin-bottom: 0.35rem;
}

.audience-page__offer-list li:last-child {
    margin-bottom: 0;
}

.audience-page__cta {
    position: sticky;
    top: 5.5rem;
}

@media (max-width: 991.98px) {
    .audience-page__cta {
        position: static;
    }
}

.audience-page__cta-card {
    background: var(--rgba-panel-07);
    border: 1px solid var(--rgba-white-008);
    border-radius: 12px;
    padding: 1.5rem 1.35rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

@media (min-width: 576px) {
    .audience-page__cta-card {
        padding: 1.75rem 1.5rem;
    }
}

.audience-page__cta-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 0.35rem;
}

.audience-page__cta-lead {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.audience-page__cta-lead em {
    color: var(--color-text-soft);
    font-style: normal;
    font-weight: 600;
}

.audience-page__submit {
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.65rem 1rem;
    border-radius: 8px;
}

.audience-page--business .audience-page__submit {
    background: linear-gradient(135deg, #0f5ce5 0%, #3d94f5 100%);
}

.audience-page--individual .audience-page__submit {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
}

.audience-page__submit:hover {
    filter: brightness(1.06);
    color: #fff;
}

.audience-page--individual .audience-page__cta-card--simple .audience-page__cta-title {
    margin-bottom: 0.5rem;
}

/* --- For Individuals (ind-page redesign) --- */
.ind-page.audience-page {
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    color: #b0b8c1;
}

.ind-page__header {
    max-width: 44rem;
    margin-bottom: 2.75rem;
}

.ind-page__usp {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(1.05rem, 2.8vw, 1.4rem);
    color: #ffffff;
    line-height: 1.3;
    margin: 0 0 0.85rem;
}

.ind-page__title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #ffffff;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    margin: 0 0 1rem;
    line-height: 1.2;
}

.ind-page__lead-primary {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.55;
    color: #b0b8c1;
    margin: 0 0 0.5rem;
}

.ind-page__lead-muted {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(176, 184, 193, 0.72);
    margin: 0;
}

.ind-page__scroll-link {
    display: inline-block;
    margin-top: 1.35rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #0f5ce5;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.ind-page__scroll-link:hover {
    color: #66f0ff;
    text-decoration: underline;
}

.ind-page__services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    scroll-margin-top: 5.5rem;
}

@media (min-width: 768px) {
    .ind-page__services {
        grid-template-columns: 1fr 1fr;
    }

    .ind-page__services .ind-page__offer-card:last-child {
        grid-column: 1 / -1;
    }
}

.ind-page .ind-page__offer-card {
    border-radius: 8px;
    border-left: 3px solid #0f5ce5;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ind-page .ind-page__offer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.15);
}

.ind-page__offer-top {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 0.75rem;
}

.ind-page__offer-top .audience-page__offer-title {
    margin-bottom: 0;
    flex: 1;
    min-width: 0;
}

.ind-page .ind-page__offer-icon {
    margin-bottom: 0;
}

.ind-page .ind-page__offer-icon--shield-check {
    position: relative;
}

/* Checkmark overlay: second FA icon hid the shield on some FA 6.0 builds; use ::after instead */
.ind-page .ind-page__offer-icon--shield-check::after {
    content: '\2713';
    position: absolute;
    right: 0.18rem;
    bottom: 0.22rem;
    font-size: 0.58rem;
    line-height: 1;
    font-weight: 700;
    color: #0f5ce5;
    font-family: 'Inter', system-ui, sans-serif;
    pointer-events: none;
}

.ind-page .ind-page__offer-summary {
    margin-bottom: 0.85rem;
    color: #b0b8c1;
}

.ind-page .audience-page__offer-title {
    color: #ffffff;
}

.ind-page__checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #b0b8c1;
}

.ind-page__checklist li {
    position: relative;
    padding-left: 1.45rem;
    margin-bottom: 0.4rem;
}

.ind-page__checklist li:last-child {
    margin-bottom: 0;
}

.ind-page__checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #0f5ce5;
    font-weight: 700;
    font-size: 0.85rem;
}

.ind-page__usp-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 2.5rem 0;
    padding: 1.5rem 1.25rem;
    background: #161616;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ind-page__usp-col {
    padding: 1rem 0;
}

.ind-page__usp-col:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
    .ind-page__usp-strip {
        grid-template-columns: repeat(3, 1fr);
        padding: 1.75rem 0;
    }

    .ind-page__usp-col {
        padding: 0 1.5rem;
        border-bottom: none !important;
    }

    .ind-page__usp-col:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }
}

.ind-page__usp-strip-line {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #ffffff;
    margin: 0 0 0.35rem;
    line-height: 1.4;
}

.ind-page__usp-strip-line strong {
    font-weight: 700;
}

.ind-page__usp-emoji {
    margin-right: 0.25rem;
}

/* Font Awesome icons in USP strip (For Business / For Individuals) */
.audience-page--business .ind-page__usp-emoji,
.audience-page--individual .ind-page__usp-emoji {
    margin-right: 0.35rem;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.audience-page--business .ind-page__usp-emoji .fas,
.audience-page--individual .ind-page__usp-emoji .fas {
    color: #00e5ff;
    font-size: 0.92rem;
    line-height: 1;
}

.ind-page__usp-strip-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(176, 184, 193, 0.85);
    margin: 0;
}

.ind-page__contact-wrap {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}

.ind-page__cta-card {
    background: rgba(10, 10, 20, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1.5rem 1.35rem;
}

@media (min-width: 576px) {
    .ind-page__cta-card {
        padding: 1.75rem 1.5rem;
    }
}

.ind-page__cta-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
    margin: 0 0 1.25rem;
}

.ind-page__label {
    color: rgba(176, 184, 193, 0.95) !important;
}

.ind-page__form.contact-page__form .form-control:focus,
.ind-page__form.contact-page__form .form-select:focus {
    border-color: #0f5ce5;
    box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.2);
}

/* Global .btn uses ::after for face + var(--color); dark text was invisible on that dark fill */
.btn.ind-page__submit {
    --bg: #000000;
    --color: #ffffff;
}

.btn.ind-page__submit,
.ind-page__submit {
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.7rem 1rem;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    background: #00e5ff;
    color: #ffffff;
    transition: filter 0.2s ease, transform 0.2s ease;
}

.btn.ind-page__submit:hover,
.btn.ind-page__submit:focus-visible,
.ind-page__submit:hover,
.ind-page__submit:focus-visible {
    filter: brightness(1.08);
    color: #ffffff;
}

.ind-page__submit:active {
    transform: scale(0.99);
}

.ind-page__form-footnote {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(176, 184, 193, 0.65);
    text-align: center;
    margin: 1rem 0 0;
}

/* --- For Individuals: hero follow-on showcase (two sections) --- */
.ind-showcase {
    background: linear-gradient(180deg, #06060a 0%, #0a0e14 45%, #06060a 100%);
    color: #b0b8c1;
    position: relative;
    overflow: hidden;
}

.ind-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        /* radial-gradient(ellipse 80% 40% at 50% 0%, rgba(0, 255, 251, 0.06) 0%, transparent 55%), */
        repeating-linear-gradient(90deg, transparent, transparent 120px, rgba(0, 255, 251, 0.02) 120px, rgba(0, 255, 251, 0.02) 121px);
    pointer-events: none;
    z-index: 0;
}

.ind-showcase__container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
}

.ind-protect {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ind-protect__title,
.ind-stay__title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(1.35rem, 3.5vw, 1.85rem);
    color: #ffffff;
    text-align: center;
    margin: 0 auto 2rem;
    max-width: 36rem;
    line-height: 1.25;
}

.ind-protect__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .ind-protect__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

.ind-protect-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 251, 0.12);
    border-radius: 16px;
    padding: 1.75rem 1.35rem 1.6rem;
    text-align: center;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.ind-protect-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 251, 0.28);
    box-shadow: 0 0 28px rgba(0, 255, 251, 0.08);
}

.ind-protect-card__icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 1.15rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: radial-gradient(circle at 30% 30%, rgba(0, 255, 251, 0.18) 0%, rgba(0, 80, 120, 0.25) 100%); */
    border: 1px solid var(--color-hero-accent);
    /* box-shadow: 0 0 24px rgba(0, 255, 251, 0.2), inset 0 0 20px rgba(0, 255, 251, 0.06); */
}

.ind-protect-card__icon .fas {
    font-size: 2rem;
    color: var(--color-hero-accent);
    filter: drop-shadow(0 0 10px rgba(0, 255, 251, 0.55));
}

.ind-protect-card__name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #ffffff;
    margin: 0 0 0.55rem;
    line-height: 1.3;
}

.ind-protect-card__text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(176, 184, 193, 0.92);
    margin: 0;
}

.ind-protect__cta-wrap {
    text-align: center;
}

.ind-protect__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.65rem 1.35rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-hero-accent);
    text-decoration: none;
    background: rgba(0, 40, 60, 0.45);
    border: 1px solid var(--color-hero-accent);
    border-radius: 10px;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ind-protect__cta:hover {
    background: rgba(0, 255, 251, 0.1);
    border-color: rgba(0, 255, 251, 0.55);
    box-shadow: 0 0 20px rgba(0, 255, 251, 0.12);
    color: #7ffcf8;
}

.ind-protect__cta .fa-chevron-right {
    font-size: 0.75rem;
    opacity: 0.9;
}

.ind-stay {
    padding-top: 0.5rem;
}

.ind-stay__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
}

@media (min-width: 768px) {
    .ind-stay__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

.ind-stay-row {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.15rem 1.1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.ind-stay-row:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 251, 0.18);
}

.ind-stay-row__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 251, 0.08);
    /* border: 1px solid rgba(0, 255, 251, 0.2); */
    color: var(--color-hero-accent);
    font-size: 1.1rem;
}

.ind-stay-row__body {
    min-width: 0;
}

.ind-stay-row__name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.98rem;
    color: #ffffff;
    margin: 0 0 0.35rem;
    line-height: 1.3;
}

.ind-stay-row__text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(176, 184, 193, 0.9);
    margin: 0;
}

@media (max-width: 767px) {
    .ind-stay__title {
        margin-bottom: 1.5rem;
    }
}

/* For Individuals — trust cards + expert CTA */
.ind-trust {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ind-trust__title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(1.3rem, 3.2vw, 1.75rem);
    color: #ffffff;
    text-align: center;
    margin: 0 auto 2rem;
    max-width: 40rem;
    line-height: 1.25;
}

.ind-trust__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
}

@media (min-width: 768px) {
    .ind-trust__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

.ind-trust-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.65rem 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.ind-trust-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 251, 0.22);
    box-shadow: 0 0 24px rgba(0, 255, 251, 0.06);
}

.ind-trust-card__icon {
    width: 72px;
    height: 72px;
    margin-bottom: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: radial-gradient(circle at 35% 30%, rgba(0, 255, 251, 0.15) 0%, rgba(0, 60, 90, 0.35) 100%); */
    /* border: 1px solid rgba(0, 255, 251, 0.28); */
    box-shadow: 0 0 20px rgba(0, 255, 251, 0.15);
}

.ind-trust-card__icon .fas {
    font-size: 1.75rem;
    color: var(--color-hero-accent);
    filter: drop-shadow(0 0 8px var(--color-hero-accent));
}

.ind-trust-card__name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #ffffff;
    margin: 0 0 0.45rem;
    line-height: 1.3;
}

.ind-trust-card__muted {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(176, 184, 193, 0.88);
    margin: 0 0 1.15rem;
    flex: 1;
}

.ind-trust-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 220px;
    padding: 0.55rem 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-hero-accent);
    text-decoration: none;
    background: rgba(0, 25, 40, 0.65);
    border: 1px solid var(--color-hero-accent);
    border-radius: 9px;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ind-trust-card__btn:hover {
    background: rgba(0, 255, 251, 0.1);
    border-color: rgba(0, 255, 251, 0.5);
    color: #7ffcf8;
}

.ind-help {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ind-help__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 992px) {
    .ind-help__layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
        gap: 2.5rem;
    }
}

.ind-help__figure {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
    background: #0a1018;
}

.ind-help__img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
    object-fit: cover;
}

.ind-help__copy {
    padding: 0 0.25rem;
}

@media (min-width: 992px) {
    .ind-help__copy {
        padding: 0 0.5rem 0 0;
    }
}

.ind-help__title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(1.45rem, 3.2vw, 2rem);
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 1rem;
}

.ind-help__lead {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(230, 237, 245, 0.92);
    margin: 0 0 1.5rem;
    max-width: 32rem;
}

.ind-help__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    align-items: center;
}

.ind-help__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.65rem 1.35rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    border-radius: 10px;
    transition: filter 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ind-help__cta--primary {
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 55%, #6d28d9 100%);
    border: none;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}

.ind-help__cta--primary:hover {
    filter: brightness(1.08);
    color: #ffffff;
}

.ind-help__cta--primary .fa-chevron-right {
    font-size: 0.72rem;
    opacity: 0.95;
}

.ind-help__cta--ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.ind-help__cta--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 255, 251, 0.35);
    color: #e2f7ff;
}

@media (max-width: 575px) {
    .ind-help__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ind-help__cta {
        width: 100%;
    }
}

/* --- For Business: challenges section (Bootstrap grid + custom cards) --- */
.biz-challenges-section {
    background: linear-gradient(180deg, #0a0a0f 0%, #06060c 100%);
    position: relative;
    overflow: hidden;
}

.biz-challenges-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 42% at 50% 0%, rgba(0, 255, 251, 0.06) 0%, transparent 52%),
        repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(0, 255, 251, 0.02) 100px, rgba(0, 255, 251, 0.02) 101px);
    pointer-events: none;
    z-index: 0;
}

.biz-challenges-section .container {
    position: relative;
    z-index: 1;
}

.biz-challenges-section__wrap {
    padding-top: 1.25rem;
    padding-bottom: 3rem;
}

@media (min-width: 992px) {
    .biz-challenges-section__wrap {
        padding-top: 1.5rem;
        padding-bottom: 3rem;
    }
}

.biz-challenges-section__title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(1.35rem, 3.5vw, 1.85rem);
    color: #ffffff;
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.25;
}

.biz-challenges-card {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.biz-challenges-card:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(0, 255, 251, 0.22) !important;
    box-shadow: 0 0 24px rgba(0, 255, 251, 0.08);
}

.biz-challenges-card__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    flex-shrink: 0;
}

.biz-challenges-card__icon--danger {
    background: radial-gradient(circle at 30% 30%, rgba(239, 68, 68, 0.28) 0%, rgba(60, 20, 25, 0.45) 100%);
    border: 1px solid rgba(248, 113, 113, 0.35);
    color: #fca5a5;
    box-shadow: 0 0 22px rgba(239, 68, 68, 0.22);
    filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.35));
}

.biz-challenges-card__icon--info {
    background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.32) 0%, rgba(20, 45, 90, 0.45) 100%);
    border: 1px solid rgba(96, 165, 250, 0.4);
    color: #60a5fa;
    box-shadow: 0 0 22px rgba(59, 130, 246, 0.2);
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.35));
}

.biz-challenges-card__icon--warning {
    background: radial-gradient(circle at 30% 30%, rgba(251, 146, 60, 0.28) 0%, rgba(70, 45, 15, 0.45) 100%);
    border: 1px solid rgba(251, 146, 60, 0.4);
    color: #fdba74;
    box-shadow: 0 0 22px rgba(249, 115, 22, 0.18);
    filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.3));
}

.biz-challenges-card__name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #ffffff;
}

.biz-challenges-card__text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(176, 184, 193, 0.92);
}

/* --- For Business: platform grid (6 features) --- */
.biz-platform-section {
    background: linear-gradient(180deg, #06060c 0%, #0a0c12 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.biz-platform-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 20%, rgba(0, 100, 180, 0.08) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.biz-platform-section .container {
    position: relative;
    z-index: 1;
}

.biz-platform-section__title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(1.35rem, 3.5vw, 1.85rem);
    color: #ffffff;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.25;
}

.biz-platform-card {
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1px solid rgba(0, 255, 251, 0.12) !important;
    border-radius: 14px !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.biz-platform-card:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(0, 255, 251, 0.22) !important;
    box-shadow: 0 0 22px rgba(0, 255, 251, 0.07);
}

.biz-platform-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #60a5fa;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(96, 165, 250, 0.35);
    box-shadow: 0 0 18px rgba(59, 130, 246, 0.2);
}

.biz-platform-card__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.biz-platform-card__text {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(176, 184, 193, 0.9);
}

/* --- For Business: pricing / featured solutions --- */
.biz-pricing-section {
    background: linear-gradient(180deg, #0a0c12 0%, #06060c 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.biz-pricing-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 55% at 50% 0%, rgba(0, 255, 251, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(124, 58, 237, 0.06) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
}

.biz-pricing-section .container {
    position: relative;
    z-index: 1;
}

.biz-pricing-section__title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(1.35rem, 3.5vw, 1.85rem);
    color: #ffffff;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.25;
}

.biz-pricing-card {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 18px !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.biz-pricing-card:hover {
    border-color: rgba(0, 255, 251, 0.2) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.biz-pricing-card--popular {
    border-color: rgba(124, 58, 237, 0.35) !important;
    box-shadow: 0 0 32px rgba(124, 58, 237, 0.12);
}

.biz-pricing-card__badge {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    padding: 0.25rem 0.55rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #e9d5ff;
    /* background: linear-gradient(135deg, rgba(124, 58, 237, 0.85) 0%, rgba(91, 33, 182, 0.9) 100%); */
    border-radius: 6px;
    border: 1px solid rgba(196, 181, 253, 0.35);
    z-index: 2;
}

.biz-pricing-card__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
}

.biz-pricing-card__head-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #60a5fa;
    background: rgba(37, 99, 235, 0.22);
    border: 1px solid rgba(96, 165, 250, 0.35);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.biz-pricing-card__name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #ffffff;
}

.biz-pricing-card__list {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(200, 210, 220, 0.95);
}

.biz-pricing-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.45rem;
}

.biz-pricing-card__list li:last-child {
    margin-bottom: 0;
}

.biz-pricing-card__list .fa-check {
    color: #34d399;
    margin-top: 0.2rem;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.biz-pricing-card__price {
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.biz-pricing-card__amount {
    font-weight: 800;
    font-size: 1.65rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.biz-pricing-card__period {
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(176, 184, 193, 0.85);
}

.biz-pricing-card__amount--custom {
    font-size: 1.35rem;
    font-weight: 700;
}

.biz-pricing-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.65rem 1.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 55%, #6d28d9 100%);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
    transition: filter 0.2s ease, transform 0.15s ease;
}

.biz-pricing-card__btn:hover {
    filter: brightness(1.08);
    color: #ffffff !important;
}

.biz-pricing-card__btn--ghost {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: none;
}

.biz-pricing-card__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 255, 251, 0.35);
    filter: none;
}

@media (max-width: 767px) {
    .biz-pricing-card__badge {
        top: 0.65rem;
        right: 0.65rem;
    }
}

/* --- For Business: final CTA --- */
.biz-final-cta {
    background: radial-gradient(ellipse 120% 80% at 50% 100%, #0a1020 0%, #050510 45%, #020208 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.biz-final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 45% at 50% 55%, rgba(37, 99, 235, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 50% 35% at 50% 60%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.biz-final-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.35) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 20%, rgba(255, 255, 255, 0.25) 0%, transparent 100%),
        radial-gradient(1px 1px at 40% 80%, rgba(255, 255, 255, 0.18) 0%, transparent 100%);
    background-size: 100% 100%;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.biz-final-cta .container {
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .biz-final-cta__pad {
        padding-top: 4rem !important;
        padding-bottom: 4.5rem !important;
    }
}

.biz-final-cta__inner {
    max-width: 40rem;
}

.biz-final-cta__title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 4vw, 2.15rem);
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 0.85rem;
}

.biz-final-cta__lead {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.6;
    color: rgba(230, 237, 245, 0.92);
    margin: 0 auto;
    max-width: 34rem;
}

.biz-final-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 10px;
    transition: filter 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    min-width: 11rem;
}

.biz-final-cta__btn--primary {
    color: #ffffff !important;
    border: none;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 55%, #6d28d9 100%);
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.4);
}

.biz-final-cta__btn--primary:hover {
    filter: brightness(1.08);
    color: #ffffff !important;
}

.biz-final-cta__btn--ghost {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: none;
}

.biz-final-cta__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 255, 251, 0.35);
    color: #f0fdff !important;
}

@media (max-width: 575px) {
    .biz-final-cta__btn {
        width: 100%;
        min-width: 0;
    }
}

/* Match hero .search-btn; override global mobile full-width so CTA row can sit two-up */
.biz-final-cta .search-btn {
    width: auto;
    min-width: 0;
}

@media (max-width: 575px) {
    .biz-final-cta .search-btn {
        width: 100%;
    }
}

/* --- For Business: compact marketplace tools row --- */
.biz-mp {
    padding-top: 1rem;
    padding-bottom: 0.75rem;
}

.biz-mp__inner {
    padding-top: 0.65rem;
    border-top: 1px solid var(--rgba-white-008);
}

.biz-mp__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    margin-bottom: 0.6rem;
}

.biz-mp__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-white);
    margin: 0;
}

.biz-mp__browse {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #5b9fff;
    text-decoration: none;
    white-space: nowrap;
}

.biz-mp__browse:hover {
    text-decoration: underline;
    color: #7db0ff;
}

.biz-mp__viewport {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg,
            transparent 0%,
            #000 8%,
            #000 92%,
            transparent 100%);
    -webkit-mask-image: linear-gradient(90deg,
            transparent 0%,
            #000 8%,
            #000 92%,
            transparent 100%);
}

.biz-mp__track {
    display: flex;
    width: max-content;
    animation: biz-mp-scroll 55s linear infinite;
}

.biz-mp__viewport:hover .biz-mp__track {
    animation-play-state: paused;
}

@keyframes biz-mp-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.biz-mp__row {
    display: flex;
    flex-shrink: 0;
    align-items: stretch;
    gap: 0.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.biz-mp__item {
    flex-shrink: 0;
}

.biz-mp__tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    width: 8.5rem;
    padding: 0.55rem 0.5rem 0.45rem;
    background: var(--rgba-panel-07);
    border: 1px solid var(--rgba-white-008);
    border-radius: 10px;
    text-align: center;
}

.biz-mp__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 2.5rem;
    flex-shrink: 0;
}

.biz-mp__img {
    max-height: 2.35rem;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.biz-mp__initials {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 8px;
    background: rgba(15, 92, 229, 0.2);
    color: #5b9fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
}

.biz-mp__name {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-text-soft);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .biz-mp__viewport {
        mask-image: none;
        -webkit-mask-image: none;
        overflow: visible;
    }

    .biz-mp__track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }

    .biz-mp__row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .biz-mp__row + .biz-mp__row {
        display: none;
    }
}

/* --- Flash toasts (Django messages) --- */
.sp-toast-stack {
    position: fixed;
    bottom: 1.25rem;
    right: 1rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: min(20rem, calc(100vw - 2rem));
    pointer-events: none;
}

.sp-toast-stack .sp-toast {
    pointer-events: auto;
}

.sp-toast {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.65rem 0.75rem 0.65rem 0.85rem;
    border-radius: 8px;
    border: 1px solid var(--rgba-white-012);
    background: var(--rgba-panel-07);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 28px var(--rgba-black-07);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.4;
    color: var(--color-white);
    opacity: 0;
    transform: translateX(110%);
    transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.sp-toast--visible {
    opacity: 1;
    transform: translateX(0);
}

.sp-toast__icon {
    flex-shrink: 0;
    margin-top: 0.1rem;
    font-size: 1rem;
}

.sp-toast--success .sp-toast__icon {
    color: var(--color-green-accent);
}

.sp-toast--error .sp-toast__icon {
    color: #f87171;
}

.sp-toast--warning .sp-toast__icon {
    color: var(--color-amber);
}

.sp-toast--info .sp-toast__icon,
.sp-toast--debug .sp-toast__icon {
    color: var(--rgb-link-blue);
}

.sp-toast__text {
    margin: 0;
    flex: 1;
    min-width: 0;
    color: var(--rgba-white-092);
}

.sp-toast__close {
    flex-shrink: 0;
    margin: -0.2rem -0.15rem 0 0;
    padding: 0.15rem 0.35rem;
    border: none;
    background: transparent;
    color: var(--color-text-tertiary);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 4px;
    transition: color 0.15s ease, background 0.15s ease;
}

.sp-toast__close:hover {
    color: var(--color-white);
    background: var(--rgba-white-008);
}

.sp-toast--success {
    border-color: rgba(0, 255, 136, 0.25);
}

.sp-toast--error {
    border-color: rgba(248, 113, 113, 0.35);
}

.sp-toast--warning {
    border-color: rgba(255, 174, 0, 0.3);
}

@media (max-width: 480px) {
    .sp-toast-stack {
        left: 1rem;
        right: 1rem;
        max-width: none;
    }

    .sp-toast {
        transform: translateY(120%);
    }

    .sp-toast--visible {
        transform: translateY(0);
    }
}

/* --- About page (/about/) --- */
.about-page {
    background: linear-gradient(180deg, var(--color-bg-hero) 0%, var(--color-black-soft) 55%, #0a0a12 100%);
    color: var(--color-white);
}

.about-page__hero {
    border-bottom: 1px solid var(--rgba-white-008);
}

.about-page__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rgb-link-blue);
    margin-bottom: 0.75rem;
}

.about-page__eyebrow--on-dark {
    color: var(--rgba-cyan-05);
}

.about-page__title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(1.85rem, 4.2vw, 2.5rem);
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.about-page__lead {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--color-text-secondary);
    margin: 0;
}

.about-page__section {
    padding: 3.25rem 0;
}

.about-page__section--alt {
    background: var(--rgba-black-05);
    border-block: 1px solid var(--rgba-white-008);
}

/* About: Our Mission — two-column, dark nebula, pill CTA, image */
.about-page__section--mission {
    position: relative;
    padding: clamp(2.75rem, 6vw, 4.25rem) 0;
    background:
        radial-gradient(ellipse 90% 55% at 50% 0%, rgba(37, 99, 235, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 70% 45% at 80% 100%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #050510 0%, #070718 45%, #050510 100%);
    overflow: hidden;
}

.about-page__section--mission::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 15% 25%, rgba(255, 255, 255, 0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 42% 78%, rgba(255, 255, 255, 0.12) 0%, transparent 100%),
        radial-gradient(1px 1px at 88% 40%, rgba(255, 255, 255, 0.15) 0%, transparent 100%),
        radial-gradient(1px 1px at 62% 12%, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    background-size: 100% 100%;
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}

.about-page__section--mission::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 229, 255, 0.15) 20%,
            rgba(56, 189, 248, 0.55) 50%,
            rgba(0, 229, 255, 0.15) 80%,
            transparent 100%);
    box-shadow: 0 0 28px rgba(34, 211, 238, 0.35), 0 0 48px rgba(37, 99, 235, 0.2);
    pointer-events: none;
    z-index: 1;
}

.about-page__section--mission .hero-container {
    position: relative;
    z-index: 2;
}

.about-page__section--mission .hero-title {
    font-size: clamp(1.65rem, 3.8vw, 2.15rem);
    margin-bottom: 1.5rem;
}

.about-page__section--mission .hero-description {
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.96);
    margin-bottom: 1.15rem;
}

.about-page__section--mission .hero-description strong {
    font-weight: 700;
    color: #ffffff;
}

.about-page__section--mission .search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.85rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 6px;
    background: var(--color-hero-accent);
    border: none;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-page__section--mission .search-btn:hover {
    color: #ffffff !important;
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.5);
    transform: translateY(-2px);
}

.about-page__mission-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(1.65rem, 3.8vw, 2.15rem);
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.about-page__mission-lead {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    font-weight: 500;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.96);
    margin: 0 0 1.15rem;
}

.about-page__mission-lead strong {
    font-weight: 700;
    color: #ffffff;
}

.about-page__mission-body {
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(230, 237, 245, 0.88);
    margin: 0 0 1.75rem;
    max-width: 34rem;
}

.about-page__mission-body strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.about-page__mission-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.85rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 42%, #4f46e5 78%, #4338ca 100%);
    border: 1px solid rgba(56, 189, 248, 0.45);
    box-shadow:
        0 0 0 1px rgba(14, 165, 233, 0.15),
        0 4px 28px rgba(37, 99, 235, 0.42),
        0 0 32px rgba(59, 130, 246, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.about-page__mission-btn:hover {
    color: #ffffff !important;
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px rgba(34, 211, 238, 0.35),
        0 6px 32px rgba(37, 99, 235, 0.5),
        0 0 40px rgba(34, 211, 238, 0.28);
}

.about-page__mission-figure {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 24px 56px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.about-page__mission-img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    vertical-align: middle;
}

@media (max-width: 991px) {
    .about-page__section--mission {
        padding: 3rem 20px;
    }

    .about-page__section--mission .hero-title {
        font-size: 1.85rem;
        margin-bottom: 1.3rem;
    }

    .about-page__section--mission .hero-description {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .about-page__mission-figure {
        max-width: 36rem;
        margin-left: auto;
        margin-right: auto;
    }
}

/* About: Our Story + stats */
.about-page__section--story {
    position: relative;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(37, 99, 235, 0.1) 0%, transparent 55%),
        linear-gradient(180deg, #06060f 0%, #050510 100%);
    overflow: hidden;
}

.about-page__section--story::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 18% 22%, rgba(255, 255, 255, 0.12) 0%, transparent 100%),
        radial-gradient(1px 1px at 72% 65%, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0.5;
    pointer-events: none;
}

.about-page__section--story .container {
    position: relative;
    z-index: 1;
}

.about-page__story-head {
    max-width: 44rem;
    margin: 0 auto 2.5rem;
}

.about-page__story-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(1.65rem, 3.8vw, 2.1rem);
    color: #ffffff;
    margin: 0 0 0.65rem;
    letter-spacing: -0.02em;
}

.about-page__story-kicker {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 500;
    color: rgba(230, 237, 245, 0.9);
    margin: 0 0 1.25rem;
}

.about-page__story-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    line-height: 1.75;
    color: rgba(200, 210, 225, 0.92);
    margin: 0;
}

.about-page__story-stats {
    max-width: min(100%, 960px);
    margin: 0 auto;
    padding: 0 4px;
}

.about-page__story-stats .trust-stats-bar {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

@media (max-width: 767.98px) {
    .about-page__story-stats .trust-stats-bar {
        flex-direction: column;
    }

    .about-page__story-stats .trust-stat {
        border-right: none;
        border-bottom: 1px solid var(--rgba-white-012);
    }

    .about-page__story-stats .trust-stat:last-child {
        border-bottom: none;
    }
}

/* About: Our Partners */
.about-page__section--partners {
    position: relative;
    background: linear-gradient(180deg, #050510 0%, #070718 50%, #050510 100%);
    border-block: 1px solid rgba(255, 255, 255, 0.05);
}

.about-page__partners-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 3.2vw, 1.95rem);
    color: #ffffff;
    margin: 0 0 2rem;
}

.about-page__partners-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2.25rem 3.25rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

@media (max-width: 768px) {
    .about-page__partners-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 1.5rem;
        padding: 1rem 0;
        -webkit-overflow-scrolling: touch;
    }
}

.about-page__partner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    flex-shrink: 0;
}

.about-page__partner-img {
    display: block;
    height: clamp(2.5rem, 6.5vw, 3.75rem);
    width: auto;
    max-width: min(14rem, 52vw);
    object-fit: contain;
    opacity: 0.92;
    transition: opacity 0.2s ease;
}

.about-page__partner-img:hover {
    opacity: 1;
}

/* About: Our Values */
.about-page__section--values {
    position: relative;
    background:
        radial-gradient(ellipse 70% 45% at 50% 100%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #06060c 0%, #050508 100%);
}

.about-page__values-head {
    max-width: 36rem;
    margin: 0 auto 2.5rem;
}

.about-page__values-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 3.2vw, 1.95rem);
    color: #ffffff;
    margin: 0 0 0.6rem;
}

.about-page__values-kicker {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(180, 190, 205, 0.9);
    margin: 0;
    line-height: 1.5;
}

.about-page__value-card {
    height: 100%;
    padding: 1.75rem 1.35rem 1.6rem;
    text-align: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.08);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.about-page__value-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(56, 189, 248, 0.25);
    box-shadow: 0 0 32px rgba(34, 211, 238, 0.12);
}

.about-page__value-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.75rem;
    color: #38bdf8;
    background: radial-gradient(circle at 30% 30%, rgba(56, 189, 248, 0.2) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(56, 189, 248, 0.25);
    box-shadow: 0 0 24px rgba(56, 189, 248, 0.15);
}

.about-page__value-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #ffffff;
    margin: 0 0 0.65rem;
}

.about-page__value-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(200, 210, 225, 0.9);
    margin: 0;
}

.about-page__h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    color: var(--color-white);
    margin-bottom: 1rem;
}

.about-page__h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 0.65rem;
}

.about-page__p {
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--color-text-secondary);
}

.about-page__section-head .about-page__h2 {
    margin-bottom: 0.5rem;
}

.about-page__section-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--color-text-tertiary);
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.55;
}

.about-page__checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-page__checklist li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--color-text-secondary);
}

.about-page__check-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--rgba-cyan-015);
    color: var(--color-cyan);
    font-size: 0.95rem;
}

.about-page__section--quote {
    padding: 2.5rem 0;
}

.about-page__quote-card {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--rgba-cyan-03);
    background: linear-gradient(145deg, var(--rgba-panel-dark-07) 0%, var(--rgba-purple-bg-09) 100%);
    box-shadow: 0 12px 40px var(--rgba-black-06);
}

.about-page__quote-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 3.5vw, 2.15rem);
    background: linear-gradient(90deg, var(--color-cyan) 0%, var(--rgb-link-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.75rem;
}

.about-page__quote-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--rgba-white-09);
    margin: 0;
}

.about-page__feature-card {
    height: 100%;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--rgba-white-008);
    background: var(--rgba-panel-07);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-page__feature-card:hover {
    border-color: var(--rgba-cyan-02);
    box-shadow: 0 8px 32px var(--rgba-black-05);
}

.about-page__feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: var(--rgba-violet-04);
    color: var(--color-mint-pale);
    font-size: 1.1rem;
}

.about-page__footnote {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: var(--color-text-tertiary);
    margin: 2rem 0 0;
    text-align: center;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.about-page__ecocard {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--rgba-white-012);
    background: var(--rgba-panel-07);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.about-page__ecocard:hover {
    border-color: var(--rgba-cyan-03);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px var(--rgba-black-06);
    color: inherit;
}

.about-page__ecocard-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    max-width: 100%;
    min-height: 3.25rem;
    margin-bottom: 0.75rem;
}

.about-page__ecocard-logo {
    display: block;
    flex-shrink: 0;
    max-width: 100%;
    max-height: 3rem;
    width: auto;
    height: auto;
    object-fit: contain;
}

.about-page__ecocard-kicker {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rgb-link-blue);
    margin-bottom: 0.35rem;
}

.about-page__ecocard-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.about-page__ecocard-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--color-text-secondary);
    flex: 1;
    margin-bottom: 1rem;
}

.about-page__ecocard-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-cyan);
}

.about-page__ecocard:hover .about-page__ecocard-link {
    color: var(--color-aqua-bright);
}

.about-page__cta {
    border-top: 1px solid var(--rgba-white-008);
    background: var(--rgba-gradient-09);
}

.about-page__cta-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.about-page__cta-lead {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-secondary);
    max-width: 32rem;
    margin: 0 auto 1.5rem;
    font-size: 0.98rem;
    line-height: 1.55;
}

.about-page__cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.about-page__btn {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.about-page__btn--primary {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-blue-electric) 100%);
    color: var(--color-black);
    border: none;
}

.about-page__btn--primary:hover {
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--rgba-cyan-03);
}

.about-page__btn--ghost {
    background: transparent;
    color: var(--color-white);
    border: 1px solid var(--rgba-white-03);
}

.about-page__btn--ghost:hover {
    color: var(--color-cyan);
    border-color: var(--rgba-cyan-03);
}