:root {
    --topbar-h: 30px;
    --navbar-h: 64px;

    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    --hero-font: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

    --topbar-bg: #171b23;
    --navbar-bg: #171b23;
    --navbar-bg-2: #1d2230;

    --text-dark: #463d3c;
    --white: #ffffff;
    --muted: rgba(255, 255, 255, 0.66);

    --accent: #df6a49;
    --accent-hover: #cf5c3c;
    --label: #ef7a58;

    --border-light: rgba(0, 0, 0, 0.06);
    --border-dark: rgba(255, 255, 255, 0.07);
    --item-hover: rgba(255, 255, 255, 0.05);

    --container-pad: 68px;

    --ss-bg: #1C212E;
    --ss-surface: #232937;
    --ss-border: rgba(255, 255, 255, .07);
    --ss-text: #E8EAF0;
    --ss-muted: #6B7491;
    --ss-c0: #7C6AF7;
    --ss-c1: #4ECDC4;
    --ss-c2: #F7C948;
}

/* =========================================================
   Base
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    min-width: 0;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: var(--font);
    overflow-x: clip;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    background: #fdfdfd;
    padding-top: calc(var(--topbar-h) + var(--navbar-h));
    font-family: var(--font);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img,
svg,
video,
canvas {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

/* =========================================================
   Header
   ========================================================= */

#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 250;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

#site-header.hide-topbar {
    transform: translateY(calc(-1 * var(--topbar-h)));
}

/* ---------------------------------------------------------
   Topbar
   --------------------------------------------------------- */

#topbar {
    background: var(--topbar-bg);
    border-bottom: 1px solid var(--border-dark);
}

#topbar-inner {
    height: var(--topbar-h);
    width: 100%;
    padding: 0 var(--container-pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

#topbar-left a,
.topbar-login,
.topbar-lang {
    color: var(--white);
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    opacity: .86;
    transition: opacity .18s ease, color .18s ease;
}

#topbar-left a:hover,
.topbar-login:hover,
.topbar-lang:hover {
    opacity: 1;
    color: var(--accent);
}

#topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-sep {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, .18);
    display: block;
}

.topbar-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.topbar-lang-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    opacity: .86;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    transition: opacity .18s ease, color .18s ease;
}

.topbar-lang-btn:hover,
.has-dropdown.active .topbar-lang-btn {
    opacity: 1;
    color: var(--accent);
}

.topbar-lang-btn .fi,
.topbar-dropdown .fi {
    width: 14px;
    height: 10px;
    border-radius: 1px;
    object-fit: cover;
    flex-shrink: 0;
}

.topbar-lang-btn .chv {
    font-size: 9px;
    margin-top: 1px;
    transition: transform .25s ease;
}

.has-dropdown.active .chv {
    transform: rotate(180deg);
}

.topbar-shell {
    position: absolute;
    top: 100%;
    left: -11px;
    right: auto;
    width: max-content;
    min-width: 110px;
    height: 0;
    overflow: hidden;
    background: #171b23;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
    z-index: 550;
    transition: height .4s cubic-bezier(.22, 1, .36, 1);
}

.topbar-shell::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
}

.topbar-shell::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform .4s ease;
}

.has-dropdown.active .topbar-shell::after {
    transform: scaleX(1);
}

.topbar-dropdown {
    opacity: 0;
    display: flex;
    flex-direction: column;
    padding: 6px 0;
    transition: opacity .3s ease;
}

.has-dropdown.active .topbar-dropdown {
    opacity: 1;
}

.topbar-dropdown a {
    padding: 8px 10px 8px 11px;
    font-size: 11px;
    font-weight: 500;
    color: var(--white);
    opacity: .8;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    transition: opacity .2s ease, background .2s ease, color .2s ease;
}

.topbar-dropdown a:hover,
.topbar-dropdown a.active {
    opacity: 1;
    color: var(--accent);
}

.topbar-dropdown a:hover {
    background: rgba(255, 255, 255, .05);
}

/* ---------------------------------------------------------
   Topbar Socials
   --------------------------------------------------------- */

.topbar-socials {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-right: 4px;
}

.topbar-socials a {
    color: var(--white);
    font-size: 13px;
    opacity: 0.75;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar-socials a:hover {
    opacity: 1;
    transform: translateY(-1px) scale(1.15);
}

.topbar-socials a.fb:hover {
    color: #1877F2;
}

.topbar-socials a.tw:hover {
    color: #ffffff;
}

/* X/Twitter */
.topbar-socials a.ig:hover {
    color: #E4405F;
}

.topbar-socials a.li:hover {
    color: #0A66C2;
}

.topbar-socials a.yt:hover {
    color: #FF0000;
}

.topbar-socials a.wp:hover {
    color: #25D366;
}

.topbar-socials a.wp {
    font-size: 14.5px;
    opacity: 0.9;
}

/* ---------------------------------------------------------
   Navbar
   --------------------------------------------------------- */

#navbar {
    --mega-panel-bg: #fdfdfd;
    --mega-panel-border: rgba(0, 0, 0, .05);
    --mega-shadow: 0 24px 48px rgba(0, 0, 0, .08), 0 12px 24px rgba(0, 0, 0, .04);
    --mega-title: #1a1a1a;
    --mega-desc: #555555;
    --mega-icon-bg: #e2e2e2;
    --mega-icon-color: #1a1413;
    --mega-item-hover-bg: #f9f9f9;
    --mega-item-hover-border: rgba(0, 0, 0, .08);
    --mega-divider: rgba(0, 0, 0, .06);
    --mega-card-radial1: radial-gradient(circle at top right, rgba(223, 106, 73, .08), transparent 38%);
    --mega-card-radial2: radial-gradient(circle at bottom left, rgba(0, 0, 0, .02), transparent 26%);
    --mega-card-linear: linear-gradient(180deg, #f9f9f9, #ffffff);
    --mega-card-border: rgba(0, 0, 0, .06);
    --mega-link-bg: #f0f0f0;
    --mega-link-color: #1a1a1a;
    --mega-screen-bg: #f9f9f9;
    --mega-screen-border: rgba(0, 0, 0, .06);
    --mega-tag-bg: #f0f0f0;
    --mega-tag-border: rgba(0, 0, 0, .05);

    height: var(--navbar-h);
    position: relative;
    z-index: 150;
    background: #fdfdfd;
    border-bottom: none;
    transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

#navbar.scrolled {
    --mega-panel-bg: linear-gradient(90deg, var(--navbar-bg) 0%, var(--navbar-bg-2) 100%);
    --mega-panel-border: var(--border-dark);
    --mega-shadow: 0 30px 70px rgba(0, 0, 0, .45), 0 8px 24px rgba(0, 0, 0, .18);
    --mega-title: var(--white);
    --mega-desc: var(--muted);
    --mega-icon-bg: rgba(255, 255, 255, .04);
    --mega-icon-color: rgba(255, 255, 255, .52);
    --mega-item-hover-bg: var(--item-hover);
    --mega-item-hover-border: rgba(255, 255, 255, .04);
    --mega-divider: rgba(255, 255, 255, .06);
    --mega-card-radial1: radial-gradient(circle at top right, rgba(223, 106, 73, .14), transparent 38%);
    --mega-card-radial2: radial-gradient(circle at bottom left, rgba(255, 255, 255, .04), transparent 26%);
    --mega-card-linear: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .02));
    --mega-card-border: rgba(255, 255, 255, .07);
    --mega-link-bg: rgba(255, 255, 255, .05);
    --mega-link-color: var(--white);
    --mega-screen-bg: rgba(255, 255, 255, .035);
    --mega-screen-border: rgba(255, 255, 255, .05);
    --mega-tag-bg: rgba(255, 255, 255, .045);
    --mega-tag-border: rgba(255, 255, 255, .05);

    background: linear-gradient(90deg, var(--navbar-bg) 0%, var(--navbar-bg-2) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

#navbar-inner {
    width: 100%;
    height: 100%;
    padding: 0 var(--container-pad);
    display: flex;
    align-items: center;
}

#nav-logo,
#mobile-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 27px;
    width: auto;
    display: block;
    filter: invert(1) brightness(.2);
    transition: filter .3s ease;
}

#navbar.scrolled .nav-logo-img {
    filter: none;
}

#nav-links {
    height: 100%;
    display: flex;
    align-items: center;
    flex: 1;
    margin-left: 36px;
}

#nav-links>li {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link-plain,
.nav-btn {
    height: var(--navbar-h);
    display: inline-flex;
    align-items: center;
    padding: 0 15px;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .2px;
    white-space: nowrap;
    transition: color .18s ease;
}

.nav-link-plain:hover,
.nav-btn:hover,
.has-mega.active .nav-btn {
    color: var(--accent);
}

#navbar.scrolled .nav-link-plain,
#navbar.scrolled .nav-btn {
    color: var(--white);
}

#navbar.scrolled .nav-link-plain:hover,
#navbar.scrolled .nav-btn:hover,
#navbar.scrolled .has-mega.active .nav-btn {
    color: var(--accent);
}

.nav-btn {
    gap: 5px;
}

.nav-chevron {
    font-size: 9px;
    transition: transform .28s ease;
}

.has-mega {
    position: static;
}

.has-mega.active .nav-chevron {
    transform: rotate(180deg);
}

#nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    flex-shrink: 0;
}

.btn-primary-nav {
    height: 40px;
    padding: 0 21px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, .08);
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .08) inset;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.btn-secondary-nav {
    height: 40px;
    padding: 0 21px;
    border-radius: 999px;
    border: 1.5px solid var(--accent);
    background: transparent;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition: all .2s ease;
}

.btn-secondary-nav:hover {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(223, 106, 73, 0.15);
    transform: translateY(-1px);
}

#navbar.scrolled .btn-secondary-nav {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

#navbar.scrolled .btn-secondary-nav:hover {
    background: var(--white);
    color: #111620;
    border-color: var(--white);
}

@media (max-width: 1160px) {
    .btn-secondary-nav {
        padding: 0 15px;
        font-size: 13px;
    }
}

.btn-primary-nav:hover {
    color: var(--white);
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(223, 106, 73, .18);
}

.btn-primary-nav .bi {
    font-size: 12px;
}

/* =========================================================
   Mega Menu
   ========================================================= */

#shared-mega-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 120;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
        opacity .34s ease,
        transform .46s cubic-bezier(.22, 1, .36, 1),
        visibility .34s ease;
}

#shared-mega-panel.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-1px);
}

#shared-mega-shell {
    position: relative;
    height: 0;
    overflow: hidden;
    background: var(--mega-panel-bg);
    box-shadow: var(--mega-shadow);
    transition: height .88s cubic-bezier(.22, 1, .36, 1);
}

#shared-mega-shell::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .44s ease, opacity .28s ease;
}

#shared-mega-panel.open #shared-mega-shell::after {
    opacity: 1;
    transform: scaleX(1);
}

#shared-mega-content {
    opacity: 0;
    transition: opacity .22s ease;
}

#shared-mega-content.is-visible {
    opacity: 1;
}

.mega-wrap {
    max-width: 1480px;
    margin: 0 auto;
    padding: 38px 56px 40px;
    gap: 0;
}

.mega-label {
    display: block;
    margin-bottom: 16px;
    color: var(--label);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1.55px;
    text-transform: uppercase;
}

.mega-col {
    min-width: 0;
}

.mega-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 14px;
    border-radius: 12px;
    color: inherit;
    transition: background .22s ease, transform .22s ease, box-shadow .22s ease;
}

.mega-item:hover {
    background: var(--mega-item-hover-bg);
    transform: translateX(4px);
    box-shadow: inset 0 0 0 1px var(--mega-item-hover-border);
}

.mega-item>i {
    width: 38px;
    height: 38px;
    min-width: 38px;
    margin-top: 1px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--mega-icon-bg);
    color: var(--mega-icon-color);
    font-size: 15px;
    transition: color .2s ease, transform .2s ease, background .2s ease;
}

.mega-item:hover>i {
    color: var(--accent);
    background: rgba(223, 106, 73, .1);
    transform: scale(1.05);
}

.mi-title {
    color: var(--mega-title);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .1px;
}

.mi-desc {
    margin-top: 5px;
    color: var(--mega-desc);
    font-size: 11.5px;
    line-height: 1.5;
}

.mega-kurumsal {
    display: grid;
    grid-template-columns: 1.05fr 1.05fr .9fr;
    column-gap: 30px;
}

.mega-kurumsal .mega-col+.mega-col,
.mega-cozumler .mega-col+.mega-col,
.mega-hizmetler .mega-col+.mega-col {
    border-left: 1px solid var(--mega-divider);
}

.mega-kurumsal .mega-col+.mega-col {
    padding-left: 30px;
}

.mega-cozumler {
    display: grid;
    grid-template-columns: .82fr 1fr 1fr;
    column-gap: 30px;
}

.mega-cozumler .mega-col+.mega-col {
    padding-left: 30px;
}

.mega-hizmetler {
    display: grid;
    grid-template-columns: 1fr 1fr .86fr;
    column-gap: 32px;
}

.mega-hizmetler .mega-col+.mega-col {
    padding-left: 32px;
}

.mega-col-card {
    display: flex;
    align-items: stretch;
}

.mega-feature-card,
.mega-mini-card {
    width: 100%;
    border: 1px solid var(--mega-card-border);
    background: var(--mega-card-linear);
}

.mega-feature-card {
    min-height: 100%;
    border-radius: 18px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    background: var(--mega-card-radial1), var(--mega-card-linear);
}

.mega-feature-badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(223, 106, 73, .1);
    color: var(--label);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.mega-feature-title {
    color: var(--mega-title);
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 12px;
}

.mega-feature-desc {
    color: var(--mega-desc);
    font-size: 12.5px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.mega-feature-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}

.mega-feature-point {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--mega-title);
    font-size: 12.5px;
}

.mega-feature-point i {
    color: var(--accent);
    font-size: 14px;
}

.mega-feature-link,
.mega-mini-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--mega-link-color);
    font-size: 13px;
    font-weight: 700;
    padding: 12px 16px;
    border-radius: 999px;
    transition: background .22s ease, transform .22s ease, color .22s ease;
}

.mega-feature-link {
    margin-top: auto;
    background: var(--mega-link-bg);
    align-self: flex-start;
}

.mega-feature-link i,
.mega-mini-cta i {
    transition: transform .22s ease, color .22s ease;
}

.mega-feature-link:hover,
.mega-mini-cta:hover {
    color: var(--accent);
    transform: translateY(-1px) scale(1.03);
}

.mega-feature-link:hover {
    background: rgba(223, 106, 73, .14);
}

.mega-feature-link:hover i,
.mega-mini-cta:hover i {
    color: var(--accent);
    transform: scale(1.14) rotate(-8deg);
}

.mega-col-visual {
    padding-right: 4px;
}

.mega-visual-card {
    min-height: 340px;
    display: flex;
    flex-direction: column;
    padding: 18px;
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    background: var(--mega-card-radial1), var(--mega-card-radial2), var(--mega-card-linear);
    border: 1px solid var(--mega-card-border);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.mega-visual-card:hover {
    transform: translateY(-2px);
    border-color: rgba(223, 106, 73, .22);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .18);
}

.mega-visual-badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(223, 106, 73, .1);
    color: var(--label);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.mega-visual-top {
    margin-bottom: 14px;
}

.mega-visual-title {
    color: var(--mega-title);
    font-size: 22px;
    line-height: 1.16;
    font-weight: 700;
    margin-bottom: 10px;
}

.mega-visual-desc {
    color: var(--mega-desc);
    font-size: 12px;
    line-height: 1.5;
    max-width: 92%;
}

.mega-visual-screen {
    margin-bottom: 14px;
    border-radius: 18px;
    padding: 10px;
    background: var(--mega-screen-bg);
    border: 1px solid var(--mega-screen-border);
}

.mega-visual-image-wrap {
    padding: 0;
    overflow: hidden;
    border-radius: 18px;
    background: var(--mega-screen-bg);
}

.mega-visual-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform .35s ease;
}

.mega-visual-card:hover .mega-visual-image {
    transform: scale(1.03);
}

.mega-visual-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    margin-bottom: 12px;
}

.mega-visual-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--mega-tag-bg);
    border: 1px solid var(--mega-tag-border);
    color: var(--mega-link-color);
    font-size: 10.5px;
    font-weight: 600;
    line-height: 1;
}

.mega-visual-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--mega-link-color);
    font-size: 12.5px;
    font-weight: 700;
    transition: transform .22s ease, color .22s ease;
}

.mega-visual-cta i {
    transition: transform .22s ease, color .22s ease;
}

.mega-visual-card:hover .mega-visual-cta {
    color: var(--accent);
    transform: translateX(2px) scale(1.04);
}

.mega-visual-card:hover .mega-visual-cta i {
    color: var(--accent);
    transform: scale(1.14) rotate(-8deg);
}

.mega-mini-card {
    border-radius: 18px;
    padding: 18px 18px 16px;
}

.mega-item-compact {
    padding-left: 8px;
    padding-right: 8px;
}

.mega-mini-divider {
    height: 1px;
    background: var(--mega-divider);
    margin: 14px 0 16px;
}

.mega-mini-cta {
    background: rgba(223, 106, 73, .12);
}

.mega-mini-cta:hover {
    background: rgba(223, 106, 73, .18);
}

#mega-backdrop {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .22);
    z-index: 110;
    opacity: 0;
    visibility: hidden;
    transition: opacity .24s ease, visibility .24s ease;
}

#mega-backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* =========================================================
   Mobile Menu
   ========================================================= */

#mobile-toggle {
    display: none;
    margin-left: auto;
    border: none;
    background: transparent;
    color: var(--white);
    width: 46px;
    height: 46px;
    padding: 0;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    z-index: 351;
}

.mobile-toggle-lines {
    width: 24px;
    height: 18px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-toggle-lines span {
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .9);
    transition:
        transform .45s cubic-bezier(.22, 1, .36, 1),
        opacity .28s ease,
        top .45s cubic-bezier(.22, 1, .36, 1),
        background .3s ease;
}

#navbar.scrolled .mobile-toggle-lines span {
    background: rgba(255, 255, 255, .96);
}

.mobile-toggle-lines span:nth-child(1) {
    top: 0;
}

.mobile-toggle-lines span:nth-child(2) {
    top: 8px;
}

.mobile-toggle-lines span:nth-child(3) {
    top: 16px;
}

#mobile-toggle.active .mobile-toggle-lines span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
}

#mobile-toggle.active .mobile-toggle-lines span:nth-child(2) {
    opacity: 0;
}

#mobile-toggle.active .mobile-toggle-lines span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
}

#mobile-overlay {
    position: fixed;
    top: var(--navbar-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 300;
    background: rgba(0, 0, 0, .14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .68s ease, visibility .68s ease;
}

#mobile-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#mobile-menu {
    --mob-bg: #fdfdfd;
    --mob-border: rgba(0, 0, 0, .05);
    --mob-text: #1a1a1a;
    --mob-text-muted: rgba(0, 0, 0, .55);
    --mob-hover-bg: rgba(0, 0, 0, .03);
    --mob-sub-bg: #f2f2f2;
    --mob-cta-bg: radial-gradient(circle at top right, rgba(223, 106, 73, .08), transparent 38%), linear-gradient(180deg, #f9f9f9, #ffffff);
    --mob-cta-text: #555555;
    --mob-icon: #555555;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: calc(100dvh - var(--navbar-h));
    background: var(--mob-bg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform-origin: top center;
    transform: translateY(-18px);
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transition:
        transform 1.08s cubic-bezier(.22, 1, .36, 1),
        opacity .82s ease,
        clip-path 1.08s cubic-bezier(.22, 1, .36, 1);
}

#mobile-overlay.open #mobile-menu {
    transform: translateY(0);
    opacity: 1;
    clip-path: inset(0 0 0 0);
}

body.scrolled #mobile-menu {
    --mob-bg: linear-gradient(180deg, #141924 0%, #111620 100%);
    --mob-border: rgba(255, 255, 255, .13);
    --mob-text: #ffffff;
    --mob-text-muted: rgba(255, 255, 255, .58);
    --mob-hover-bg: rgba(255, 255, 255, .02);
    --mob-sub-bg: rgba(255, 255, 255, .016);
    --mob-cta-bg: radial-gradient(circle at top right, rgba(223, 106, 73, .16), transparent 38%), linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
    --mob-cta-text: rgba(255, 255, 255, .82);
    --mob-icon: rgba(255, 255, 255, .78);
}

#mobile-nav-body {
    flex: 1;
    padding: 0 0 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    opacity: 0;
    display: flex;
    flex-direction: column;
    transition: opacity .62s ease;
    transition-delay: 0s;
}

#mobile-overlay.open #mobile-nav-body {
    opacity: 1;
    transition-delay: .56s;
}

.mob-group {
    display: flex;
    flex-direction: column;
}

.mob-toggle-btn,
.mob-plain-link {
    width: 100%;
    border: none;
    background: none;
    color: var(--mob-text);
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--mob-border);
    transition: background .24s ease, color .24s ease;
}

.mob-toggle-btn:hover,
.mob-plain-link:hover {
    background: var(--mob-hover-bg);
}

.mob-btn-left {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.mob-btn-left i {
    width: 20px;
    font-size: 17px;
    color: var(--mob-icon);
    transition: color .24s ease, transform .24s ease;
}

.mob-btn-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--mob-text);
}

.mob-toggle-btn.open .mob-btn-title,
.mob-toggle-btn.open .mob-btn-left i {
    color: var(--accent);
}

.mob-toggle-btn.open .mob-btn-left i {
    transform: scale(1.04);
}

.mob-toggle-btn .bi-chevron-down {
    font-size: 12px;
    color: var(--mob-icon);
    transition: transform .62s cubic-bezier(.22, 1, .36, 1), color .24s ease;
}

.mob-toggle-btn.open .bi-chevron-down {
    color: var(--accent);
    transform: rotate(180deg);
}

.mob-sub {
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    padding: 0 22px;
    background: var(--mob-sub-bg);
    border-bottom: 1px solid transparent;
    transition:
        max-height .42s ease,
        padding-top .24s ease,
        padding-bottom .24s ease,
        border-color .2s ease;
}

.mob-sub.open {
    max-height: 860px;
    padding-top: 12px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--mob-border);
    transition:
        max-height 1.05s cubic-bezier(.25, .46, .45, .94),
        padding-top .38s ease,
        padding-bottom .38s ease,
        border-color .25s ease;
}

.mob-sub a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--mob-icon);
    font-size: 13.5px;
    line-height: 1.45;
    padding: 11px 0;
    transition: color .2s ease, transform .2s ease;
}

.mob-sub a:hover {
    color: var(--mob-text);
    transform: translateX(2px);
}

.mob-sub a i {
    width: 16px;
    font-size: 15px;
    color: rgba(223, 106, 73, .96);
    transform: translateY(1px);
}

.mob-sub a span {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mob-sub a strong {
    color: var(--mob-text);
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.35;
}

.mob-sub a small {
    color: var(--mob-text-muted);
    font-size: 11.5px;
    line-height: 1.45;
}

.mob-secondary-row .mob-btn-left i {
    color: var(--mob-icon);
}

.mob-spacer {
    flex: 1;
    min-height: 5px;
}

.mob-cta-card {
    margin: 12px 22px 0;
    padding: 14px 16px 16px;
    border-radius: 18px;
    background: var(--mob-cta-bg);
    border: 1px solid var(--mob-border);
}

.mob-cta-text {
    color: var(--mob-cta-text);
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 10px;
}

.mob-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mob-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.mobile-logo-img {
    height: 24px;
    width: auto;
    display: block;
    filter: none;
}

/* =========================================================
   Hero
   ========================================================= */

#hero {
    position: relative;
    width: 100%;
    background: #0f141b;
    overflow: hidden;
    padding: 10px 0 72px;
}

.h-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.h-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(10, 14, 20, .94) 0%, rgba(10, 14, 20, .78) 30%, rgba(10, 14, 20, .28) 62%, rgba(10, 14, 20, .08) 100%),
        linear-gradient(180deg, rgba(10, 14, 20, .16) 0%, rgba(10, 14, 20, .08) 48%, rgba(10, 14, 20, .72) 100%);
}

.h-bg-main {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
    transition: transform .2s ease-out;
    will-change: transform;
    animation: heroBgZoom 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.h-bg-mountain,
.h-bg-topo {
    display: none;
}

.h-bg-spot {
    display: none;
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    opacity: .5;
    animation: floatSpot 18s ease-in-out infinite alternate;
    will-change: transform;
}

.h-bg-spot-1 {
    width: 400px;
    height: 400px;
    background: rgba(223, 106, 73, .09);
    top: -100px;
    right: -100px;
}

.h-bg-spot-2 {
    width: 300px;
    height: 300px;
    background: rgba(43, 122, 255, .04);
    bottom: -100px;
    left: 10%;
    animation-delay: -5s;
    animation-duration: 22s;
}

.h-bg-spot-3 {
    width: 350px;
    height: 350px;
    background: rgba(223, 106, 73, .05);
    top: 40%;
    left: 40%;
    animation-delay: -10s;
    animation-duration: 25s;
}

@keyframes floatSpot {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-40px, 50px) scale(1.1);
    }

    100% {
        transform: translate(30px, -30px) scale(.9);
    }
}

.h-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 36px;
}

.h-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(240px, .78fr);
    align-items: center;
    gap: 48px;
    min-height: calc(100vh - var(--topbar-h) - var(--navbar-h));
    padding: 0 0 24px;
}

.h-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 18px;
}

.h-title {
    margin: 0 0 24px;
    max-width: 720px;
    color: #fff;
    font-family: var(--hero-font);
    font-size: clamp(42px, 4.6vw, 72px);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -2px;
    text-wrap: balance;
    animation: heroFadeUpTitle 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.12s;
}

.h-title-em {
    color: #ff8b55;
    font-weight: 600;
}

.h-desc {
    margin: 0 0 36px;
    max-width: 530px;
    color: rgba(255, 255, 255, .78);
    font-family: var(--hero-font);
    font-size: 16.5px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: -.2px;
    animation: heroFadeUpSoft 0.70s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.24s;
}

.h-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 26px;
    animation: heroFadeUpScale 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.34s;
}

.h-btn {
    min-height: 52px;
    padding: 13px 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--hero-font);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition:
        background .18s ease,
        transform .2s ease,
        box-shadow .2s ease,
        color .18s ease,
        border-color .18s ease;
}

.h-btn .bi {
    font-size: 12px;
    transition: transform .18s ease;
}

.h-btn:hover .bi {
    transform: translate(2px, -2px);
}

.h-btn-primary {
    color: #fff;
    background: linear-gradient(180deg, #e77858 0%, #df6a49 100%);
    border: 2px solid transparent;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .18) inset,
        0 8px 22px rgba(223, 106, 73, .24);
}

.h-btn-primary:hover {
    color: #fff;
    background: linear-gradient(180deg, #db6c4d 0%, #cf5c3c 100%);
    transform: translateY(-2px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .18) inset,
        0 14px 30px rgba(223, 106, 73, .3);
}

.h-btn-ghost {
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border: 1.5px solid rgba(255, 255, 255, .24);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.h-btn-ghost:hover {
    color: #fff;
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .36);
    transform: translateY(-2px);
}

.h-trust {
    width: 100%;
    max-width: 560px;
    margin-top: 0;
    animation: heroFadeOnly 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.46s;
}

.h-trust-label {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, .74);
    font-family: var(--hero-font);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.h-logos-track {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 20px;
    background: rgba(8, 12, 18, .42);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.h-logos-track::before,
.h-logos-track::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 48px;
    z-index: 2;
    pointer-events: none;
}

.h-logos-track::before {
    left: 0;
    background: linear-gradient(to right, rgba(13, 17, 24, .96), rgba(13, 17, 24, 0));
}

.h-logos-track::after {
    right: 0;
    background: linear-gradient(to left, rgba(13, 17, 24, .96), rgba(13, 17, 24, 0));
}

.h-logos-inner {
    display: flex;
    align-items: center;
    width: max-content;
    padding: 14px 12px;
    animation: logoScroll 32s linear infinite;
    will-change: transform;
}

.h-logos-inner span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 22px;
    color: rgba(255, 255, 255, .76);
    font-family: var(--hero-font);
    font-size: 13.5px;
    font-weight: 700;
    white-space: nowrap;
    transition: color .18s ease, transform .18s ease;
}

.h-logos-inner span .bi {
    font-size: 16px;
    transition: color .18s ease, transform .18s ease;
}

.h-logos-inner span:hover {
    color: #fff;
    transform: translateY(-1px);
}

.h-logos-inner span:hover .bi {
    color: #ff8b55;
    transform: scale(1.04);
}

.h-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.h-visual {
    position: relative;
    width: 100%;
    max-width: 640px;
    min-height: 560px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    animation: heroVisualReveal 0.90s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.22s;
}

.h-visual-glow {
    position: absolute;
    width: 160%;
    height: 160%;
    top: 50%;
    left: 50%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle, rgba(223, 106, 73, .16) 0%, transparent 65%);
    transform: translate(-50%, -50%);
}

.h-visual-img {
    position: relative;
    width: 100%;
    max-width: 620px;
    height: auto;
    object-fit: contain;
    z-index: 1;
    margin-left: auto;
    filter:
        drop-shadow(0 30px 60px rgba(0, 0, 0, .14)) drop-shadow(0 12px 24px rgba(0, 0, 0, .08));
    animation: floatImg 6s ease-in-out infinite;
    transform-origin: center;
    will-change: transform;
}

@keyframes floatImg {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

@keyframes heroFadeUpTitle {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeUpSoft {
    0% {
        opacity: 0;
        transform: translateY(14px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeUpScale {
    0% {
        opacity: 0;
        transform: translateY(16px) scale(0.97);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroFadeOnly {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroVisualReveal {
    0% {
        opacity: 0;
        transform: translateX(28px) scale(0.97);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes heroBgZoom {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }

    100% {
        opacity: .85;
        transform: scale(1);
    }
}

@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }

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

/* ---------------------------------------------------------
   Header and hero responsive
   --------------------------------------------------------- */

@media (max-width: 991.98px) {

    .mega-kurumsal,
    .mega-cozumler,
    .mega-hizmetler {
        grid-template-columns: 1fr;
        row-gap: 22px;
    }

    .mega-kurumsal .mega-col,
    .mega-cozumler .mega-col,
    .mega-hizmetler .mega-col {
        padding-left: 0 !important;
        padding-right: 0 !important;
        border-left: none !important;
    }

    .mega-wrap {
        padding: 30px 34px 32px;
    }

    .mega-visual-card {
        min-height: 320px;
    }

    .h-wrap {
        padding: 0 40px;
    }

    .h-grid {
        gap: 34px;
        padding: 52px 0 42px;
        min-height: auto;
    }

    .h-visual {
        max-width: 600px;
        min-height: 500px;
    }

    .h-visual-img {
        max-width: 560px;
    }
}

@media (max-width: 991.98px) {
    #topbar {
        display: none;
    }

    body {
        padding-top: var(--navbar-h);
    }

    body.mob-open {
        overflow: hidden !important;
        touch-action: none;
        overscroll-behavior: none;
    }

    #site-header.hide-topbar {
        transform: none !important;
    }

    #nav-links,
    #nav-cta,
    #shared-mega-panel,
    #mega-backdrop {
        display: none !important;
    }

    #mobile-toggle {
        display: inline-flex;
        width: 46px;
        height: 46px;
    }

    #navbar {
        top: 0;
    }

    #navbar-inner {
        padding: 0 16px;
    }

    .nav-logo-img {
        height: 24px;
    }

    .h-wrap {
        padding: 0 24px;
    }

    .h-grid {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        gap: 24px;
        padding: 60px 0 30px;
    }

    .h-right {
        display: none;
    }

    .h-left {
        align-items: center;
        order: 1;
        padding-left: 0;
    }

    .h-title {
        max-width: 680px;
        font-size: clamp(34px, 6vw, 50px);
        letter-spacing: -1.2px;
        margin-bottom: 16px;
    }

    .h-desc {
        max-width: 560px;
        font-size: 15px;
        line-height: 1.72;
        margin-bottom: 22px;
    }

    .h-actions {
        width: 100%;
        max-width: 560px;
        justify-content: center;
        margin-bottom: 18px;
    }

    .h-trust {
        margin: 0 auto;
        max-width: 560px;
    }

    .h-trust-label {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .h-wrap {
        padding: 0 18px;
    }

    .h-grid {
        gap: 18px;
        padding: 50px 0 20px;
    }

    .h-title {
        max-width: 100%;
        font-size: 30px;
        line-height: 1.12;
        letter-spacing: -.8px;
        margin-bottom: 12px;
    }

    .h-title br {
        display: none;
    }

    .h-desc {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 18px;
    }

    .h-actions {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 16px;
    }

    .h-btn {
        width: 100%;
        min-height: 50px;
        padding: 12px 18px;
        font-size: 13.5px;
    }

    .h-trust {
        width: 100%;
        max-width: 100%;
        margin-top: 10px;
    }

    .h-trust-label {
        color: #6f6362;
        font-size: 10px;
        font-weight: 800;
        margin-bottom: 12px;
        letter-spacing: 1.8px;
        text-align: center;
    }

    .h-logos-track {
        border-radius: 20px;
        padding: 5px 10px;
        border: 1px solid rgba(70, 61, 60, .08);
        background: rgba(255, 255, 255, .62);
        mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    }

    .h-logos-track::before,
    .h-logos-track::after {
        width: 22px;
    }

    .h-logos-inner {
        padding: 13px 10px;
        animation-duration: 20s;
    }

    .h-logos-inner span {
        font-size: 11px;
        padding: 0 16px;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .05));
    }
}

@media (max-width: 430px) {
    .h-wrap {
        padding: 0 14px;
    }

    .h-grid {
        padding: 40px 0 16px;
        gap: 16px;
    }

    .h-title {
        font-size: 27px;
    }

    .h-desc {
        font-size: 13.5px;
        margin-bottom: 16px;
    }

    .h-actions {
        margin-bottom: 14px;
    }

    .h-btn {
        min-height: 47px;
        font-size: 13px;
    }

    .h-trust-label {
        color: #5a5150;
        font-size: 9.5px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .h-logos-inner {
        padding: 12px 8px;
    }

    .h-logos-inner span {
        padding: 0 14px;
        font-size: 10.5px;
    }
}

/* =========================================================
   Channels Section
   ========================================================= */

.channels-section {
    position: relative;
    padding: 42px 0 110px;
    background: #fdfdfd;
    overflow: hidden;
}

.channels-wrap {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 var(--container-pad);
    position: relative;
    z-index: 2;
}

.channels-head {
    max-width: 900px;
    margin: 0 auto 42px;
    text-align: center;
}

.channels-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(223, 106, 73, .1);
    color: var(--label);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.channels-title {
    margin: 0 0 14px;
    color: #1a1413;
    font-family: var(--hero-font);
    font-size: clamp(30px, 4vw, 56px);
    line-height: 1.08;
    letter-spacing: -1.6px;
    font-weight: 700;
}

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

.channels-desc {
    margin: 0 auto;
    max-width: 760px;
    color: #6f6362;
    font-size: 16px;
    line-height: 1.75;
}

.channels-board {
    position: relative;
    border-radius: 34px;
    padding: 28px;
    overflow: hidden;
}

.channels-bg-art {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 82% 24%, rgba(223, 106, 73, .05), transparent 26%),
        radial-gradient(circle at 16% 84%, rgba(223, 106, 73, .03), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, .65), rgba(255, 255, 255, .24));
}

/* ---------------------------------------------------------
   Channels desktop cards
   --------------------------------------------------------- */

.channels-desktop {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

.channel-column {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.channel-card {
    position: relative;
    border-radius: 28px;
}

.channel-card-inner {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, .24);
    border: 1px solid rgba(255, 255, 255, .44);
    box-shadow: 0 16px 38px rgba(41, 24, 16, .05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition:
        background .38s ease,
        border-color .38s ease,
        box-shadow .38s ease,
        transform .38s ease;
}

.channel-card:hover .channel-card-inner,
.channel-card.is-open .channel-card-inner {
    background: rgba(255, 255, 255, .34);
    border-color: rgba(223, 106, 73, .14);
    box-shadow: 0 20px 48px rgba(41, 24, 16, .08);
}

.channel-hover-line {
    position: absolute;
    inset: -1px;
    border-radius: 28px;
    pointer-events: none;
    z-index: 4;
    opacity: 0;
    transition: opacity .26s ease;
}

.channel-hover-line::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1.3px;
    background: conic-gradient(from var(--channel-angle, 0deg),
            transparent 0%,
            transparent 64%,
            rgba(223, 106, 73, .95) 76%,
            rgba(255, 173, 136, .95) 84%,
            rgba(223, 106, 73, .95) 92%,
            transparent 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.channel-card:hover .channel-hover-line {
    opacity: 1;
}

.channel-card:hover .channel-hover-line::before {
    animation: channelBorderRotate 2.8s linear infinite;
}

@property --channel-angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

@keyframes channelBorderRotate {
    to {
        --channel-angle: 360deg;
    }
}

.channel-summary {
    position: relative;
    z-index: 3;
    padding: 24px 24px 22px;
}

.channel-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(223, 106, 73, .1);
    color: var(--accent);
    font-size: 20px;
    transition: transform .3s ease, background .3s ease;
}

.channel-card:hover .channel-icon,
.channel-card.is-open .channel-icon {
    transform: scale(1.05);
    background: rgba(223, 106, 73, .15);
}

.channel-card-title {
    margin: 0 0 10px;
    color: #1a1413;
    font-family: var(--hero-font);
    font-size: 17px;
    line-height: 1.25;
    font-weight: 700;
}

.channel-card-text {
    margin: 0;
    color: #5f5655;
    font-size: 14px;
    line-height: 1.72;
}

.channel-image-slot {
    width: 100%;
    min-height: 220px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    border-radius: 18px;
    color: rgba(255, 255, 255, .66);
    background: rgba(255, 255, 255, .08);
    border: 1px dashed rgba(255, 255, 255, .22);
    overflow: hidden;
}

.channel-image-slot.has-image {
    padding: 0;
    border-style: solid;
    border-color: rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .06);
}

.channel-image-slot img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
}

.channel-image-slot i {
    color: #ef825e;
    font-size: 30px;
}

.channel-image-slot span {
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.channel-detail {
    position: relative;
    z-index: 3;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 24px;
    transition:
        max-height .62s cubic-bezier(.22, 1, .36, 1),
        opacity .22s ease,
        padding .62s cubic-bezier(.22, 1, .36, 1);
}

.channel-card.is-open .channel-detail {
    max-height: 420px;
    opacity: 1;
    padding: 0 24px 24px;
}

.channel-card.expand-down .channel-media {
    transform: translateY(-16px);
}

.channel-card.expand-up .channel-media {
    transform: translateY(16px);
}

.channel-cta,
.channel-detail .mega-visual-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--mega-link-color);
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
    transition: transform .22s ease, color .22s ease;
}

.channel-cta i,
.channel-detail .mega-visual-cta i {
    transition: transform .22s ease, color .22s ease;
}

.channel-card:hover .channel-cta,
.channel-card.is-open .channel-cta,
.channel-card:hover .channel-detail .mega-visual-cta,
.channel-card.is-open .channel-detail .mega-visual-cta {
    color: var(--accent);
    transform: translateX(2px) scale(1.04);
}

.channel-card:hover .channel-cta i,
.channel-card.is-open .channel-cta i,
.channel-card:hover .channel-detail .mega-visual-cta i,
.channel-card.is-open .channel-detail .mega-visual-cta i {
    color: var(--accent);
    transform: scale(1.14) rotate(-8deg);
}

.channel-media {
    position: relative;
    width: 100%;
    min-height: 230px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(223, 106, 73, .05), rgba(223, 106, 73, .02));
    border: 1px solid rgba(223, 106, 73, .08);
    opacity: 0;
    transition:
        transform .62s cubic-bezier(.22, 1, .36, 1),
        opacity .26s ease;
}

.channel-card.is-open .channel-media {
    transform: translateY(0);
    opacity: 1;
}

.channel-media img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
    transition: transform .35s ease;
}

.channel-media img[alt] {
    color: transparent;
    font-size: 0;
}

.channel-card:hover .channel-media img,
.channel-card.is-open .channel-media img {
    transform: scale(1.02);
}

/* ---------------------------------------------------------
   Channels mobile slider
   --------------------------------------------------------- */

.channels-mobile {
    display: none;
    position: relative;
    z-index: 2;
}

.channels-mobile-track {
    display: flex;
    width: 100%;
    will-change: transform;
    transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}

.channels-mobile .mobile-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    padding: 0 4px;
}

.channels-mobile .mobile-card .channel-card-inner {
    background: rgba(255, 255, 255, .7);
    border-radius: 24px;
    border: 1px solid rgba(223, 106, 73, .08);
    box-shadow: 0 16px 40px rgba(41, 24, 16, .08);
}

.channels-mobile .mobile-card .channel-summary {
    padding: 20px 18px 18px;
}

.channels-mobile .mobile-card .channel-detail,
.channels-mobile .mobile-card .mobile-open-detail {
    max-height: none;
    opacity: 1;
    padding: 0 18px 18px;
    overflow: visible;
}

.channels-mobile .mobile-card .channel-media,
.channels-mobile .mobile-card .channel-media img {
    min-height: 190px;
    opacity: 1;
    transform: none;
}

.channels-mobile-nav {
    display: none;
    justify-content: flex-start;
    gap: 12px;
    padding: 20px 0 0;
}

.chan-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1a1413;
    font-size: 16px;
    transition: transform .18s ease, background .18s ease, opacity .18s ease;
}

.chan-nav-btn:hover {
    background: #f8f8f8;
}

.chan-nav-btn:active {
    transform: scale(.92);
}

.channels-mobile-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.channels-mobile-dots .dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(26, 20, 19, .18);
    border: none;
    padding: 0;
    transition: all .22s ease;
}

.channels-mobile-dots .dot.active {
    width: 24px;
    background: var(--accent);
}

/* =========================================================
   Reveal
   ========================================================= */

.reveal-up {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity .65s cubic-bezier(.22, 1, .36, 1),
        transform .65s cubic-bezier(.22, 1, .36, 1);
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.96);
    transition:
        opacity .85s cubic-bezier(.22, 1, .36, 1),
        transform .85s cubic-bezier(.22, 1, .36, 1);
}

.reveal-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

.d-1 {
    transition-delay: 0.08s !important;
}

.d-2 {
    transition-delay: 0.16s !important;
}

.d-3 {
    transition-delay: 0.24s !important;
}

.d-4 {
    transition-delay: 0.32s !important;
}

.d-5 {
    transition-delay: 0.40s !important;
}

/* =========================================================
   Sticky Features Section
   ========================================================= */

.ss-features-outer {
    position: relative;
    height: 360vh;
    background: var(--ss-bg);
    isolation: isolate;
}

.ss-features-outer::before {
    content: "";
    position: absolute;
    inset: 0 calc(50% - 50vw);
    background: var(--ss-bg);
    z-index: -1;
}

.ss-features-row {
    position: absolute;
    left: 50%;
    top: 0;
    width: min(1200px, 100%);
    height: calc(100vh - var(--navbar-h));
    transform: translateX(-50%);
    padding: 0 48px;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 480px;
    gap: 24px;
    align-items: center;
}

.ss-features-outer.ss-fixed .ss-features-row {
    position: fixed;
    top: var(--navbar-h);
    left: 50%;
    z-index: 30;
}

.ss-features-outer.ss-ended .ss-features-row {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 50%;
}

/* ---------------------------------------------------------
   Sticky progress rail
   --------------------------------------------------------- */

.ss-bar-col {
    width: 64px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    z-index: 5;
}

.ss-bar-track {
    position: relative;
    width: 4px;
    height: 220px;
    background: rgba(255, 255, 255, .08);
    border-radius: 99px;
}

.ss-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0%;
    border-radius: 99px;
    background: var(--ss-c0);
    transition: height .12s linear, background .28s ease, box-shadow .28s ease;
    box-shadow: 0 0 14px rgba(124, 106, 247, .7);
}

.ss-bar-dots {
    position: absolute;
    inset: 0 auto 0 50%;
    height: 100%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.ss-bdot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--ss-bg);
    border: 2.5px solid rgba(255, 255, 255, .18);
    transition: all .28s ease;
    flex-shrink: 0;
    z-index: 2;
}

.ss-bdot.done,
.ss-bdot.active {
    background: var(--ss-c0);
    border-color: var(--ss-c0);
}

.ss-bdot.active {
    box-shadow:
        0 0 0 4px rgba(124, 106, 247, .25),
        0 0 12px rgba(124, 106, 247, .6);
    transform: scale(1.2);
}

.ss-bdot[data-c="1"].done,
.ss-bdot[data-c="1"].active {
    background: var(--ss-c1);
    border-color: var(--ss-c1);
}

.ss-bdot[data-c="1"].active {
    box-shadow:
        0 0 0 4px rgba(78, 205, 196, .25),
        0 0 12px rgba(78, 205, 196, .6);
}

.ss-bdot[data-c="2"].done,
.ss-bdot[data-c="2"].active {
    background: var(--ss-c2);
    border-color: var(--ss-c2);
}

.ss-bdot[data-c="2"].active {
    box-shadow:
        0 0 0 4px rgba(247, 201, 72, .25),
        0 0 12px rgba(247, 201, 72, .6);
}

.ss-bar-counter {
    margin-top: 14px;
    color: var(--ss-muted);
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    white-space: nowrap;
}

/* ---------------------------------------------------------
   Sticky text column
   --------------------------------------------------------- */

.ss-steps-col {
    position: relative;
    height: calc(100vh - var(--navbar-h));
    color: var(--ss-text);
    overflow: hidden;
    min-width: 0;
    transform: none;
}

.ss-steps-track {
    position: relative;
    width: 100%;
    will-change: transform;
}

.ss-step {
    min-height: calc(100vh - var(--navbar-h));
    height: calc(100vh - var(--navbar-h));
    display: flex;
    align-items: center;
    padding: 0;
    opacity: 1;
    transform: none;
}

.ss-step-inner {
    width: 100%;
    opacity: .18;
    transform: scale(.97) translateY(36px);
    transition:
        opacity .72s cubic-bezier(.22, 1, .36, 1),
        transform .72s cubic-bezier(.22, 1, .36, 1);
    will-change: opacity, transform;
}

.ss-step.ss-in .ss-step-inner {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.ss-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 99px;
    padding: 5px 14px;
    margin-bottom: 20px;
}

.ss-tag .ss-d {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.ss-tag-0 {
    color: var(--ss-c0);
    background: rgba(124, 106, 247, .12);
    border: 1px solid rgba(124, 106, 247, .3);
}

.ss-tag-0 .ss-d {
    background: var(--ss-c0);
}

.ss-tag-1 {
    color: var(--ss-c1);
    background: rgba(78, 205, 196, .12);
    border: 1px solid rgba(78, 205, 196, .3);
}

.ss-tag-1 .ss-d {
    background: var(--ss-c1);
}

.ss-tag-2 {
    color: var(--ss-c2);
    background: rgba(247, 201, 72, .12);
    border: 1px solid rgba(247, 201, 72, .3);
}

.ss-tag-2 .ss-d {
    background: var(--ss-c2);
}

.ss-step h3 {
    position: relative;
    margin: 0 0 18px;
    padding-left: 18px;
    color: var(--ss-text);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.18;
}

.ss-step h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 3px;
    border-radius: 99px;
    background: var(--ss-c0);
}

.ss-step[data-i="1"] h3::before {
    background: var(--ss-c1);
}

.ss-step[data-i="2"] h3::before {
    background: var(--ss-c2);
}

.ss-desc {
    margin: 0;
    padding-left: 18px;
    max-width: 460px;
    color: var(--ss-muted);
    font-size: 16px;
    line-height: 1.8;
}

.ss-flist {
    padding-left: 18px;
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ss-project-link {
    width: fit-content;
    min-height: 40px;
    margin-top: 18px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
}

.ss-project-link:hover {
    color: #fff;
    background: rgba(223, 106, 73, .22);
    border-color: rgba(223, 106, 73, .42);
}

.ss-fi {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: var(--ss-muted);
    font-size: 14.5px;
}

.ss-fi-ic {
    width: 22px;
    height: 22px;
    margin-top: 1px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ---------------------------------------------------------
   Sticky visual column
   --------------------------------------------------------- */

.ss-visual-col {
    width: 480px;
    height: min(520px, 68vh);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ss-vframe {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: var(--ss-surface);
    border: 1px solid var(--ss-border);
    box-shadow:
        0 24px 80px rgba(0, 0, 0, .55),
        0 0 0 1px rgba(255, 255, 255, .04);
}

.ss-vslide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(32px) scale(.97);
    transition:
        opacity .36s cubic-bezier(.22, 1, .36, 1),
        transform .36s cubic-bezier(.22, 1, .36, 1);
}

.ss-vslide.ss-on {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* ---------------------------------------------------------
   Sticky code preview
   --------------------------------------------------------- */

.ss-s0 {
    background: #0D1117;
    display: flex;
    flex-direction: column;
    font-family: "Fira Code", "Courier New", monospace;
}

.ss-etb {
    height: 38px;
    background: #161b22;
    border-bottom: 1px solid #30363d;
    display: flex;
    align-items: center;
    padding: 0 14px;
    gap: 7px;
    flex-shrink: 0;
}

.ss-etb-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.ss-efname {
    margin-left: 8px;
    color: #7d8590;
    font-family: "Inter", sans-serif;
    font-size: 12px;
}

.ss-etab {
    margin-left: 2px;
    color: #c9d1d9;
    background: rgba(255, 255, 255, .07);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 11px;
}

.ss-ebody {
    flex: 1;
    overflow: hidden;
    display: flex;
}

.ss-lns {
    width: 36px;
    padding: 14px 6px 14px 0;
    text-align: right;
    color: #3d444d;
    font-size: 11.5px;
    line-height: 1.9;
    flex-shrink: 0;
    user-select: none;
}

.ss-ca {
    flex: 1;
    padding: 14px 16px;
    overflow: hidden;
    color: #c9d1d9;
    font-size: 11.5px;
    line-height: 1.9;
}

.ss-kw {
    color: #ff7b72;
}

.ss-fn2 {
    color: #d2a8ff;
}

.ss-str {
    color: #a5d6ff;
}

.ss-cm {
    color: #3d444d;
}

.ss-vr {
    color: #e3b341;
}

.ss-pl {
    color: #c9d1d9;
}

.ss-op {
    color: #79c0ff;
}

/* ---------------------------------------------------------
   Sticky dashboard preview
   --------------------------------------------------------- */

.ss-s1 {
    background: #151b28;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ss-dh {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ss-dt {
    color: var(--ss-text);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.ss-db {
    color: var(--ss-c1);
    background: rgba(78, 205, 196, .15);
    border: 1px solid rgba(78, 205, 196, .3);
    border-radius: 99px;
    padding: 3px 10px;
    font-size: 10px;
}

.ss-dg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.ss-sc {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--ss-border);
    border-radius: 10px;
    padding: 12px;
}

.ss-sl {
    color: var(--ss-muted);
    font-size: 10px;
    margin-bottom: 4px;
}

.ss-sv {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.ss-sv.ss-p {
    color: var(--ss-c0);
}

.ss-sv.ss-t {
    color: var(--ss-c1);
}

.ss-sv.ss-y {
    color: var(--ss-c2);
}

.ss-sch {
    color: var(--ss-c1);
    font-size: 10px;
    margin-top: 3px;
}

.ss-chart-box {
    flex: 1;
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--ss-border);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ss-chart-lbl {
    color: var(--ss-muted);
    font-size: 10px;
}

.ss-brs {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

.ss-bi {
    flex: 1;
    border-radius: 5px 5px 0 0;
    animation: ss-grow 1.2s cubic-bezier(.4, 0, .2, 1) forwards;
    transform-origin: bottom;
}

@keyframes ss-grow {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

.ss-bi:nth-child(odd) {
    background: var(--ss-c0);
    opacity: .75;
}

.ss-bi:nth-child(even) {
    background: var(--ss-c1);
    opacity: .55;
}

/* ---------------------------------------------------------
   Sticky team preview
   --------------------------------------------------------- */

.ss-s2 {
    background: #14111e;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ss-sh {
    color: var(--ss-text);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.ss-mems {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ss-mr {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--ss-border);
    border-radius: 11px;
    padding: 10px 14px;
}

.ss-av {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.ss-mi {
    flex: 1;
    min-width: 0;
}

.ss-mn {
    color: var(--ss-text);
    font-size: 12px;
    font-weight: 600;
}

.ss-mrl {
    color: var(--ss-muted);
    font-size: 10px;
}

.ss-ms {
    border-radius: 99px;
    padding: 3px 9px;
    font-size: 10px;
    font-weight: 500;
}

.ss-ms.ss-on {
    background: rgba(78, 205, 196, .15);
    color: var(--ss-c1);
}

.ss-ms.ss-rv {
    background: rgba(247, 201, 72, .15);
    color: var(--ss-c2);
}

.ss-ms.ss-aw {
    background: rgba(122, 128, 153, .15);
    color: var(--ss-muted);
}

.ss-acts {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.ss-ai {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ss-muted);
    font-size: 11.5px;
}

.ss-ad {
    width: 6px;
    height: 6px;
    margin-top: 5px;
    border-radius: 50%;
    background: var(--ss-c0);
    flex-shrink: 0;
}

.ss-at {
    color: var(--ss-muted);
    opacity: .45;
    font-size: 10px;
    white-space: nowrap;
}

/* ---------------------------------------------------------
   Sticky mobile cards
   --------------------------------------------------------- */

.ss-mobile-preview {
    display: none;
}

@media (max-width: 768px) {
    .ss-features-outer {
        height: auto !important;
        min-height: 0 !important;
        padding: 42px 14px 66px !important;
        background:
            radial-gradient(circle at 85% 0%, rgba(124, 106, 247, .18), transparent 34%),
            radial-gradient(circle at 12% 100%, rgba(78, 205, 196, .1), transparent 30%),
            var(--ss-bg) !important;
        overflow: hidden !important;
        isolation: isolate;
    }

    .ss-features-row,
    .ss-features-outer.ss-fixed .ss-features-row,
    .ss-features-outer.ss-ended .ss-features-row {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
        height: auto !important;
        padding: 0 !important;
        display: block !important;
        z-index: 1 !important;
    }

    .ss-bar-col,
    .ss-visual-col {
        display: none !important;
    }

    .ss-steps-col {
        height: auto !important;
        overflow: visible !important;
        transform: none !important;
        color: var(--ss-text);
    }

    .ss-steps-track {
        transform: none !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 18px !important;
        will-change: auto !important;
    }

    .ss-step {
        height: auto !important;
        min-height: 0 !important;
        padding: 0 !important;
        display: block !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .ss-step-inner {
        opacity: 1 !important;
        transform: none !important;
        position: relative;
        overflow: hidden;
        padding: 20px 18px 18px !important;
        border-radius: 24px;
        background:
            radial-gradient(circle at top right, rgba(124, 106, 247, .18), transparent 38%),
            linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .024));
        border: 1px solid rgba(255, 255, 255, .085);
        box-shadow:
            0 18px 44px rgba(0, 0, 0, .26),
            inset 0 0 0 1px rgba(255, 255, 255, .025);
    }

    .ss-step[data-i="1"] .ss-step-inner {
        background:
            radial-gradient(circle at top right, rgba(78, 205, 196, .18), transparent 38%),
            linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .024));
    }

    .ss-step[data-i="2"] .ss-step-inner {
        background:
            radial-gradient(circle at top right, rgba(247, 201, 72, .16), transparent 38%),
            linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .024));
    }

    .ss-step-inner::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, .08), transparent 28%),
            radial-gradient(circle at 92% 14%, rgba(255, 255, 255, .12), transparent 20%);
        opacity: .5;
    }

    .ss-step-inner::after {
        position: absolute;
        right: 18px;
        top: 17px;
        color: rgba(255, 255, 255, .045);
        font-family: "Montserrat", sans-serif;
        font-size: 34px;
        font-weight: 800;
        line-height: 1;
        pointer-events: none;
    }

    .ss-step[data-i="0"] .ss-step-inner::after {
        content: "01";
    }

    .ss-step[data-i="1"] .ss-step-inner::after {
        content: "02";
    }

    .ss-step[data-i="2"] .ss-step-inner::after {
        content: "03";
    }

    .ss-tag,
    .ss-step h3,
    .ss-desc,
    .ss-flist {
        position: relative;
        z-index: 2;
    }

    .ss-tag {
        font-size: 9px !important;
        padding: 5px 10px !important;
        margin-bottom: 14px !important;
    }

    .ss-step h3 {
        font-size: 25px !important;
        line-height: 1.12 !important;
        margin: 0 0 12px !important;
        padding-left: 13px !important;
        letter-spacing: -.7px !important;
    }

    .ss-step h3::before {
        width: 3px !important;
        top: 3px !important;
        bottom: 3px !important;
    }

    .ss-desc {
        padding-left: 13px !important;
        font-size: 13px !important;
        line-height: 1.62 !important;
        max-width: 100% !important;
        color: rgba(232, 234, 240, .68) !important;
    }

    .ss-flist {
        padding-left: 13px !important;
        margin-top: 15px !important;
        gap: 9px !important;
    }

    .ss-fi {
        font-size: 11.4px !important;
        line-height: 1.38 !important;
        gap: 8px !important;
        color: rgba(232, 234, 240, .68) !important;
    }

    .ss-fi-ic {
        width: 19px !important;
        height: 19px !important;
        border-radius: 6px !important;
    }

    .ss-fi-ic svg {
        width: 10px !important;
        height: 10px !important;
    }

    .ss-mobile-preview {
        display: block;
        position: relative;
        z-index: 2;
        margin-top: 18px;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, .075);
        background: rgba(10, 14, 22, .48);
        overflow: hidden;
        box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, .025),
            0 14px 30px rgba(0, 0, 0, .18);
    }

    .ss-mp-top {
        height: 32px;
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 0 12px;
        background: rgba(255, 255, 255, .045);
        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .ss-mp-top span {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        display: block;
    }

    .ss-mp-top span:nth-child(1) {
        background: #ff5f57;
    }

    .ss-mp-top span:nth-child(2) {
        background: #febc2e;
    }

    .ss-mp-top span:nth-child(3) {
        background: #28c840;
    }

    .ss-mp-top strong {
        margin-left: 6px;
        color: rgba(232, 234, 240, .62);
        font-size: 10px;
        font-weight: 600;
    }

    .ss-mp-code-body {
        padding: 12px 14px 14px;
        font-family: "Fira Code", "Courier New", monospace;
    }

    .ss-mp-code-body p {
        margin: 0;
        color: rgba(232, 234, 240, .72);
        font-size: 10px;
        line-height: 1.75;
        white-space: nowrap;
    }

    .ss-mp-code-body em {
        color: #ff7b72;
        font-style: normal;
    }

    .ss-mp-code-body b {
        color: #79c0ff;
        font-weight: 600;
    }

    .ss-mp-code-body strong {
        color: #d2a8ff;
        font-weight: 600;
    }

    .ss-mobile-dashboard,
    .ss-mobile-team {
        padding: 14px;
    }

    .ss-mp-dash-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 12px;
    }

    .ss-mp-dash-head strong {
        color: var(--ss-text);
        font-size: 12px;
        font-weight: 800;
    }

    .ss-mp-dash-head span {
        color: var(--ss-c1);
        background: rgba(78, 205, 196, .12);
        border: 1px solid rgba(78, 205, 196, .22);
        border-radius: 999px;
        padding: 3px 8px;
        font-size: 9px;
    }

    .ss-mp-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-bottom: 12px;
    }

    .ss-mp-stats div {
        border-radius: 12px;
        background: rgba(255, 255, 255, .045);
        border: 1px solid rgba(255, 255, 255, .07);
        padding: 9px 8px;
        min-width: 0;
    }

    .ss-mp-stats small {
        display: block;
        color: var(--ss-muted);
        font-size: 8.5px;
        margin-bottom: 4px;
        white-space: nowrap;
    }

    .ss-mp-stats b {
        display: block;
        color: var(--ss-c1);
        font-size: 15px;
        font-weight: 800;
        letter-spacing: -.4px;
        white-space: nowrap;
    }

    .ss-mp-bars {
        height: 120px;
        display: flex;
        align-items: flex-end;
        gap: 6px;
        padding: 12px;
        border-radius: 14px;
        background: rgba(255, 255, 255, .025);
        border: 1px solid rgba(255, 255, 255, .06);
    }

    .ss-mp-bars span {
        flex: 1;
        min-width: 0;
        border-radius: 5px 5px 0 0;
        background: var(--ss-c1);
        opacity: .75;
    }

    .ss-mp-bars span:nth-child(odd) {
        background: var(--ss-c0);
    }

    .ss-mp-team-title {
        color: var(--ss-text);
        font-size: 12px;
        font-weight: 800;
        margin-bottom: 12px;
    }

    .ss-mp-member {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px;
        border-radius: 13px;
        background: rgba(255, 255, 255, .04);
        border: 1px solid rgba(255, 255, 255, .065);
    }

    .ss-mp-member+.ss-mp-member {
        margin-top: 8px;
    }

    .ss-mp-member>span {
        width: 31px;
        height: 31px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(247, 201, 72, .16);
        color: var(--ss-c2);
        font-size: 11px;
        font-weight: 800;
        flex-shrink: 0;
    }

    .ss-mp-member div {
        flex: 1;
        min-width: 0;
    }

    .ss-mp-member strong {
        display: block;
        color: var(--ss-text);
        font-size: 11px;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .ss-mp-member small {
        display: block;
        color: var(--ss-muted);
        font-size: 9px;
        margin-top: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .ss-mp-member em {
        color: var(--ss-c2);
        background: rgba(247, 201, 72, .12);
        border-radius: 999px;
        padding: 3px 7px;
        font-size: 8.5px;
        font-style: normal;
        white-space: nowrap;
        flex-shrink: 0;
    }
}

/* =========================================================
   Section responsive rules
   ========================================================= */

@media (max-width: 1200px) {
    .channels-wrap {
        padding: 0 34px;
    }

    .channels-desktop {
        gap: 18px;
    }

    .channel-column {
        gap: 18px;
    }

    .channel-summary {
        padding: 22px 20px 20px;
    }

    .channel-detail {
        padding: 0 20px;
    }

    .channel-card.is-open .channel-detail {
        padding: 0 20px 20px;
    }
}

@media (max-width: 1000px) {
    .ss-features-row {
        padding: 0 24px;
        grid-template-columns: 52px minmax(0, 1fr) 380px;
        gap: 18px;
    }

    .ss-visual-col {
        width: 380px;
    }
}

@media (max-width: 1024px) {
    .channels-section {
        padding: 28px 0 80px;
    }

    .channels-wrap {
        padding: 0 20px;
    }

    .channels-head {
        margin-bottom: 28px;
    }

    .channels-title {
        font-size: 30px;
        letter-spacing: -1px;
    }

    .channels-desc {
        font-size: 14.5px;
        line-height: 1.7;
    }

    .channels-board {
        padding: 0;
        background: transparent;
    }

    .channels-bg-art,
    .channels-desktop {
        display: none;
    }

    .channels-mobile {
        display: block;
        overflow: hidden;
    }
}

@media (max-width: 430px) {
    .channels-title {
        font-size: 27px;
    }

    .channels-mobile .mobile-card {
        padding: 0 2px;
    }

    .channels-mobile .mobile-card .channel-summary {
        padding: 18px 16px 16px;
    }

    .channels-mobile .mobile-card .channel-detail,
    .channels-mobile .mobile-card .mobile-open-detail {
        padding: 0 16px 16px;
    }

    .channels-mobile .mobile-card .channel-media,
    .channels-mobile .mobile-card .channel-media img {
        min-height: 175px;
    }

    .ss-features-outer {
        padding: 38px 12px 64px !important;
    }

    .ss-steps-track {
        gap: 16px !important;
    }

    .ss-step-inner {
        padding: 18px 15px 16px !important;
        border-radius: 22px;
    }

    .ss-step h3 {
        font-size: 23px !important;
    }

    .ss-desc {
        font-size: 12.5px !important;
    }

    .ss-fi {
        font-size: 11px !important;
    }

    .ss-mp-code-body p {
        font-size: 9.5px;
    }

    .ss-mp-bars {
        height: 105px;
    }

    .ss-mp-stats {
        gap: 7px;
    }

    .ss-mp-stats div {
        padding: 8px 6px;
    }

    .ss-mp-stats small {
        font-size: 8px;
    }

    .ss-mp-stats b {
        font-size: 13.5px;
    }
}

/* =========================================================
   Motion preferences
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }

    .h-bg-main,
    .h-visual-img,
    .h-logos-inner,
    .ss-steps-track,
    .channels-mobile-track {
        transition-duration: .01ms !important;
    }
}

/* =========================================================
   Hero final visual system
   ========================================================= */

#hero {
    background: #171b23;
}

.h-bg::before {
    background:
        linear-gradient(90deg,
            rgba(23, 27, 35, .98) 0%,
            rgba(23, 27, 35, .94) 32%,
            rgba(23, 27, 35, .62) 48%,
            rgba(23, 27, 35, .2) 64%,
            rgba(23, 27, 35, 0) 100%),
        linear-gradient(180deg,
            rgba(23, 27, 35, .08) 0%,
            rgba(23, 27, 35, .04) 46%,
            rgba(23, 27, 35, .26) 100%);
}

.h-bg::after {
    content: "";
    display: none;
    position: absolute;
    inset: auto 0 0;
    height: 160px;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(23, 27, 35, 0) 0%, #171b23 100%);
}

.h-bg-main {
    object-position: center center;
    filter: saturate(1.04) contrast(1.02);
}

.h-title {
    letter-spacing: 0;
    text-shadow: 0 16px 34px rgba(0, 0, 0, .2);
}

.h-desc {
    letter-spacing: 0;
    text-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.h-logos-track {
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .12);
}

.h-logos-track::before {
    background: linear-gradient(to right, rgba(29, 34, 43, .94), rgba(29, 34, 43, 0));
}

.h-logos-track::after {
    background: linear-gradient(to left, rgba(29, 34, 43, .94), rgba(29, 34, 43, 0));
}

.h-logos-inner span:hover,
.h-logos-inner span:hover .bi {
    color: #fff;
}

@media (max-width: 991.98px) {
    #hero {
        background: #171b23;
    }

    .h-bg-main {
        object-position: 70% center;
    }

    .h-bg::before {
        background:
            linear-gradient(180deg,
                rgba(23, 27, 35, .64) 0%,
                rgba(23, 27, 35, .36) 42%,
                rgba(23, 27, 35, .58) 100%),
            linear-gradient(90deg,
                rgba(23, 27, 35, .84) 0%,
                rgba(23, 27, 35, .28) 52%,
                rgba(23, 27, 35, .04) 100%);
    }

    .h-bg::after {
        display: none;
    }

    .h-title {
        color: #fff;
        letter-spacing: 0;
        text-shadow: 0 16px 36px rgba(0, 0, 0, .32);
    }

    .h-desc {
        color: rgba(255, 255, 255, .84);
        letter-spacing: 0;
        text-shadow: 0 14px 30px rgba(0, 0, 0, .28);
    }

    .h-btn-ghost {
        color: #fff;
        background: rgba(255, 255, 255, .1);
        border-color: rgba(255, 255, 255, .26);
    }

    .h-btn-ghost:hover {
        color: #fff;
        background: rgba(255, 255, 255, .16);
        border-color: rgba(255, 255, 255, .38);
    }

    .h-trust-label {
        color: rgba(255, 255, 255, .74);
    }

    .h-logos-track {
        border-color: rgba(255, 255, 255, .18);
        background: rgba(255, 255, 255, .1);
    }
}

@media (max-width: 767.98px) {
    .h-bg-main {
        object-position: 76% center;
    }

    .h-bg::before {
        background:
            linear-gradient(180deg,
                rgba(23, 27, 35, .58) 0%,
                rgba(23, 27, 35, .3) 38%,
                rgba(23, 27, 35, .58) 100%),
            linear-gradient(90deg,
                rgba(23, 27, 35, .72) 0%,
                rgba(23, 27, 35, .2) 58%,
                rgba(23, 27, 35, .04) 100%);
    }

    .h-title {
        letter-spacing: 0;
    }

    .h-trust-label {
        color: rgba(255, 255, 255, .76);
    }

    .h-logos-track {
        border-color: rgba(255, 255, 255, .18);
        background: rgba(255, 255, 255, .1);
        mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    }

    .h-logos-track::before {
        background: linear-gradient(to right, rgba(30, 35, 44, .9), rgba(30, 35, 44, 0));
    }

    .h-logos-track::after {
        background: linear-gradient(to left, rgba(30, 35, 44, .9), rgba(30, 35, 44, 0));
    }

    .h-logos-inner span {
        color: rgba(255, 255, 255, .76);
    }
}

/* =========================================================
   HERO STATS STRIP - FINAL GLASS VERSION
   ========================================================= */

.stats-strip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -48px;
    z-index: 6;
    padding: 0 var(--container-pad);
    pointer-events: none;
}

.stats-strip-wrap {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 16px 28px;
    border-radius: 999px;

    /* 🔥 ULTRA SOFT GLASS */
    background: linear-gradient(180deg,
            rgba(255, 250, 247, 0.42),
            rgba(255, 250, 247, 0.28));

    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);

    /* 🔥 YUMUŞAK BORDER */
    border: 1px solid rgba(255, 255, 255, 0.42);

    /* 🔥 HAFİF SHADOW (kopukluk yok) */
    box-shadow:
        0 16px 40px rgba(24, 18, 16, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);

    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;

    pointer-events: auto;
}

/* ITEM */
.stats-strip-item {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    transition: transform .25s ease;
}

.stats-strip-item:hover {
    transform: translateY(-2px);
}

.stats-icon {
    font-size: 28px;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

.stats-num {
    display: flex;
    align-items: baseline;
}

/* NUMBER */
.stats-strip-item strong,
.stats-strip-item span {
    font-family: var(--hero-font);
    font-size: clamp(28px, 2.8vw, 40px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1.3px;
    color: #d96546;
}

/* TEXT */
.stats-strip-item p {
    margin: 0;
    color: #2a2321;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0.85;
}

/* DIVIDER */
.stats-strip-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg,
            transparent,
            rgba(223, 106, 73, 0.18),
            transparent);
}

/* HERO FIX */
#hero {
    overflow: visible;
}

/* ALT SECTION */
.channels-section {
    padding-top: 82px;
}

/* =======================
   MOBILE
   ======================= */

@media (max-width: 768px) {

    /* HERO'YA DOKUNMUYORUZ */
    #hero {
        position: relative;
    }

    /* TRUST alanına sadece boşluk veriyoruz */
    .h-trust {
        margin-bottom: 90px;
    }

    /* FLOATING CARD */
    .stats-strip {
        position: absolute;
        left: 0;
        right: 0;
        bottom: -68px;
        z-index: 10;
        padding: 0 16px;
    }

    .stats-strip-wrap {
        max-width: 330px;
        margin: 0 auto;
        padding: 14px 16px;
        border-radius: 22px;

        background: rgba(255, 250, 247, 0.42);
        backdrop-filter: blur(20px) saturate(140%);
        -webkit-backdrop-filter: blur(20px) saturate(140%);

        border: 1px solid rgba(255, 255, 255, 0.45);

        box-shadow:
            0 24px 60px rgba(223, 106, 73, 0.12),
            0 8px 24px rgba(0, 0, 0, 0.05);

        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 12px;
    }

    .stats-strip-divider {
        display: none;
    }

    .stats-strip-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .stats-icon {
        font-size: 22px;
        opacity: 0.9;
    }

    .stats-content {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .stats-strip-item strong,
    .stats-strip-item span {
        font-size: 22px;
        line-height: 1.1;
    }

    .stats-strip-item p {
        font-size: 10.5px;
        margin: 0;
        line-height: 1.2;
        font-weight: 700;
        opacity: 0.8;
    }

    /* ALT SECTION PUSH */
    .channels-section {
        padding-top: 100px;
    }
}

.process-flow {
    position: relative;
    padding: 110px 0 120px;
    background:
        radial-gradient(circle at 12% 25%, rgba(223, 106, 73, .07), transparent 28%),
        radial-gradient(circle at 86% 70%, rgba(223, 106, 73, .055), transparent 30%),
        #fdfdfd;
    overflow: hidden;
}

.process-flow-wrap {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.process-flow-head {
    max-width: 780px;
    margin: 0 auto 72px;
    text-align: center;
}

.process-flow-label {
    display: inline-flex;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(223, 106, 73, .10);
    color: var(--label);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.process-flow-head h2 {
    margin: 0 0 16px;
    font-family: var(--hero-font);
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.08;
    letter-spacing: -1.6px;
    font-weight: 700;
    color: #1a1413;
}

.process-flow-head h2 span {
    color: var(--accent);
}

.process-flow-head p {
    margin: 0 auto;
    max-width: 700px;
    color: #6f6362;
    font-size: 16px;
    line-height: 1.75;
}

.process-flow-board {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
}

.process-flow-line {
    position: absolute;
    left: 12.5%;
    right: 12.5%;
    top: 34px;
    height: 2px;
    background: rgba(223, 106, 73, .14);
    z-index: 0;
    overflow: hidden;
}

.process-flow-fill {
    display: block;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), rgba(223, 106, 73, .35));
    transition: width 1.25s cubic-bezier(.22, 1, .36, 1);
}

.process-flow.is-active .process-flow-fill {
    width: 100%;
}

.process-flow-step {
    position: relative;
    z-index: 1;
    text-align: center;
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity .55s ease,
        transform .55s cubic-bezier(.22, 1, .36, 1);
}

.process-flow-step.is-active {
    opacity: 1;
    transform: translateY(0);
}

.process-flow-dot {
    width: 68px;
    height: 68px;
    margin: 0 auto 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(223, 106, 73, .20);
    box-shadow:
        0 16px 42px rgba(223, 106, 73, .12),
        inset 0 1px 0 rgba(255, 255, 255, .8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--hero-font);
    font-size: 18px;
    font-weight: 800;
    color: #6f6362;
    transition: all .35s ease;
}

.process-flow-step.is-active .process-flow-dot {
    background: linear-gradient(180deg, #ef7a58, var(--accent));
    color: #fff;
    transform: scale(1.05);
    box-shadow:
        0 20px 54px rgba(223, 106, 73, .28),
        0 0 0 7px rgba(223, 106, 73, .08);
}

.process-flow-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(223, 106, 73, .12);
    box-shadow: 0 18px 48px rgba(18, 24, 38, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 27px;
}

.process-flow-step h3 {
    margin: 0 0 10px;
    font-family: var(--hero-font);
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -.4px;
    font-weight: 700;
    color: #1a1413;
}

.process-flow-step p {
    margin: 0 auto;
    max-width: 270px;
    color: #6f6362;
    font-size: 14px;
    line-height: 1.7;
}

/* MOBILE */
@media (max-width: 1024px) {
    .process-flow {
        padding: 78px 0 86px;
    }

    .process-flow-wrap {
        padding: 0 20px;
    }

    .process-flow-head {
        text-align: left;
        margin-bottom: 38px;
    }

    .process-flow-head h2 {
        font-size: 30px;
        letter-spacing: -1px;
    }

    .process-flow-head p {
        font-size: 14.5px;
    }

    .process-flow-board {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-left: 42px;
    }

    .process-flow-line {
        left: 17px;
        right: auto;
        top: 0;
        bottom: 0;
        width: 2px;
        height: auto;
    }

    .process-flow-fill {
        width: 100%;
        height: 0%;
        transition: height 1.25s cubic-bezier(.22, 1, .36, 1);
    }

    .process-flow.is-active .process-flow-fill {
        width: 100%;
        height: 100%;
    }

    .process-flow-step {
        text-align: left;
        padding: 20px 20px 20px 22px;
        border-radius: 24px;
        background: rgba(255, 255, 255, .72);
        border: 1px solid rgba(223, 106, 73, .12);
        box-shadow: 0 18px 48px rgba(18, 24, 38, .06);
    }

    .process-flow-dot {
        position: absolute;
        left: -54px;
        top: 22px;
        width: 38px;
        height: 38px;
        margin: 0;
        font-size: 12px;
    }

    .process-flow-icon {
        width: 46px;
        height: 46px;
        margin: 0 0 14px;
        border-radius: 15px;
        font-size: 20px;
    }

    .process-flow-step h3 {
        font-size: 18px;
    }

    .process-flow-step p {
        max-width: none;
        font-size: 13.5px;
        line-height: 1.6;
    }
}

@media (max-width: 430px) {
    .process-flow-wrap {
        padding: 0 14px;
    }

    .process-flow-board {
        padding-left: 38px;
    }

    .process-flow-step {
        padding: 18px 16px 18px 18px;
        border-radius: 22px;
    }
}

/* =========================================================
   ARVENSAN CUSTOM SECTIONS - CLEAN ADDITIONS
   Sections: Why / References / CTA
   Prefixes: arv-why-, arv-ref-, arv-cta-, arv-ui-
   ========================================================= */

/* ================= WHY SECTION ================= */
.arv-why-section {
    position: relative;
    overflow: hidden;
    padding: 72px var(--container-pad, 68px) 74px;
    background:
        radial-gradient(circle at 12% 18%, rgba(223, 106, 73, .055), transparent 24%),
        radial-gradient(circle at 90% 10%, rgba(124, 106, 247, .04), transparent 28%),
        #fdfdfd;
}

.arv-why-container {
    max-width: 1280px;
    margin: 0 auto;
}

.arv-why-head {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.arv-why-label {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--accent, #df6a49);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 6px;
}

.arv-why-label::after {
    content: "";
    display: block;
    width: 52px;
    height: 2px;
    margin: 14px auto 0;
    background: var(--accent, #df6a49);
    border-radius: 999px;
}

.arv-why-head h2 {
    margin: 0;
    color: #111620;
    font-size: clamp(34px, 3.5vw, 52px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1.8px;
}

.arv-why-head h2 strong {
    color: var(--accent, #df6a49);
    border-top-color: var(--accent, #df6a49);
}

.arv-why-head p {
    max-width: 710px;
    margin: 18px auto 0;
    color: #68707f;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 500;
}

.arv-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.arv-why-card {
    position: relative;
    min-height: 300px;
    padding: 30px 28px 52px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(17, 22, 32, .065);
    box-shadow: 0 16px 42px rgba(17, 22, 32, .07);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.arv-why-card:hover,
.arv-why-card:active {
    transform: translateY(-7px);
    border-color: rgba(223, 106, 73, .22);
    box-shadow: 0 24px 58px rgba(17, 22, 32, .11);
}

.arv-why-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 22px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    font-size: 28px;
}

.arv-why-icon-orange {
    color: #f26422;
    background: rgba(242, 100, 34, .12);
}

.arv-why-icon-purple {
    color: #6f5df6;
    background: rgba(124, 106, 247, .13);
}

.arv-why-icon-teal {
    color: #15aaa3;
    background: rgba(78, 205, 196, .14);
}

.arv-why-icon-yellow {
    color: #e4a900;
    background: rgba(247, 201, 72, .18);
}

.arv-why-card h3 {
    margin: 0;
    color: #111620;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 850;
    letter-spacing: -.6px;
}

.arv-why-card p {
    margin: 16px 0 0;
    color: #555d6d;
    font-size: 14.5px;
    line-height: 1.65;
    font-weight: 500;
}

.arv-why-line {
    position: absolute;
    left: 28px;
    bottom: 24px;
    width: 40px;
    height: 3px;
    background: var(--accent, #df6a49);
    border-radius: 999px;
    transition: width .28s ease;
}

.arv-why-card:hover .arv-why-line,
.arv-why-card:active .arv-why-line {
    width: 76px;
}

/* WHY RESPONSIVE */
@media (max-width: 1200px) {
    .arv-why-section {
        padding-left: 40px;
        padding-right: 40px;
    }

    .arv-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .arv-why-section {
        padding: 60px 30px;
    }
}

@media (max-width: 640px) {
    .arv-why-section {
        padding: 50px 20px;
    }

    .arv-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .arv-why-card {
        min-height: auto;
        padding: 28px 24px;
    }

    .arv-why-head h2 {
        font-size: 28px;
    }
}

/* ================= REFERENCES SECTION ================= */
.arv-ref-section {
    position: relative;
    overflow: hidden;
    padding: 64px 0 70px;
    background: #fdfdfd;
}

.arv-ref-section::before,
.arv-ref-section::after {
    content: "";
    position: absolute;
    top: 64px;
    width: 120px;
    height: 190px;
    background-image: radial-gradient(rgba(223, 106, 73, .28) 1px, transparent 1px);
    background-size: 14px 14px;
    opacity: .24;
    pointer-events: none;
}

.arv-ref-section::before {
    left: 28px;
}

.arv-ref-section::after {
    right: 28px;
}

.arv-ref-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.arv-ref-head {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.arv-ref-head span {
    display: inline-block;
    color: var(--accent, #df6a49);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 7px;
}

.arv-ref-head span::after {
    content: "";
    display: block;
    width: 56px;
    height: 2px;
    margin: 15px auto 0;
    background: var(--accent, #df6a49);
    border-radius: 999px;
}

.arv-ref-head h2 {
    margin: 22px 0 0;
    color: #111620;
    font-size: clamp(34px, 3.4vw, 50px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1.7px;
}

.arv-ref-head p {
    margin: 18px auto 0;
    max-width: 690px;
    color: #68707f;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 600;
}

.arv-ref-marquee-area {
    position: relative;
    height: 120px;
    margin-top: 54px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arv-ref-side {
    position: absolute;
    top: 50%;
    width: 50%;
    overflow: hidden;
    transform: translateY(-50%);
    z-index: 1;
}

.arv-ref-side-left {
    left: 0;
    padding-right: 180px;
}

.arv-ref-side-right {
    right: 0;
    padding-left: 180px;
}

.arv-ref-track {
    display: flex;
    align-items: center;
    gap: 58px;
    width: max-content;
}

.arv-ref-track-left {
    animation: arvRefMoveLeft 28s linear infinite;
}

.arv-ref-track-right {
    animation: arvRefMoveRight 28s linear infinite;
}

.arv-ref-logo {
    flex: 0 0 auto;
    width: 118px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arv-ref-logo img {
    width: 100%;
    height: 34px;
    object-fit: contain;
    opacity: .72;
    filter: grayscale(1);
    transition: opacity .25s ease, filter .25s ease, transform .25s ease;
}

.arv-ref-logo:hover img {
    opacity: .95;
    filter: grayscale(0);
    transform: scale(1.04);
}

.arv-ref-center-mask {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 430px;
    height: 120px;
    transform: translate(-50%, -50%);
    z-index: 4;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(253, 253, 253, 0) 0%, #fdfdfd 18%, #fdfdfd 82%, rgba(253, 253, 253, 0) 100%);
}

.arv-ref-center {
    position: relative;
    z-index: 6;
    width: 280px;
    height: 78px;
    padding: 18px 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(17, 22, 32, .08);
    border-radius: 999px;
    box-shadow: 0 22px 60px rgba(17, 22, 32, .11), 0 0 0 18px rgba(255, 255, 255, .62);
}

.arv-ref-center img {
    width: auto;
    max-width: 100%;
    max-height: 42px;
    object-fit: contain;
}

.arv-ref-fade {
    position: absolute;
    top: 0;
    width: 140px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.arv-ref-fade-left {
    left: 0;
    background: linear-gradient(to right, #fdfdfd 0%, rgba(253, 253, 253, .92) 42%, transparent 100%);
}

.arv-ref-fade-right {
    right: 0;
    background: linear-gradient(to left, #fdfdfd 0%, rgba(253, 253, 253, .92) 42%, transparent 100%);
}

/* REFERENCES RESPONSIVE */
@media (max-width: 900px) {
    .arv-ref-marquee-area {
        height: auto;
        flex-direction: column;
        gap: 30px;
        padding: 30px 0;
    }

    .arv-ref-side {
        position: relative;
        top: auto;
        transform: none;
        width: 100%;
        padding: 0 !important;
    }

    .arv-ref-center-mask {
        width: 100%;
        height: 60px;
        background: linear-gradient(90deg, rgba(253, 253, 253, 0) 0%, #fdfdfd 25%, #fdfdfd 75%, rgba(253, 253, 253, 0) 100%);
    }

    .arv-ref-center {
        width: 180px;
        height: 54px;
        padding: 10px 20px;
        box-shadow: 0 12px 30px rgba(17, 22, 32, .08), 0 0 0 10px rgba(255, 255, 255, .62);
    }

    .arv-ref-center img {
        max-height: 28px;
    }

    .arv-ref-track {
        gap: 30px;
    }

    .arv-ref-logo {
        width: 100px;
    }
}

@keyframes arvRefMoveLeft {
    from {
        transform: translateX(0);
    }

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

@keyframes arvRefMoveRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* =========================================================
   ARVENSAN CTA SECTION
   Prefix: arv-cta-
   ========================================================= */

.arv-cta-section {
    padding: 56px var(--container-pad, 68px) 72px;
    background: #fdfdfd;
}

.arv-cta-container {
    max-width: 1180px;
    margin: 0 auto;
}

.arv-cta-card {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    padding: 44px 56px;
    display: grid;
    grid-template-columns: 1fr .85fr;
    align-items: center;
    gap: 32px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 75% 45%, rgba(223, 106, 73, .18), transparent 35%),
        linear-gradient(135deg, #171B23 0%, #1D2230 100%);
    box-shadow: 0 26px 70px rgba(17, 22, 32, .18);
}

.arv-cta-card::before {
    content: "";
    position: absolute;
    left: 30px;
    bottom: 24px;
    width: 80px;
    height: 70px;
    background-image: radial-gradient(rgba(223, 106, 73, .35) 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: .25;
    pointer-events: none;
}

.arv-cta-card::after {
    content: "";
    position: absolute;
    right: -90px;
    top: -120px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .05);
    pointer-events: none;
}

/* CONTENT */

.arv-cta-content {
    position: relative;
    z-index: 4;
}

.arv-cta-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--accent, #df6a49);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 5px;
}

.arv-cta-eyebrow::after {
    content: "";
    display: block;
    width: 46px;
    height: 2px;
    margin-top: 10px;
    background: var(--accent, #df6a49);
}

.arv-cta-content h2 {
    margin: 0;
    max-width: 560px;
    color: #ffffff;
    font-size: clamp(32px, 3vw, 46px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.arv-cta-content p {
    max-width: 540px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .68);
    font-size: 15px;
    line-height: 1.6;
}

/* BUTTONS */

.arv-cta-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
}

.arv-cta-btn {
    height: 44px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.arv-cta-btn:hover {
    transform: translateY(-2px);
}

.arv-cta-btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent, #df6a49), #ff6b2d);
    box-shadow: 0 12px 26px rgba(223, 106, 73, .3);
}

.arv-cta-btn-secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .2);
}

.arv-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .32);
}

.arv-cta-.btn-secondary-nav:hover {
    background: rgba(223, 106, 73, .07);
    border-color: rgba(223, 106, 73, .45);
    color: var(--accent);
}

/* COMPACT HEADER FOR XL SCREENS */
@media (min-width: 992px) and (max-width: 1199.98px) {
    #nav-links {
        margin-left: 10px;
    }

    .nav-link-plain,
    .nav-btn {
        padding: 0 6px;
        font-size: 12.5px;
    }

    #nav-cta {
        margin-left: 10px;
        gap: 6px;
    }

    .btn-primary-nav,
    .btn-secondary-nav {
        padding: 0 10px;
        font-size: 12.5px;
        height: 34px;
    }

    .nav-logo-img {
        height: 24px;
    }
}

/* VISUAL */

.arv-cta-visual {
    position: relative;
    z-index: 3;
    height: 220px;
}

.arv-cta-flow {
    position: absolute;
    inset: 0;
}

.arv-cta-flow::before {
    content: "";
    position: absolute;
    inset: 8px;
    background:
        radial-gradient(circle at 50% 50%, rgba(223, 106, 73, .24), transparent 38%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .055), transparent 58%);
    pointer-events: none;
}

.arv-cta-flow::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 320px;
    height: 190px;
    transform: translate(-50%, -50%) rotate(-13deg);
    border-radius: 50%;
    border: 1px solid rgba(223, 106, 73, .11);
    opacity: .85;
    pointer-events: none;
}

/* CORE */

.arv-cta-flow-core {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 74px;
    height: 74px;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .03));
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow:
        0 0 38px rgba(223, 106, 73, .34),
        0 0 90px rgba(223, 106, 73, .14),
        inset 0 1px 0 rgba(255, 255, 255, .08);
}

.arv-cta-flow-core::before {
    content: "";
    position: absolute;
    inset: -18px;
    border-radius: 30px;
    border: 1px solid rgba(223, 106, 73, .12);
}

.arv-cta-flow-core::after {
    content: "";
    position: absolute;
    inset: -34px;
    border-radius: 42px;
    border: 1px solid rgba(255, 255, 255, .045);
}

.arv-cta-flow-core span {
    color: var(--accent, #df6a49);
    font-size: 30px;
    font-weight: 950;
}

/* NODES */

.arv-cta-flow-node {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent, #df6a49);
    box-shadow:
        0 0 16px rgba(223, 106, 73, .92),
        0 0 34px rgba(223, 106, 73, .32);
    opacity: .85;
}

.arv-cta-flow-node::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(223, 106, 73, .18);
}

.arv-cta-flow-node-1 {
    left: 22%;
    top: 28%;
}

.arv-cta-flow-node-2 {
    right: 20%;
    top: 26%;
}

.arv-cta-flow-node-3 {
    right: 18%;
    bottom: 28%;
}

.arv-cta-flow-node-4 {
    left: 24%;
    bottom: 27%;
}

.arv-cta-flow-node-5 {
    left: 46%;
    top: 13%;
    width: 7px;
    height: 7px;
    opacity: .58;
}

.arv-cta-flow-node-6 {
    right: 36%;
    bottom: 12%;
    width: 7px;
    height: 7px;
    opacity: .58;
}

/* LINES */

.arv-cta-flow-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(223, 106, 73, .9), transparent);
    box-shadow: 0 0 14px rgba(223, 106, 73, .45);
    opacity: .66;
}

.arv-cta-flow-line-1 {
    width: 190px;
    left: 28%;
    top: 43%;
    transform: rotate(-18deg);
}

.arv-cta-flow-line-2 {
    width: 190px;
    right: 24%;
    top: 43%;
    transform: rotate(18deg);
}

.arv-cta-flow-line-3 {
    width: 175px;
    right: 25%;
    bottom: 40%;
    transform: rotate(-18deg);
}

.arv-cta-flow-line-4 {
    width: 175px;
    left: 30%;
    bottom: 40%;
    transform: rotate(18deg);
}

.arv-cta-flow-line-5 {
    width: 100px;
    left: 48%;
    top: 25%;
    transform: rotate(88deg);
    opacity: .36;
}

.arv-cta-flow-line-6 {
    width: 100px;
    left: 48%;
    bottom: 25%;
    transform: rotate(88deg);
    opacity: .36;
}

/* ORBITS */

.arv-cta-flow-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .055);
    pointer-events: none;
}

.arv-cta-flow-orbit-1 {
    left: 14%;
    top: 10%;
    width: 360px;
    height: 210px;
    transform: rotate(14deg);
}

.arv-cta-flow-orbit-2 {
    right: -6%;
    top: 2%;
    width: 270px;
    height: 180px;
    transform: rotate(-20deg);
    border-color: rgba(223, 106, 73, .07);
}

/* MOBILE */

@media (max-width: 991.98px) {
    .arv-cta-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .arv-cta-visual {
        height: 180px;
    }
}

@media (max-width: 767.98px) {
    .arv-cta-section {
        padding: 46px 20px 58px;
    }

    .arv-cta-container {
        max-width: 640px;
    }

    .arv-cta-card {
        min-height: auto;
        padding: 38px 24px;
        grid-template-columns: 1fr;
        gap: 24px;
        border-radius: 24px;
        text-align: center;
    }

    .arv-cta-content h2 {
        margin: 0 auto;
    }

    .arv-cta-content p {
        margin: 16px auto 0;
    }

    .arv-cta-actions {
        justify-content: center;
        margin-top: 28px;
    }

    .arv-cta-card::before,
    .arv-cta-card::after {
        display: none;
    }

    .arv-cta-eyebrow {
        margin-bottom: 14px;
        font-size: 10px;
        letter-spacing: 3px;
    }

    .arv-cta-content h2 {
        font-size: 25px;
        line-height: 1.12;
        letter-spacing: -.8px;
    }

    .arv-cta-content p {
        margin-top: 13px;
        font-size: 13.5px;
        line-height: 1.55;
    }

    .arv-cta-actions {
        gap: 10px;
        margin-top: 20px;
    }

    .arv-cta-btn {
        height: 38px;
        padding: 0 14px;
        font-size: 12.5px;
        border-radius: 8px;
    }

    .arv-cta-visual {
        height: 120px;
        opacity: .86;
    }

    .arv-cta-flow-core {
        width: 50px;
        height: 50px;
        border-radius: 15px;
    }

    .arv-cta-flow-core::before {
        inset: -12px;
        border-radius: 22px;
    }

    .arv-cta-flow-core::after {
        display: none;
    }

    .arv-cta-flow-core span {
        font-size: 21px;
    }

    .arv-cta-flow-node {
        width: 8px;
        height: 8px;
    }

    .arv-cta-flow-node-5,
    .arv-cta-flow-node-6,
    .arv-cta-flow-line-5,
    .arv-cta-flow-line-6,
    .arv-cta-flow-orbit-2 {
        display: none;
    }

    .arv-cta-flow-line-1,
    .arv-cta-flow-line-2 {
        width: 95px;
    }

    .arv-cta-flow-line-3,
    .arv-cta-flow-line-4 {
        width: 88px;
    }

    .arv-cta-flow-orbit-1 {
        left: 5%;
        top: 8%;
        width: 230px;
        height: 120px;
    }
}

/* =========================================================
   ARVENSAN FAQ SECTION
   Prefix: arv-faq-
   ========================================================= */

.arv-faq-section {
    padding: 76px var(--container-pad, 68px);
    background:
        radial-gradient(circle at 14% 20%, rgba(223, 106, 73, .045), transparent 28%),
        #fdfdfd;
}

.arv-faq-container {
    max-width: 1180px;
    margin: 0 auto;
}

.arv-faq-head {
    max-width: 720px;
    margin: 0 auto 38px;
    text-align: center;
}

.arv-faq-head span {
    display: inline-block;
    color: var(--accent, #df6a49);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 7px;
}

.arv-faq-head h2 {
    margin: 14px 0 0;
    color: #111620;
    font-size: clamp(34px, 3.6vw, 52px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1.8px;
}

.arv-faq-head p {
    margin: 14px auto 0;
    color: #68707f;
    font-size: 16px;
    line-height: 1.6;
}

/* LAYOUT */

.arv-faq-layout {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 22px;
    align-items: start;
}

/* SIDEBAR */

.arv-faq-sidebar {
    padding: 16px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(17, 22, 32, .08);
    box-shadow: 0 18px 42px rgba(17, 22, 32, .055);
}

.arv-faq-brand {
    padding: 8px 8px 16px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(17, 22, 32, .08);
}

.arv-faq-brand img {
    max-width: 155px;
    max-height: 40px;
    object-fit: contain;
}

.arv-faq-brand p {
    margin: 10px 0 0;
    color: #737b89;
    font-size: 13px;
    line-height: 1.5;
}

.arv-faq-tabs-wrap {
    display: block;
}

.arv-faq-tab {
    width: 100%;
    height: 46px;
    margin-top: 8px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 0;
    outline: none;
    border-radius: 14px;
    background: transparent;
    color: #2d3441;
    font-size: 14.5px;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}

.arv-faq-tab i {
    color: var(--accent, #df6a49);
    font-size: 17px;
}

.arv-faq-tab:hover {
    background: rgba(223, 106, 73, .07);
}

.arv-faq-tab.is-active {
    color: #ffffff;
    background: linear-gradient(135deg, #171B23, #1D2230);
    box-shadow: 0 12px 26px rgba(17, 22, 32, .14);
}

.arv-faq-tab:focus,
.arv-faq-question:focus {
    outline: none;
}

/* CONTENT */

.arv-faq-content {
    padding: 16px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(17, 22, 32, .08);
    box-shadow: 0 18px 42px rgba(17, 22, 32, .055);
}

.arv-faq-panel {
    display: none;
}

.arv-faq-panel.is-active {
    display: block;
    animation: arvFaqFade .45s ease both;
}

@keyframes arvFaqFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.arv-faq-item {
    border: 1px solid rgba(17, 22, 32, .085);
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
    transition:
        border-color .35s ease,
        box-shadow .35s ease;
}

.arv-faq-item+.arv-faq-item {
    margin-top: 10px;
}

.arv-faq-item.is-open {
    border-color: rgba(223, 106, 73, .24);
    box-shadow: 0 14px 30px rgba(17, 22, 32, .045);
}

.arv-faq-question {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 0;
    outline: none;
    background: transparent;
    color: #111620;
    font-size: 15.5px;
    font-weight: 850;
    text-align: left;
    cursor: pointer;
}

.arv-faq-question span {
    position: relative;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
}

.arv-faq-question span::before,
.arv-faq-question span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 15px;
    height: 2px;
    border-radius: 999px;
    background: #111620;
    transform: translate(-50%, -50%);
    transition:
        transform .35s ease,
        background .35s ease;
}

.arv-faq-question span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.arv-faq-item.is-open .arv-faq-question span::before,
.arv-faq-item.is-open .arv-faq-question span::after {
    background: var(--accent, #df6a49);
}

.arv-faq-item.is-open .arv-faq-question span::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.arv-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease;
}

.arv-faq-answer-inner {
    padding: 0 18px 18px;
}

.arv-faq-answer p {
    margin: 0;
    color: #68707f;
    font-size: 14.5px;
    line-height: 1.65;
}

/* MOBILE */

@media (max-width: 900px) {
    .arv-faq-section {
        padding: 58px 22px;
    }

    .arv-faq-head {
        text-align: left;
        margin-bottom: 26px;
    }

    .arv-faq-head h2 {
        font-size: 32px;
    }

    .arv-faq-layout {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .arv-faq-sidebar {
        padding: 12px;
        border-radius: 18px;
    }

    .arv-faq-brand {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 6px 6px 12px;
        margin-bottom: 10px;
    }

    .arv-faq-brand img {
        max-width: 150px;
    }

    .arv-faq-brand p {
        display: none;
    }

    .arv-faq-tabs-wrap {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .arv-faq-tabs-wrap::-webkit-scrollbar {
        display: none;
    }

    .arv-faq-tab {
        flex: 0 0 auto;
        width: auto;
        height: 38px;
        margin-top: 0;
        padding: 0 12px;
        border-radius: 999px;
        font-size: 12.5px;
        gap: 7px;
        white-space: nowrap;
    }

    .arv-faq-tab i {
        font-size: 14px;
    }

    .arv-faq-content {
        padding: 10px;
        border-radius: 18px;
    }

    .arv-faq-question {
        min-height: 52px;
        padding: 0 14px;
        font-size: 14px;
    }

    .arv-faq-answer-inner {
        padding: 0 14px 15px;
    }

    .arv-faq-answer p {
        font-size: 13.5px;
    }
}

@media (max-width: 480px) {
    .arv-faq-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .arv-faq-brand img {
        max-width: 140px;
    }

    .arv-faq-head h2 {
        font-size: 30px;
    }
}

/* =========================================================
   ARVENSAN PREMIUM FOOTER
   ========================================================= */

:root {
    --footer-acc: #df6a49;
    --footer-acc-rgb: 223, 106, 73;
    --footer-bg: #171b23;
    --footer-bg-2: #1d2230;
}

.arv-premium-footer {
    color: #ffffff;
    background: var(--footer-bg);
    overflow: hidden;
}

.arv-footer-container {
    width: min(100% - 80px, 1320px);
    margin: 0 auto;
}

/* HERO */

.arv-footer-hero-wrap {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--footer-bg) 0%, var(--footer-bg-2) 100%);
}

.arv-footer-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.arv-footer-hero-bg img {
    position: absolute;
    right: 0;
    top: 0;
    width: 70%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 1;
    display: block;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    filter: contrast(1.12) saturate(1.18) brightness(1.08);
}

.arv-footer-hero-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg,
            rgba(23, 27, 35, .96) 0%,
            rgba(23, 27, 35, .82) 30%,
            rgba(23, 27, 35, .04) 58%,
            rgba(23, 27, 35, .32) 100%);
}

.arv-footer-hero-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 135px;
    z-index: 3;
    pointer-events: none;
    background:
        linear-gradient(to bottom,
            rgba(23, 27, 35, 0) 0%,
            rgba(23, 27, 35, .55) 52%,
            rgba(23, 27, 35, 1) 100%);
}

.arv-footer-hero {
    position: relative;
    z-index: 4;
    padding: 62px 0 72px;
}

.arv-footer-hero-content {
    max-width: 600px;
}

.arv-footer-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--footer-acc);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.arv-footer-kicker::after {
    content: "";
    width: 62px;
    height: 2px;
    background: var(--footer-acc);
    border-radius: 999px;
}

.arv-footer-hero h2 {
    margin: 18px 0 0;
    color: #ffffff;
    font-size: clamp(34px, 3.5vw, 52px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1.8px;
}

.arv-footer-hero h2 span {
    color: var(--footer-acc);
}

.arv-footer-hero p {
    max-width: 535px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .73);
    font-size: 15.5px;
    line-height: 1.65;
}

.arv-footer-hero-actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 14px;
}

/* WAVE */

.arv-footer-wave {
    position: relative;
    z-index: 5;
    margin-top: -2px;
    line-height: 0;
    background: var(--footer-bg);
}

.arv-footer-wave svg {
    display: block;
    width: 100%;
    height: 56px;
}

/* MAIN */

.arv-footer-main {
    position: relative;
    z-index: 5;
    padding: 32px 0 20px;
    background: var(--footer-bg);
}

.arv-footer-grid {
    display: grid;
    grid-template-columns: 1.65fr .82fr .92fr 1fr 1.28fr;
    gap: 38px;
    align-items: start;
}

.arv-footer-brand {
    padding-right: 30px;
    border-right: 1px solid rgba(255, 255, 255, .11);
}

.arv-footer-brand img {
    height: 44px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 20px;
    display: block;
}

.arv-footer-brand p {
    margin: 0;
    color: rgba(255, 255, 255, .70);
    font-size: 14.5px;
    line-height: 1.75;
}

.arv-footer-small-line {
    display: block;
    width: 38px;
    height: 2px;
    margin: 22px 0;
    background: var(--footer-acc);
}

.arv-footer-socials {
    display: flex;
    gap: 11px;
}

.arv-footer-socials a {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .02);
    transition:
        transform .25s ease,
        color .25s ease,
        border-color .25s ease,
        background .25s ease;
}

.arv-footer-socials a:hover {
    color: var(--footer-acc);
    border-color: rgba(var(--footer-acc-rgb), .55);
    background: rgba(var(--footer-acc-rgb), .08);
    transform: translateY(-3px);
}

.arv-footer-col {
    border-right: 1px solid rgba(255, 255, 255, .11);
}

.arv-footer-col h4,
.arv-footer-contact h4 {
    margin: 0;
    color: #ffffff;
    font-size: 15.5px;
    font-weight: 700;
    letter-spacing: .2px;
}

.arv-footer-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color .24s ease;
}

.arv-footer-toggle i {
    display: none;
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    transition: transform .62s cubic-bezier(.22, 1, .36, 1), color .24s ease;
}

.arv-footer-col.active .arv-footer-toggle {
    color: var(--accent);
}

.arv-footer-col.active .arv-footer-toggle i {
    color: var(--accent);
    transform: rotate(180deg);
}

.arv-footer-col a {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    padding: 10px 0;
    color: rgba(255, 255, 255, .58);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    transition: color .24s ease, transform .24s ease;
}

.arv-footer-col a:hover {
    color: #ffffff;
    transform: translateX(3px);
}



/* CONTACT */

.arv-contact-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 12px;
    align-items: center;
}

.arv-contact-item+.arv-contact-item {
    margin-top: 10px;
}

.arv-contact-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--footer-acc);
    font-size: 18px;
    border-radius: 12x;
    border: 1px solid rgba(var(--footer-acc-rgb), .44);
    background: rgba(var(--footer-acc-rgb), .04);
}

.arv-contact-item a,
.arv-contact-item strong {
    display: block;
    color: #ffffff;
    font-size: 14.5px;
    font-weight: 800;
    text-decoration: none;
}

.arv-contact-item a:hover {
    color: var(--footer-acc);
}

.arv-contact-item span {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, .44);
    font-size: 12.5px;
}

/* BOTTOM */

.arv-footer-bottom {
    position: relative;
    z-index: 5;
    padding-bottom: 18px;
    background: var(--footer-bg);
}

.arv-footer-bottom-inner {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .11);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.arv-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .66);
    font-size: 13.5px;
}

.arv-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.arv-footer-bottom a {
    color: rgba(255, 255, 255, .66);
    text-decoration: none;
    font-size: 13.5px;
    transition: color .25s ease;
}

.arv-footer-bottom a:hover {
    color: var(--footer-acc);
}

.arv-footer-bottom-links .dot {
    width: 5px;
    height: 5px;
    display: inline-block;
    border-radius: 50%;
    background: var(--footer-acc);
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .arv-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }

    .arv-footer-brand {
        grid-column: span 2;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        padding-bottom: 30px;
        margin-bottom: 10px;
    }

    .arv-footer-col {
        border-right: none;
    }
}

@media (max-width: 991.98px) {
    .arv-footer-container {
        width: min(100% - 34px, 100%);
    }

    .arv-footer-hero-bg {
        display: block !important;
    }

    .arv-footer-hero-bg img {
        object-position: 70% top;
        opacity: .62;
        display: block !important;
        filter: brightness(1.2) contrast(1.1);
    }

    .arv-footer-hero h2 {
        font-size: 26px;
    }

    .arv-footer-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .arv-footer-hero-actions .arv-cta-btn {
        width: 100%;
        height: 48px;
    }

    .arv-footer-grid {
        grid-template-columns: 1fr;
    }

    .arv-footer-brand,
    .arv-footer-contact {
        grid-column: span 1;
    }

    /* Footer Accordion Mobile & Tablet */
    .arv-footer-col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        padding: 0;
    }

    .arv-footer-toggle {
        padding: 16px 0;
        cursor: pointer;
    }

    .arv-footer-toggle i {
        display: block;
    }

    .arv-footer-links {
        max-height: 0;
        overflow: hidden;
        padding: 0;
        background: rgba(255, 255, 255, .01);
        transition: max-height .42s ease, padding .24s ease;
    }

    .arv-footer-col.active .arv-footer-links {
        max-height: 1000px;
        /* High enough for content */
        padding: 8px 0 20px;
        transition: max-height 1.05s cubic-bezier(.25, .46, .45, .94), padding .38s ease;
    }

    .arv-footer-links a {
        padding: 11px 0;
        color: rgba(255, 255, 255, .55);
    }

    .arv-footer-links .arv-contact-item {
        padding: 10px 0;
        margin-bottom: 0;
    }

    .arv-footer-links .arv-contact-icon {
        background: rgba(223, 106, 73, .12);
        color: var(--accent);
    }

    .arv-footer-bottom-links {
        flex-wrap: wrap;
        gap: 14px;
    }
}

/* =========================================================
   ULTRA-WIDE & 4K SUPPORT (XXL+)
   ========================================================= */

@media (min-width: 1600px) {
    :root {
        --container-pad: 110px;
    }

    .arv-footer-container,
    .arv-cta-container,
    .arv-faq-container,
    .arv-why-container,
    .arv-ref-container {
        max-width: 1460px;
    }

    .h-grid {
        max-width: 1640px;
        margin: 0 auto;
    }

    .h-title {
        max-width: 860px;
    }

    .h-desc {
        max-width: 620px;
    }

    .h-visual {
        max-width: 720px;
    }
}

@media (min-width: 2000px) {
    :root {
        --container-pad: 160px;
    }

    .arv-footer-container,
    .arv-cta-container,
    .arv-faq-container,
    .arv-why-container,
    .arv-ref-container {
        max-width: 1820px;
    }

    .h-grid {
        max-width: 1940px;
    }

    .h-title {
        max-width: 1100px;
        font-size: 82px;
    }

    .h-desc {
        max-width: 800px;
        font-size: 19px;
    }

    .h-visual {
        max-width: 960px;
        min-height: 720px;
    }

    .h-logos-track {
        max-width: 740px;
    }
}

/* =====================================================
   ARVENSAN FLOATING UI - FINAL (CLEAN + RECTANGLE)
===================================================== */

.arw-floating {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* =====================
   FLOAT BUTTONS
===================== */

.arw-float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.22);
    transition: all 0.25s ease;
}

.arw-float-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.28);
}

.arw-float-btn svg {
    width: 26px;
    height: 26px;
}

/* Scroll Top */
.arw-scrolltop {
    background: #c81e36;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.arw-scrolltop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.arw-scrolltop svg {
    fill: #fff;
}

/* WhatsApp */
.arw-whatsapp-toggle {
    background: #25d366;
}


/* =====================================================
   POPUP (RECTANGLE COMPACT)
===================================================== */

.arw-whatsapp-popup {
    position: fixed;
    right: 82px;
    bottom: 20px;

    width: 320px;
    padding: 14px 16px;

    background: #fff;
    border-radius: 14px;

    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(12px) scale(0.98);
    transition:
        opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.35s;

    z-index: 9998;
}

.arw-whatsapp-popup.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}


/* =====================
   CLOSE BUTTON
===================== */

.arw-popup-close {
    position: absolute;
    top: 6px;
    right: 8px;
    font-size: 20px;
    border: none;
    background: none;
    cursor: pointer;
    color: #111;
}


/* =====================
   TEXT
===================== */

.arw-whatsapp-popup span {
    display: block;
    font-size: 12px;
    margin-bottom: 3px;
    color: #14213d;
}

.arw-whatsapp-popup strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 4px;
    color: #14213d;
}

.arw-whatsapp-popup p {
    font-size: 12.5px;
    color: #334155;
    margin-bottom: 10px;
    line-height: 1.4;
}


/* =====================
   BUTTONS
===================== */

.arw-popup-actions {
    display: flex;
    gap: 6px;
}

.arw-popup-actions a {
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
}

/* WhatsApp */
.arw-popup-actions a:first-child {
    background: #25d366;
    color: #fff;
}

/* Outline */
.arw-popup-actions a.outline {
    background: #fff;
    border: 1px solid #d1d5db;
    color: #334155;
}


/* =====================================================
   MOBILE
===================================================== */
@media (max-width: 768px) {

    .arw-floating {
        right: 14px;
        bottom: 14px;
        gap: 8px;
    }

    .arw-float-btn {
        width: 48px;
        height: 48px;
    }

    .arw-float-btn svg {
        width: 24px;
        height: 24px;
    }

    /* 🔥 ASIL FIX */
    .arw-whatsapp-popup {
        right: 14px;
        left: auto;
        /* ÖNEMLİ */
        bottom: 78px;
        /* WhatsApp üstü */

        width: 260px;
        /* sabit küçük */
        max-width: 260px;

        padding: 14px;

        border-radius: 14px;
    }

}

/* =========================================================
   HAKKIMIZDA PAGE FINAL
========================================================= */

.aboutx-page {
    background: #fdfdfd;
    color: #171b23;
    overflow: hidden;
}

.aboutx-shell {
    width: min(100% - 72px, 1180px);
    margin: 0 auto;
}

.aboutx-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    color: #df6a49;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

/* HERO */
/* =========================================================
   HAKKIMIZDA PAGE FINAL - POLISHED
========================================================= */

.aboutx-page {
    background: #fdfdfd;
    color: #171b23;
    overflow: hidden;
}

.aboutx-shell {
    width: min(100% - 72px, 1180px);
    margin: 0 auto;
}

.aboutx-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    color: #df6a49;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

/* ================= HERO ================= */

.aboutx-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    color: #fff;
    background: #171b23;
    overflow: hidden;
    isolation: isolate;
}

.aboutx-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.aboutx-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .95;
    filter: saturate(1.2) contrast(1.12) brightness(.98);
    animation: aboutHeroZoom 20s ease-in-out infinite alternate;
}

@keyframes aboutHeroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

.aboutx-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg,
            rgba(23, 27, 35, .82) 0%,
            rgba(23, 27, 35, .68) 42%,
            rgba(23, 27, 35, .38) 68%,
            rgba(23, 27, 35, .12) 100%),
        radial-gradient(circle at 78% 26%, rgba(223, 106, 73, .18), transparent 30%);
}

.aboutx-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 52px;
    align-items: center;
    padding: 48px 0 54px;
}

.aboutx-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 750;
}

.aboutx-breadcrumb a,
.aboutx-breadcrumb span {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
}

.aboutx-breadcrumb a:hover {
    color: #fff;
}

.aboutx-breadcrumb i {
    font-size: 11px;
    color: rgba(255, 255, 255, .48);
}

.aboutx-breadcrumb strong {
    color: #ef825e;
}

.aboutx-hero h1 {
    margin: 0;
    color: #fff;
    font-family: var(--hero-font, "Montserrat", "Inter", sans-serif);
    font-size: clamp(44px, 4.5vw, 62px);
    line-height: 1.02;
    letter-spacing: -1.2px;
    font-weight: 800;
    text-shadow: 0 16px 34px rgba(0, 0, 0, .28);
}

.aboutx-hero p {
    max-width: 620px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .84);
    font-size: 16.5px;
    line-height: 1.68;
    text-shadow: 0 12px 28px rgba(0, 0, 0, .24);
}

/* ================= BİZ KİMİZ ================= */

.aboutx-intro {
    position: relative;
    padding: 96px 0 92px;
    background:
        radial-gradient(circle at 12% 18%, rgba(223, 106, 73, .045), transparent 28%),
        #fdfdfd;
}

.aboutx-intro-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 76px;
    align-items: start;
}

.aboutx-section-title h2,
.aboutx-services-head h2,
.aboutx-values-left h2,
.aboutx-team h2 {
    margin: 0;
    color: #171b23;
    font-family: var(--hero-font, "Montserrat", sans-serif);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.4px;
    font-weight: 800;
}

.aboutx-section-title p {
    max-width: 620px;
    margin: 18px 0 0;
    color: #675f5c;
    font-size: 16px;
    line-height: 1.7;
}

.aboutx-story {
    display: grid;
    gap: 18px;
    color: #5f5855;
    font-size: 17px;
    line-height: 1.82;
}

.aboutx-story p {
    margin: 0;
}

/* ================= SERVICES ================= */

.aboutx-services {
    padding: 88px 0;
    background: #f7f5f3;
}

.aboutx-services-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.aboutx-all-link {
    height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(23, 27, 35, .16);
    color: #171b23;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: all .22s ease;
}

.aboutx-all-link:hover {
    color: #fff;
    background: #171b23;
    border-color: #171b23;
}

.aboutx-services-slider {
    position: relative;
}

.aboutx-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 42px;
}

.aboutx-service-card {
    position: relative;
    min-height: 250px;
    padding: 28px;
    border: 1px solid rgba(23, 27, 35, .085);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .92));
    color: inherit;
    text-decoration: none;
    box-shadow: 0 18px 44px rgba(23, 27, 35, .045);
    overflow: hidden;
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.aboutx-service-card::after {
    content: "";
    position: absolute;
    right: -50px;
    top: -50px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(223, 106, 73, .14);
    opacity: .2;
    transition: transform .28s ease, opacity .28s ease;
}

.aboutx-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(223, 106, 73, .28);
    box-shadow: 0 30px 70px rgba(223, 106, 73, .15);
}

.aboutx-service-card:hover::after {
    transform: scale(1.25);
    opacity: .42;
}

.aboutx-service-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #df6a49;
    background: #171b23;
    font-size: 24px;
    position: relative;
    z-index: 2;
}

.aboutx-service-card strong {
    display: block;
    margin-top: 30px;
    color: #171b23;
    font-size: 19px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.aboutx-service-card span {
    display: block;
    margin-top: 10px;
    color: #675f5c;
    font-size: 14px;
    line-height: 1.62;
    position: relative;
    z-index: 2;
}

.aboutx-service-card em {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 20px;
    color: #df6a49;
    font-size: 13px;
    font-style: normal;
    font-weight: 850;
    position: relative;
    z-index: 2;
}

.aboutx-services-nav {
    display: none;
}

/* ================= VALUES ================= */

.aboutx-values-section {
    position: relative;
    padding: 88px 0;
    color: #fff;
    background: #171b23;
    overflow: hidden;
    isolation: isolate;
}

.aboutx-values-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.aboutx-values-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    filter: saturate(1.3) contrast(1.15) brightness(1.05);
}

.aboutx-values-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(23, 27, 35, .85), rgba(23, 27, 35, .65)),
        radial-gradient(circle at 78% 28%, rgba(223, 106, 73, .18), transparent 32%);
}

.aboutx-values-grid-main {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .98fr 1.02fr;
    gap: 72px;
    align-items: center;
}

.aboutx-values-left h2 {
    color: #fff;
}

.aboutx-value-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.aboutx-value-grid article {
    text-align: center;
}

.aboutx-value-grid i {
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ef825e;
    border: 1px solid rgba(239, 130, 94, .48);
    background: rgba(239, 130, 94, .09);
    font-size: 24px;
}

.aboutx-value-grid strong {
    display: block;
    color: #fff;
    font-size: 15px;
    margin-bottom: 8px;
}

.aboutx-value-grid p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    line-height: 1.55;
}

.aboutx-difference {
    padding-left: 54px;
    border-left: 1px solid rgba(255, 255, 255, .18);
}

.aboutx-difference-list {
    display: grid;
    gap: 15px;
    margin-top: 26px;
}

.aboutx-difference-list div {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 14px;
    align-items: start;
}

.aboutx-difference-list i {
    color: #ef825e;
    font-size: 22px;
    transform: translateY(1px);
}

.aboutx-difference-list span {
    color: rgba(255, 255, 255, .9);
    font-size: 15px;
    line-height: 1.55;
    font-weight: 650;
}

/* ================= PROCESS ================= */

.aboutx-process-reuse {
    padding-top: 86px;
}

/* ================= TEAM ================= */

.aboutx-team {
    padding: 88px 0;
    background: #fdfdfd;
}

.aboutx-team-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 54px;
    align-items: center;
}

.aboutx-team-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
    text-align: center;
}

.aboutx-team-list article {
    min-width: 0;
}

.aboutx-team-avatar {
    width: 96px;
    height: 96px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 30% 20%, rgba(239, 130, 94, .35), transparent 35%),
        linear-gradient(135deg, #171b23, #252b38);
    color: #ef825e;
    font-size: 30px;
    font-weight: 900;
    box-shadow: 0 18px 38px rgba(23, 27, 35, .12);
}

.aboutx-team-list strong {
    display: block;
    color: #171b23;
    font-size: 15px;
    font-weight: 850;
}

.aboutx-team-list span {
    display: block;
    margin-top: 5px;
    color: #675f5c;
    font-size: 13px;
}

/* ================= CTA ================= */

.aboutx-cta-reuse {
    padding-top: 40px;
}

/* ================= REVEAL FIX ================= */

.aboutx-page .reveal-up {
    transform: translateY(10px);
}

.aboutx-page .reveal-up.is-visible {
    transform: translateY(0);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199.98px) {

    .aboutx-hero-grid,
    .aboutx-intro-grid,
    .aboutx-values-grid-main,
    .aboutx-team-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .aboutx-difference {
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .18);
        padding-top: 42px;
    }

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

    .aboutx-team-list {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {

    .aboutx-shell {
        width: min(100% - 44px, 100%);
    }

    .aboutx-hero {
        min-height: auto;
    }

    .aboutx-hero-grid {
        padding: 44px 0 50px;
    }

    .aboutx-value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }

    .aboutx-intro,
    .aboutx-services,
    .aboutx-values-section,
    .aboutx-team {
        padding: 72px 0;
    }
}

@media (max-width: 767.98px) {

    .aboutx-shell {
        width: min(100% - 30px, 100%);
    }

    .aboutx-breadcrumb {
        margin-bottom: 24px;
        font-size: 12px;
    }

    .aboutx-kicker {
        font-size: 11px;
        letter-spacing: .13em;
    }

    .aboutx-hero h1 {
        font-size: clamp(34px, 10vw, 46px);
        line-height: 1.04;
        letter-spacing: -.8px;
    }

    .aboutx-hero p {
        margin-top: 16px;
        font-size: 15px;
        line-height: 1.65;
    }

    .aboutx-intro,
    .aboutx-services,
    .aboutx-values-section,
    .aboutx-team {
        padding: 58px 0;
    }

    .aboutx-section-title h2,
    .aboutx-services-head h2,
    .aboutx-values-left h2,
    .aboutx-team h2 {
        font-size: clamp(29px, 8.6vw, 38px);
        letter-spacing: -.9px;
    }

    .aboutx-story {
        font-size: 16px;
    }

    .aboutx-services-head {
        display: block;
    }

    .aboutx-all-link {
        margin-top: 22px;
    }

    .aboutx-service-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding-bottom: 8px;
        margin-top: 32px;
        scrollbar-width: none;
    }

    .aboutx-service-grid::-webkit-scrollbar {
        display: none;
    }

    .aboutx-service-card {
        flex: 0 0 82%;
        min-height: 245px;
        scroll-snap-align: start;
    }

    .aboutx-services-nav {
        display: flex;
        gap: 10px;
        margin-top: 18px;
    }

    .aboutx-services-nav button {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid rgba(23, 27, 35, .12);
        background: #fff;
        color: #171b23;
        display: grid;
        place-items: center;
        box-shadow: 0 12px 28px rgba(23, 27, 35, .08);
        transition: transform .18s ease, background .18s ease, color .18s ease;
    }

    .aboutx-services-nav button:hover {
        background: #171b23;
        color: #fff;
    }

    .aboutx-services-nav button:active {
        transform: scale(.94);
    }

    .aboutx-value-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
    }

    .aboutx-team-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 18px;
    }

    .aboutx-team-avatar {
        width: 82px;
        height: 82px;
        font-size: 26px;
    }
}

/* =========================================================
   VISION / MISSION PAGE - FINAL
   Only page-specific styles
========================================================= */

.visionx-page {
    background: #fdfdfd;
    color: #171b23;
    overflow: hidden;
}

/* ================= MAIN ================= */

.visionx-main {
    padding: 92px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(223, 106, 73, .045), transparent 28%),
        #fdfdfd;
    border-bottom: 1px solid rgba(23, 27, 35, .06);
}

.visionx-head {
    max-width: 820px;
    margin-bottom: 46px;
}

.visionx-head h2,
.visionx-principles-head h2 {
    margin: 0;
    color: #171b23;
    font-family: var(--hero-font, "Montserrat", sans-serif);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.4px;
    font-weight: 800;
}

.visionx-head p {
    max-width: 720px;
    margin: 18px 0 0;
    color: #675f5c;
    font-size: 17px;
    line-height: 1.75;
}

/* ================= VISION / MISSION CARDS ================= */

.visionx-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.visionx-card {
    position: relative;
    min-height: 420px;
    padding: 38px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(23, 27, 35, .085);
    box-shadow: 0 22px 60px rgba(23, 27, 35, .07);
    overflow: hidden;
    transition:
        transform .35s cubic-bezier(.22, 1, .36, 1),
        box-shadow .35s cubic-bezier(.22, 1, .36, 1),
        border-color .35s ease;
}

.visionx-card:hover {
    transform: translateY(-8px);
    border-color: rgba(223, 106, 73, .22);
    box-shadow: 0 30px 80px rgba(23, 27, 35, .12);
}

.visionx-card::after {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(223, 106, 73, .08);
    transition: transform .35s ease, opacity .35s ease;
}

.visionx-card:hover::after {
    transform: scale(1.18);
    opacity: .9;
}

.visionx-card-dark {
    color: #fff;
    background:
        radial-gradient(circle at 80% 18%, rgba(223, 106, 73, .22), transparent 34%),
        linear-gradient(135deg, #171b23, #1d2230);
    border-color: rgba(255, 255, 255, .10);
}

.visionx-card-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(239, 130, 94, .25), transparent 35%),
        linear-gradient(180deg, rgba(255, 255, 255, .045), transparent 42%);
    pointer-events: none;
    z-index: 1;
}

.visionx-card-dark::after {
    background: rgba(239, 130, 94, .12);
}

.visionx-icon {
    position: relative;
    z-index: 2;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 18px;
    color: #df6a49;
    background: rgba(223, 106, 73, .10);
    font-size: 26px;
}

.visionx-card-dark .visionx-icon {
    color: #ef825e;
    background: rgba(239, 130, 94, .12);
    border: 1px solid rgba(239, 130, 94, .26);
}

.visionx-card span {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 14px;
    color: #df6a49;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.visionx-card-dark span {
    color: #ef825e;
}

.visionx-card h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #171b23;
    font-size: clamp(25px, 2.8vw, 36px);
    line-height: 1.12;
    letter-spacing: -1px;
    font-weight: 850;
}

.visionx-card-dark h3 {
    color: #fff;
}

.visionx-card p {
    position: relative;
    z-index: 2;
    margin: 24px 0 0;
    color: #675f5c;
    font-size: 16px;
    line-height: 1.78;
}

.visionx-card-dark p {
    color: rgba(255, 255, 255, .76);
}

/* ================= PRINCIPLES ================= */

.visionx-principles {
    padding: 88px 0;
    background: #f7f5f3;
}

.visionx-principles-head {
    max-width: 760px;
    margin-bottom: 42px;
}

.visionx-principle-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.visionx-principle {
    min-height: 250px;
    padding: 28px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(23, 27, 35, .085);
    box-shadow: 0 18px 44px rgba(23, 27, 35, .045);
    transition:
        transform .3s cubic-bezier(.22, 1, .36, 1),
        border-color .3s ease,
        box-shadow .3s ease;
}

.visionx-principle:hover {
    transform: translateY(-6px);
    border-color: rgba(223, 106, 73, .30);
    box-shadow: 0 24px 58px rgba(23, 27, 35, .08);
}

.visionx-principle i {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 16px;
    color: #df6a49;
    background: rgba(223, 106, 73, .10);
    font-size: 24px;
}

.visionx-principle h3 {
    margin: 0 0 12px;
    color: #171b23;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 850;
}

.visionx-principle p {
    margin: 0;
    color: #675f5c;
    font-size: 14.5px;
    line-height: 1.68;
}

/* ================= DARK BAND ================= */

.visionx-band {
    padding: 80px 0;
    background:
        radial-gradient(circle at 82% 24%, rgba(223, 106, 73, .18), transparent 30%),
        linear-gradient(135deg, #171b23, #1d2230);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.visionx-band-inner h3 {
    max-width: 760px;
    margin: 0 auto;
    color: #fff;
    font-family: var(--hero-font, "Montserrat", sans-serif);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.22;
    letter-spacing: -1px;
    font-weight: 800;
}

.visionx-band-list {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.visionx-band-list span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
    font-weight: 650;
}

.visionx-band-list i {
    color: #ef825e;
    font-size: 18px;
}

/* ================= RESPONSIVE ================= */

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

@media (max-width: 991.98px) {

    .visionx-main,
    .visionx-principles {
        padding: 72px 0;
    }

    .visionx-card-grid {
        grid-template-columns: 1fr;
    }

    .visionx-card {
        min-height: auto;
    }

    .visionx-band {
        padding: 70px 0;
    }
}

@media (max-width: 767.98px) {

    .visionx-main,
    .visionx-principles {
        padding: 58px 0;
    }

    .visionx-head {
        margin-bottom: 34px;
    }

    .visionx-head h2,
    .visionx-principles-head h2 {
        font-size: clamp(29px, 8.6vw, 38px);
        letter-spacing: -.9px;
    }

    .visionx-head p {
        font-size: 15.5px;
        line-height: 1.68;
    }

    .visionx-card {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .visionx-card h3 {
        font-size: 26px;
    }

    .visionx-card p {
        font-size: 15px;
        line-height: 1.68;
    }

    .visionx-principle-grid {
        grid-template-columns: 1fr;
    }

    .visionx-band {
        padding: 58px 0;
        text-align: left;
    }

    .visionx-band-inner h3 {
        font-size: clamp(26px, 8vw, 34px);
    }

    .visionx-band-list {
        justify-content: flex-start;
        gap: 14px;
        margin-top: 26px;
    }

    .visionx-band-list span {
        width: 100%;
        font-size: 14px;
    }
}

/* =========================================================
   WEB TASARIM / KURUMSAL WEB SAYFASI - FINAL
========================================================= */

.websol-page {
    background: #f7f5f3;
    color: #171b23;
    overflow: hidden;
}

.websol-shell {
    width: min(100% - 72px, 1180px);
    margin: 0 auto;
}

.websol-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    color: #df6a49;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

/* HERO */

.websol-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 78% 28%, rgba(223, 106, 73, .24), transparent 34%),
        radial-gradient(circle at 92% 78%, rgba(223, 106, 73, .10), transparent 30%),
        linear-gradient(135deg, #171b23 0%, #1d2230 100%);
}

.websol-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg,
            rgba(23, 27, 35, .98) 0%,
            rgba(23, 27, 35, .92) 42%,
            rgba(23, 27, 35, .62) 72%,
            rgba(23, 27, 35, .26) 100%);
}

.websol-hero-grid {
    position: relative;
    z-index: 2;
    min-height: 520px;
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(380px, .9fr);
    gap: 54px;
    align-items: center;
    padding: 52px 0;
}

.websol-hero-copy {
    position: relative;
    z-index: 3;
}

.websol-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, .55);
    font-size: 12.5px;
    font-weight: 750;
}

.websol-breadcrumb a {
    color: rgba(255, 255, 255, .68);
    text-decoration: none;
    transition: color .22s ease;
}

.websol-breadcrumb a:hover {
    color: #fff;
}

.websol-breadcrumb strong {
    color: #ef825e;
}

.websol-breadcrumb i {
    font-size: 10px;
    opacity: .45;
}

.websol-hero h1 {
    max-width: 680px;
    margin: 0;
    color: #fff;
    font-family: var(--hero-font, "Montserrat", "Inter", sans-serif);
    font-size: clamp(42px, 5vw, 68px);
    line-height: .98;
    letter-spacing: -1.8px;
    font-weight: 850;
}

.websol-hero h1 span {
    display: block;
    color: #ef825e;
}

.websol-hero p {
    max-width: 580px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .74);
    font-size: 16px;
    line-height: 1.72;
}

.websol-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.websol-btn {
    min-height: 50px;
    padding: 0 23px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 13.5px;
    font-weight: 850;
    text-decoration: none;
    transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.websol-btn:hover {
    transform: translateY(-2px);
}

.websol-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #ef7a58, #df6a49);
    box-shadow: 0 14px 34px rgba(223, 106, 73, .30);
}

.websol-btn-primary:hover {
    color: #fff;
    background: linear-gradient(135deg, #f08a68, #df6a49);
    box-shadow: 0 18px 42px rgba(223, 106, 73, .36);
}

.websol-btn-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .035);
}

.websol-btn-outline:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .42);
}

.websol-hero-device {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 620px;
    margin-left: auto;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow:
        0 34px 90px rgba(0, 0, 0, .45),
        0 12px 34px rgba(223, 106, 73, .16);
}

.websol-hero-device::before {
    content: "";
    position: absolute;
    inset: -12%;
    z-index: 0;
    background: radial-gradient(circle at 78% 50%, rgba(223, 106, 73, .22), transparent 50%);
    filter: blur(26px);
    pointer-events: none;
}

.websol-hero-device img {
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
    border-radius: 22px;
}

.websol-visual-placeholder {
    position: relative;
    z-index: 1;
    min-height: 360px;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 12px;
    padding: 44px;
    border-radius: 22px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .035)),
        url("../assets/images/topo-pattern.svg") center/620px auto no-repeat;
}

.websol-visual-placeholder i {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #ef825e;
    background: rgba(239, 130, 94, .12);
    font-size: 28px;
}

.websol-visual-placeholder strong {
    max-width: 360px;
    color: #fff;
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -1px;
}

.websol-visual-placeholder span {
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* LIGHT SECTIONS */

.websol-intro,
.websol-types,
.websol-deliver,
.websol-cta {
    background: #f7f5f3;
}

.websol-intro,
.websol-types {
    padding: 76px 0;
}

.websol-center-head {
    max-width: 780px;
    margin: 0 auto 48px;
    text-align: center;
}

.websol-center-head h2,
.websol-detail-inner h2,
.websol-deliver-copy h2 {
    margin: 0;
    color: #171b23;
    font-family: var(--hero-font, "Montserrat", sans-serif);
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -1.35px;
    font-weight: 850;
}

.websol-center-head p {
    max-width: 720px;
    margin: 18px auto 0;
    color: #675f5c;
    font-size: 16px;
    line-height: 1.75;
}

/* FEATURES */

.websol-feature-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.websol-feature {
    min-height: 185px;
    padding: 0 30px;
    text-align: center;
    border-right: 1px solid rgba(23, 27, 35, .08);
}

.websol-feature:last-child {
    border-right: 0;
}

.websol-feature i {
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #df6a49;
    background: rgba(223, 106, 73, .10);
    font-size: 27px;
}

.websol-feature h3 {
    margin: 0 0 10px;
    color: #171b23;
    font-size: 17px;
    font-weight: 850;
}

.websol-feature p {
    margin: 0;
    color: #675f5c;
    font-size: 13.5px;
    line-height: 1.65;
}

/* DETAIL DARK */

.websol-detail {
    background:
        radial-gradient(circle at 82% 18%, rgba(223, 106, 73, .16), transparent 34%),
        linear-gradient(135deg, #171b23 0%, #1d2230 100%);
    overflow: hidden;
    color: #fff;
}

.websol-detail-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    min-height: 500px;
}

.websol-detail-dark {
    display: flex;
    justify-content: flex-end;
}

.websol-detail-inner {
    width: min(100% - 72px, 540px);
    padding: 72px 0;
}

.websol-detail-inner h2 {
    color: #fff;
}

.websol-detail-inner ul {
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 13px;
}

.websol-detail-inner li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
    line-height: 1.55;
}

.websol-detail-inner li i {
    color: #ef825e;
    transform: translateY(2px);
}

.websol-detail-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.websol-detail-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(23, 27, 35, .20), rgba(23, 27, 35, .02));
}

.websol-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.06) contrast(1.04);
}

.websol-detail-image .websol-visual-placeholder {
    height: 100%;
    min-height: 500px;
    border-radius: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .05)),
        url("../assets/images/topo-pattern.svg") center/760px auto no-repeat;
}

.websol-detail-image .websol-visual-placeholder-light {
    background-color: rgba(255, 255, 255, .06);
}

/* TYPES */

.websol-type-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.websol-type {
    min-height: 240px;
    padding: 28px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(23, 27, 35, .085);
    box-shadow: 0 18px 44px rgba(23, 27, 35, .045);
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.websol-type:hover {
    transform: translateY(-6px);
    border-color: rgba(223, 106, 73, .26);
    box-shadow: 0 26px 64px rgba(223, 106, 73, .12);
}

.websol-type i {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #df6a49;
    background: rgba(223, 106, 73, .10);
    font-size: 24px;
    margin-bottom: 28px;
}

.websol-type h3 {
    margin: 0 0 10px;
    color: #171b23;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 850;
}

.websol-type p {
    margin: 0;
    color: #675f5c;
    font-size: 14px;
    line-height: 1.65;
}

/* DELIVER */

.websol-deliver {
    padding: 76px 0;
}

.websol-deliver-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 58px;
    align-items: center;
}

.websol-deliver-copy p {
    max-width: 580px;
    margin: 20px 0 0;
    color: #675f5c;
    font-size: 16px;
    line-height: 1.78;
}

.websol-deliver-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.websol-deliver-list div {
    min-height: 86px;
    padding: 20px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(23, 27, 35, .08);
    box-shadow: 0 14px 36px rgba(23, 27, 35, .04);
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    align-items: center;
}

.websol-deliver-list i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #df6a49;
    background: rgba(223, 106, 73, .10);
    font-size: 16px;
}

.websol-deliver-list span {
    color: #171b23;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 750;
}

.websol-cta {
    padding-top: 14px;
}

/* REVEAL SAFETY */

.websol-page .reveal-up {
    transform: translateY(10px);
}

.websol-page .reveal-up.is-visible {
    transform: translateY(0);
}

.websol-types .reveal-up,
.websol-type-grid .reveal-up,
.websol-type {
    visibility: visible;
}

/* RESPONSIVE */

@media (max-width: 1199.98px) {

    .websol-hero-grid,
    .websol-deliver-grid {
        grid-template-columns: 1fr;
    }

    .websol-hero-grid {
        min-height: auto;
        gap: 28px;
        padding: 48px 0 62px;
    }

    .websol-hero-device {
        max-width: 720px;
        margin: -18px auto 0;
        transform: translateX(18px) scale(1.04);
    }

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

@media (max-width: 991.98px) {
    .websol-shell {
        width: min(100% - 44px, 100%);
    }

    .websol-hero-grid {
        padding: 44px 0 56px;
    }

    .websol-hero-device {
        max-width: 660px;
        margin: -12px auto 0;
        transform: translateX(0) scale(1.03);
    }

    .websol-feature-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 0;
    }

    .websol-feature:nth-child(2) {
        border-right: 0;
    }

    .websol-detail-grid {
        grid-template-columns: 1fr;
    }

    .websol-detail-dark {
        justify-content: center;
    }

    .websol-detail-inner {
        width: min(100% - 44px, 100%);
    }

    .websol-detail-image,
    .websol-detail-image img {
        min-height: 390px;
    }
}

@media (max-width: 767.98px) {
    .websol-shell {
        width: min(100% - 30px, 100%);
    }

    .websol-hero {
        min-height: auto;
    }

    .websol-hero::before {
        background:
            linear-gradient(180deg,
                rgba(23, 27, 35, .98) 0%,
                rgba(23, 27, 35, .91) 58%,
                rgba(23, 27, 35, .78) 100%);
    }

    .websol-hero-grid {
        padding: 36px 0 44px;
        gap: 20px;
    }

    .websol-breadcrumb {
        margin-bottom: 20px;
        font-size: 12px;
    }

    .websol-kicker {
        font-size: 10px;
        letter-spacing: .14em;
    }

    .websol-hero h1 {
        font-size: clamp(36px, 12vw, 48px);
        line-height: 1;
        letter-spacing: -1.2px;
    }

    .websol-hero p {
        max-width: 100%;
        margin-top: 16px;
        font-size: 14.5px;
        line-height: 1.68;
    }

    .websol-hero-actions {
        display: grid;
        margin-top: 22px;
    }

    .websol-btn {
        width: 100%;
        min-height: 48px;
    }

    .websol-hero-device {
        max-width: 100%;
        margin: 4px auto 0;
        border-radius: 18px;
        transform: none;
    }

    .websol-hero-device img {
        border-radius: 16px;
    }

    .websol-visual-placeholder {
        min-height: 260px;
        padding: 28px;
        border-radius: 16px;
    }

    .websol-visual-placeholder strong {
        font-size: 27px;
    }

    .websol-visual-placeholder i {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        font-size: 23px;
    }

    .websol-intro,
    .websol-types,
    .websol-deliver {
        padding: 56px 0;
    }

    .websol-center-head {
        text-align: left;
        margin-bottom: 36px;
    }

    .websol-center-head h2,
    .websol-detail-inner h2,
    .websol-deliver-copy h2 {
        font-size: clamp(30px, 9vw, 40px);
        letter-spacing: -1px;
    }

    .websol-center-head p {
        margin-left: 0;
        margin-right: 0;
        font-size: 14.5px;
        line-height: 1.7;
    }

    .websol-feature-row {
        display: flex;
        overflow-x: auto;
        gap: 14px;
        scroll-snap-type: x mandatory;
        padding-bottom: 6px;
        scrollbar-width: none;
    }

    .websol-feature-row::-webkit-scrollbar {
        display: none;
    }

    .websol-feature {
        flex: 0 0 78%;
        min-height: 210px;
        scroll-snap-align: start;
        border-right: 0;
        padding: 26px 20px;
        border-radius: 18px;
        background: #fff;
        border: 1px solid rgba(23, 27, 35, .08);
        box-shadow: 0 14px 36px rgba(23, 27, 35, .04);
    }

    .websol-type-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    .websol-type {
        min-height: auto;
        padding: 22px;
        border-radius: 18px;
    }

    .websol-type i {
        width: 48px;
        height: 48px;
        margin-bottom: 18px;
        border-radius: 14px;
        font-size: 21px;
    }

    .websol-deliver-grid {
        gap: 28px;
    }

    .websol-deliver-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .websol-deliver-list div {
        min-height: 64px;
        padding: 16px;
        border-radius: 14px;
    }

    .websol-detail-inner {
        width: min(100% - 30px, 100%);
        padding: 54px 0;
    }

    .websol-detail-image,
    .websol-detail-image img {
        min-height: 300px;
    }
}

@media (max-width: 430px) {
    .websol-feature {
        flex-basis: 86%;
    }
}

/* Corporate page rollback and shared-section color reset */
body {
    background: #fdfdfd;
}

.channels-section,
.arv-ref-section,
.arv-cta-section {
    background: #fdfdfd !important;
}

.arv-why-section {
    background:
        radial-gradient(circle at 12% 18%, rgba(223, 106, 73, .055), transparent 24%),
        radial-gradient(circle at 90% 10%, rgba(124, 106, 247, .04), transparent 28%),
        #fdfdfd !important;
}

.arv-faq-section {
    background:
        radial-gradient(circle at 14% 20%, rgba(223, 106, 73, .045), transparent 28%),
        #fdfdfd !important;
}

.aboutx-cta-simple .arv-cta-card {
    grid-template-columns: 1fr;
    min-height: auto;
}

.aboutx-cta-simple .arv-cta-content {
    max-width: 760px;
}

@media (max-width: 767.98px) {
    .aboutx-cta-simple .arv-cta-card {
        padding: 34px 22px;
    }
}

/* Payment and bank account pages */
.payx-page {
    background: #fdfdfd;
}

.payx-section,
.payx-info-section {
    padding: 86px 0;
}

.payx-info-section {
    background: #f7f5f3;
}

.payx-head {
    max-width: 720px;
    margin-bottom: 34px;
}

.payx-head h2 {
    margin: 0;
    color: #171b23;
    font-family: var(--hero-font, "Montserrat", "Inter", sans-serif);
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.06;
    letter-spacing: -1px;
}

.payx-account-grid,
.payx-info-grid,
.payx-quick-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.payx-account-card,
.payx-info-card,
.payx-invoice-card,
.payx-payment-panel {
    border: 1px solid rgba(23, 27, 35, .08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 22px 56px rgba(23, 27, 35, .06);
}

.payx-account-card,
.payx-info-card,
.payx-invoice-card {
    padding: 30px;
}

.payx-account-dark,
.payx-payment-panel {
    color: #fff;
    background:
        radial-gradient(circle at 90% 12%, rgba(223, 106, 73, .22), transparent 32%),
        linear-gradient(135deg, #171b23 0%, #202532 100%);
    border-color: rgba(255, 255, 255, .10);
}

.payx-account-top span,
.payx-info-card span,
.payx-invoice-card > span,
.payx-payment-panel span {
    display: block;
    color: #df6a49;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.payx-account-top strong {
    display: block;
    margin-top: 8px;
    color: #171b23;
    font-size: 28px;
    line-height: 1.1;
}

.payx-account-dark .payx-account-top strong,
.payx-payment-panel strong {
    color: #fff;
}

.payx-account-card dl,
.payx-invoice-card dl {
    margin: 26px 0 0;
}

.payx-account-card dl div,
.payx-invoice-card dl div {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid rgba(23, 27, 35, .08);
}

.payx-account-dark dl div {
    border-top-color: rgba(255, 255, 255, .12);
}

.payx-account-card dt,
.payx-invoice-card dt {
    color: #77706d;
    font-size: 13px;
    font-weight: 800;
}

.payx-account-card dd,
.payx-invoice-card dd {
    margin: 0;
    color: #25201f;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.payx-account-dark dt {
    color: rgba(255, 255, 255, .55);
}

.payx-account-dark dd {
    color: rgba(255, 255, 255, .90);
}

.payx-info-card i {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 16px;
    color: #df6a49;
    background: rgba(223, 106, 73, .10);
    font-size: 25px;
}

.payx-info-card h2 {
    margin: 14px 0 12px;
    color: #171b23;
    font-family: var(--hero-font, "Montserrat", "Inter", sans-serif);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    letter-spacing: -.8px;
}

.payx-info-card h2 a {
    color: inherit;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.payx-info-card p,
.payx-payment-panel p {
    margin: 0 0 24px;
    color: #675f5c;
    font-size: 15.5px;
    line-height: 1.7;
}

.payx-payment-panel {
    align-self: center;
    padding: 34px;
}

.payx-payment-panel strong {
    display: block;
    margin: 12px 0;
    font-size: 34px;
    line-height: 1.08;
}

.payx-payment-panel p {
    color: rgba(255, 255, 255, .70);
}

.payx-card-form {
    display: grid;
    gap: 12px;
}

.payx-card-form label {
    display: grid;
    gap: 7px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 800;
}

.payx-card-form input {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 12px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    outline: none;
}

.payx-card-form input::placeholder {
    color: rgba(255, 255, 255, .42);
}

.payx-card-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.payx-card-form .websol-btn {
    width: 100%;
    margin-top: 6px;
    border: 0;
    cursor: pointer;
}

.payx-invoice-card a,
.payx-account-card a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .payx-account-grid,
    .payx-info-grid,
    .payx-quick-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .payx-section,
    .payx-info-section {
        padding: 58px 0;
    }

    .payx-account-card,
    .payx-info-card,
    .payx-invoice-card,
    .payx-payment-panel {
        padding: 24px;
        border-radius: 16px;
    }

    .payx-account-card dl div,
    .payx-invoice-card dl div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .payx-account-top strong,
    .payx-payment-panel strong {
        font-size: 25px;
    }
}

/* Projects page */
.projectsx-page {
    background: #f7f5f3;
    color: #171b23;
    overflow: hidden;
}

.projectsx-shell {
    width: min(100% - 72px, 1180px);
    margin: 0 auto;
}

.projectsx-hero {
    position: relative;
    min-height: 560px;
    color: #fff;
    background:
        radial-gradient(circle at 84% 22%, rgba(223, 106, 73, .24), transparent 34%),
        linear-gradient(135deg, #171b23 0%, #1d2230 100%);
    overflow: hidden;
}

.projectsx-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(23, 27, 35, .98) 0%, rgba(23, 27, 35, .92) 48%, rgba(23, 27, 35, .62) 100%),
        url("../assets/images/topo-pattern.svg") right center/880px auto no-repeat;
    pointer-events: none;
}

.projectsx-hero-grid {
    position: relative;
    z-index: 1;
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(390px, .9fr);
    align-items: center;
    gap: 58px;
    padding: 58px 0;
}

.projectsx-hero-copy h1 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-family: var(--hero-font, "Montserrat", "Inter", sans-serif);
    font-size: clamp(44px, 5.2vw, 72px);
    line-height: .98;
    letter-spacing: -1.8px;
    font-weight: 850;
}

.projectsx-hero-copy p {
    max-width: 620px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .74);
    font-size: 16px;
    line-height: 1.74;
}

.projectsx-hero-actions,
.projectsx-featured-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.projectsx-device {
    position: relative;
}

.projectsx-browser {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 36px 100px rgba(0, 0, 0, .42), 0 16px 44px rgba(223, 106, 73, .14);
    backdrop-filter: blur(12px);
}

.projectsx-browser-top {
    height: 46px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    background: rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.projectsx-browser-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .34);
}

.projectsx-browser-top span:first-child {
    background: #ef825e;
}

.projectsx-browser-body {
    min-height: 370px;
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 0;
}

.projectsx-browser-sidebar {
    padding: 24px 18px;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.projectsx-browser-sidebar b {
    display: block;
    height: 12px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
}

.projectsx-browser-main {
    padding: 28px;
}

.projectsx-screen-hero {
    height: 138px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(239, 130, 94, .78), rgba(255, 255, 255, .10)),
        url("../assets/images/topo-pattern.svg") center/560px auto no-repeat;
}

.projectsx-screen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.projectsx-screen-grid span {
    height: 82px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .12);
}

.projectsx-screen-line {
    height: 12px;
    width: 76%;
    margin-top: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
}

.projectsx-screen-line.short {
    width: 48%;
}

.projectsx-floating-card {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
    backdrop-filter: blur(12px);
    font-size: 13px;
    font-weight: 850;
}

.projectsx-floating-card i {
    color: #ef825e;
}

.projectsx-floating-card-1 {
    left: -24px;
    bottom: 58px;
}

.projectsx-floating-card-2 {
    right: -16px;
    top: 82px;
}

.projectsx-featured,
.projectsx-list {
    padding: 84px 0;
}

.projectsx-featured-card {
    display: grid;
    grid-template-columns: minmax(0, .96fr) minmax(360px, .82fr);
    gap: 34px;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(23, 27, 35, .08);
    box-shadow: 0 28px 80px rgba(23, 27, 35, .08);
}

.projectsx-featured-visual {
    min-height: 420px;
    overflow: hidden;
    border-radius: 18px;
    background: #171b23;
}

.projectsx-featured-visual img,
.projectsx-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    padding: 22px;
    background: #fff;
}

.projectsx-featured-content {
    align-self: center;
    padding: 28px 26px 28px 8px;
}

.projectsx-featured-content h2,
.projectsx-list-head h2 {
    margin: 0;
    color: #171b23;
    font-family: var(--hero-font, "Montserrat", "Inter", sans-serif);
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.05;
    letter-spacing: -1.2px;
}

.projectsx-featured-content p {
    margin: 18px 0 0;
    color: #675f5c;
    font-size: 16px;
    line-height: 1.76;
}

.projectsx-tags,
.projectsx-mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.projectsx-tags {
    margin-top: 24px;
}

.projectsx-tags span,
.projectsx-mini-tags span {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    color: #5c5552;
    background: #f7f5f3;
    border: 1px solid rgba(23, 27, 35, .07);
    font-size: 12px;
    font-weight: 850;
}

.projectsx-list {
    background: #fdfdfd;
}

.projectsx-list-head {
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(420px, .9fr);
    gap: 30px;
    align-items: end;
    margin-bottom: 34px;
}

.projectsx-filters {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 9px;
}

.projectsx-filters button {
    min-height: 40px;
    padding: 0 15px;
    border-radius: 999px;
    border: 1px solid rgba(23, 27, 35, .10);
    color: #4b4543;
    background: #fff;
    font-size: 12.5px;
    font-weight: 850;
    cursor: pointer;
    transition: color .22s ease, background .22s ease, border-color .22s ease, transform .22s ease;
}

.projectsx-filters button:hover,
.projectsx-filters button.is-active {
    color: #fff;
    border-color: rgba(223, 106, 73, .42);
    background: #df6a49;
    transform: translateY(-1px);
}

.projectsx-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.projectsx-card {
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(23, 27, 35, .08);
    box-shadow: 0 18px 46px rgba(23, 27, 35, .05);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.projectsx-card:hover {
    transform: translateY(-6px);
    border-color: rgba(223, 106, 73, .24);
    box-shadow: 0 26px 68px rgba(223, 106, 73, .11);
}

.projectsx-card[hidden] {
    display: none;
}

.projectsx-card-media {
    height: 232px;
    background: #171b23;
}

.projectsx-project-placeholder {
    width: 100%;
    height: 100%;
    min-height: 232px;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 10px;
    padding: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 88% 18%, rgba(223, 106, 73, .26), transparent 34%),
        linear-gradient(135deg, #171b23 0%, #202532 100%),
        url("../assets/images/topo-pattern.svg") center/560px auto no-repeat;
}

.projectsx-project-placeholder i {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #ef825e;
    background: rgba(239, 130, 94, .12);
    font-size: 24px;
}

.projectsx-project-placeholder strong {
    color: #fff;
    font-size: 26px;
    line-height: 1.08;
    letter-spacing: -.6px;
}

.projectsx-project-placeholder span {
    color: rgba(255, 255, 255, .60);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.projectsx-card-body {
    padding: 24px;
}

.projectsx-card-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.projectsx-card-meta span,
.projectsx-card-meta em {
    color: #df6a49;
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.projectsx-card-meta em {
    color: #8a827f;
    text-align: right;
}

.projectsx-card h3 {
    margin: 0;
    color: #171b23;
    font-size: 22px;
    line-height: 1.18;
    letter-spacing: -.35px;
}

.projectsx-card p {
    min-height: 96px;
    margin: 12px 0 18px;
    color: #675f5c;
    font-size: 14px;
    line-height: 1.68;
}

.projectsx-mini-tags {
    margin-bottom: 20px;
}

.projectsx-mini-tags span {
    min-height: 28px;
    padding: 0 10px;
    font-size: 11.5px;
}

.projectsx-card-actions {
    min-height: 28px;
}

.projectsx-card-actions a,
.projectsx-card-actions span {
    color: #171b23;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.projectsx-card-actions a i {
    color: #df6a49;
    margin-left: 4px;
}

@media (max-width: 1199.98px) {
    .projectsx-hero-grid,
    .projectsx-featured-card,
    .projectsx-list-head {
        grid-template-columns: 1fr;
    }

    .projectsx-device {
        max-width: 720px;
    }

    .projectsx-filters {
        justify-content: flex-start;
    }
}

@media (max-width: 991.98px) {
    .projectsx-shell {
        width: min(100% - 44px, 100%);
    }

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

@media (max-width: 767.98px) {
    .projectsx-shell {
        width: min(100% - 30px, 100%);
    }

    .projectsx-hero,
    .projectsx-hero-grid {
        min-height: auto;
    }

    .projectsx-hero-grid {
        padding: 38px 0 48px;
        gap: 26px;
    }

    .projectsx-hero-copy h1 {
        font-size: clamp(36px, 12vw, 48px);
        letter-spacing: -1.1px;
    }

    .projectsx-hero-copy p {
        font-size: 14.5px;
        line-height: 1.68;
    }

    .projectsx-hero-actions,
    .projectsx-featured-actions {
        display: grid;
    }

    .projectsx-browser-body {
        min-height: 280px;
        grid-template-columns: 58px 1fr;
    }

    .projectsx-browser-main {
        padding: 18px;
    }

    .projectsx-screen-hero {
        height: 105px;
    }

    .projectsx-screen-grid span {
        height: 58px;
    }

    .projectsx-floating-card {
        display: none;
    }

    .projectsx-featured,
    .projectsx-list {
        padding: 58px 0;
    }

    .projectsx-featured-card {
        padding: 12px;
        border-radius: 18px;
    }

    .projectsx-featured-visual {
        min-height: 280px;
        border-radius: 14px;
    }

    .projectsx-featured-content {
        padding: 12px 8px 14px;
    }

    .projectsx-featured-content h2,
    .projectsx-list-head h2 {
        font-size: clamp(30px, 9vw, 40px);
    }

    .projectsx-list-head {
        margin-bottom: 26px;
    }

    .projectsx-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .projectsx-filters::-webkit-scrollbar {
        display: none;
    }

    .projectsx-filters button {
        flex: 0 0 auto;
    }

    .projectsx-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .projectsx-card-media {
        height: 210px;
    }

    .projectsx-card p {
        min-height: auto;
    }

    .projectsx-card-meta {
        display: grid;
    }

    .projectsx-card-meta em {
        text-align: left;
    }
}

/* Projects compact revisions and detail page */
.projectsx-hero-compact,
.projectsx-hero-compact .projectsx-hero-grid {
    min-height: 430px;
}

.projectsx-hero-compact .projectsx-hero-grid {
    padding: 42px 0;
}

.projectsx-hero-compact .projectsx-browser-body {
    min-height: 300px;
}

.projectsx-hero-compact .projectsx-screen-hero {
    height: 108px;
}

.projectsx-info-bar {
    position: relative;
    z-index: 3;
    margin-top: -34px;
}

.projectsx-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(23, 27, 35, .08);
    box-shadow: 0 22px 58px rgba(23, 27, 35, .08);
}

.projectsx-info-grid div {
    min-height: 104px;
    display: grid;
    align-content: center;
    gap: 6px;
    padding: 22px 26px;
    border-right: 1px solid rgba(23, 27, 35, .08);
}

.projectsx-info-grid div:last-child {
    border-right: 0;
}

.projectsx-info-grid strong {
    color: #df6a49;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
}

.projectsx-info-grid span {
    color: #4b4543;
    font-size: 13px;
    font-weight: 800;
}

.projectsx-featured-min {
    padding: 58px 0 34px;
}

.projectsx-featured-strip {
    display: grid;
    grid-template-columns: 170px minmax(180px, .45fr) minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding: 22px 24px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(23, 27, 35, .08);
    box-shadow: 0 16px 42px rgba(23, 27, 35, .055);
    color: inherit;
    text-decoration: none;
}

.projectsx-featured-strip .websol-kicker {
    margin-bottom: 0;
}

.projectsx-featured-strip strong {
    color: #171b23;
    font-size: 25px;
    line-height: 1.15;
    letter-spacing: -.4px;
}

.projectsx-featured-strip p {
    margin: 0;
    color: #675f5c;
    font-size: 14px;
    line-height: 1.55;
}

.projectsx-featured-strip em {
    color: #df6a49;
    font-style: normal;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.projectsx-list {
    padding-top: 64px;
}

.projectsx-image-slot {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 8px;
    padding: 24px;
    text-align: center;
    color: #746b67;
    background:
        linear-gradient(135deg, rgba(223, 106, 73, .075), rgba(255, 255, 255, .72)),
        #f7f5f3;
    border: 1px dashed rgba(223, 106, 73, .28);
}

.projectsx-image-slot i {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #df6a49;
    background: rgba(223, 106, 73, .10);
    font-size: 24px;
}

.projectsx-image-slot strong {
    color: #171b23;
    font-size: 20px;
    line-height: 1.15;
}

.projectsx-image-slot span {
    max-width: 260px;
    color: #776f6b;
    font-size: 12.5px;
    line-height: 1.45;
    font-weight: 750;
}

.projectsx-image-slot-dark {
    min-height: 360px;
    color: rgba(255, 255, 255, .70);
    background:
        radial-gradient(circle at 85% 18%, rgba(223, 106, 73, .24), transparent 34%),
        linear-gradient(135deg, #171b23 0%, #202532 100%);
    border: 1px solid rgba(255, 255, 255, .10);
}

.projectsx-image-slot-dark strong {
    color: #fff;
}

.projectsx-image-slot-dark span {
    color: rgba(255, 255, 255, .62);
}

.projectdx-page {
    background: #fdfdfd;
    color: #171b23;
    overflow: hidden;
}

.projectdx-hero {
    color: #fff;
    background:
        radial-gradient(circle at 78% 20%, rgba(223, 106, 73, .22), transparent 34%),
        linear-gradient(135deg, #171b23 0%, #1d2230 100%);
}

.projectdx-hero-grid {
    min-height: 520px;
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(380px, .9fr);
    gap: 54px;
    align-items: center;
    padding: 54px 0;
}

.projectdx-copy h1 {
    margin: 0;
    color: #fff;
    font-family: var(--hero-font, "Montserrat", "Inter", sans-serif);
    font-size: clamp(42px, 5vw, 68px);
    line-height: .98;
    letter-spacing: -1.7px;
}

.projectdx-copy p {
    max-width: 620px;
    margin: 20px 0 28px;
    color: rgba(255, 255, 255, .74);
    font-size: 16px;
    line-height: 1.74;
}

.projectdx-hero-visual {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .38);
}

.projectdx-hero-visual img {
    width: 100%;
    min-height: 360px;
    display: block;
    object-fit: cover;
}

.projectdx-info {
    margin-top: -32px;
    position: relative;
    z-index: 4;
}

.projectdx-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(23, 27, 35, .08);
    box-shadow: 0 22px 58px rgba(23, 27, 35, .08);
}

.projectdx-info-grid div {
    padding: 22px 24px;
    border-right: 1px solid rgba(23, 27, 35, .08);
}

.projectdx-info-grid div:last-child {
    border-right: 0;
}

.projectdx-info-grid span {
    display: block;
    color: #8a827f;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.projectdx-info-grid strong {
    display: block;
    margin-top: 8px;
    color: #171b23;
    font-size: 16px;
    line-height: 1.32;
}

.projectdx-problem,
.projectdx-showcase,
.projectdx-work,
.projectdx-results,
.projectdx-similar {
    padding: 78px 0;
}

.projectdx-problem,
.projectdx-work,
.projectdx-similar {
    background: #fdfdfd;
}

.projectdx-showcase,
.projectdx-results {
    background: #f7f5f3;
}

.projectdx-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.projectdx-two-col article {
    padding: 34px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(23, 27, 35, .08);
    box-shadow: 0 18px 46px rgba(23, 27, 35, .05);
}

.projectdx-two-col .projectdx-solution {
    color: #fff;
    background:
        radial-gradient(circle at 88% 16%, rgba(223, 106, 73, .22), transparent 34%),
        linear-gradient(135deg, #171b23, #202532);
}

.projectdx-two-col h2,
.projectdx-section-head h2 {
    margin: 0;
    color: #171b23;
    font-family: var(--hero-font, "Montserrat", "Inter", sans-serif);
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -1.1px;
}

.projectdx-solution h2 {
    color: #fff;
}

.projectdx-two-col p,
.projectdx-section-head p {
    margin: 18px 0 0;
    color: #675f5c;
    font-size: 15.5px;
    line-height: 1.75;
}

.projectdx-solution p {
    color: rgba(255, 255, 255, .74);
}

.projectdx-section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.projectdx-gallery {
    display: grid;
    grid-template-columns: 1.25fr .85fr;
    gap: 18px;
}

.projectdx-shot {
    min-height: 300px;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(23, 27, 35, .08);
}

.projectdx-shot:first-child {
    grid-row: span 2;
    min-height: 620px;
}

.projectdx-shot img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.projectdx-work-grid {
    display: grid;
    grid-template-columns: .72fr 1fr;
    gap: 46px;
    align-items: start;
}

.projectdx-work-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.projectdx-work-list div {
    min-height: 86px;
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 12px;
    align-items: center;
    padding: 20px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(23, 27, 35, .08);
    box-shadow: 0 14px 36px rgba(23, 27, 35, .04);
}

.projectdx-work-list i {
    color: #df6a49;
    font-size: 22px;
}

.projectdx-work-list span {
    color: #171b23;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 800;
}

.projectdx-result-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.projectdx-result-grid article {
    min-height: 170px;
    display: grid;
    align-content: center;
    padding: 28px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(23, 27, 35, .08);
    box-shadow: 0 18px 46px rgba(23, 27, 35, .05);
}

.projectdx-result-grid strong {
    color: #df6a49;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1;
}

.projectdx-result-grid span {
    margin-top: 12px;
    color: #4b4543;
    font-size: 14px;
    font-weight: 850;
}

@media (max-width: 1199.98px) {
    .projectdx-hero-grid,
    .projectdx-work-grid,
    .projectdx-gallery {
        grid-template-columns: 1fr;
    }

    .projectdx-shot:first-child {
        min-height: 360px;
    }
}

@media (max-width: 991.98px) {
    .projectsx-info-grid,
    .projectdx-info-grid,
    .projectdx-two-col,
    .projectdx-result-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .projectsx-featured-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .projectsx-hero-compact .projectsx-hero-grid,
    .projectdx-hero-grid {
        padding: 36px 0 44px;
    }

    .projectsx-info-grid,
    .projectdx-info-grid,
    .projectdx-two-col,
    .projectdx-work-list,
    .projectdx-result-grid {
        grid-template-columns: 1fr;
    }

    .projectsx-info-grid div,
    .projectdx-info-grid div {
        border-right: 0;
        border-bottom: 1px solid rgba(23, 27, 35, .08);
    }

    .projectsx-info-grid div:last-child,
    .projectdx-info-grid div:last-child {
        border-bottom: 0;
    }

    .projectdx-problem,
    .projectdx-showcase,
    .projectdx-work,
    .projectdx-results,
    .projectdx-similar {
        padding: 58px 0;
    }

    .projectdx-copy h1 {
        font-size: clamp(36px, 12vw, 48px);
        letter-spacing: -1.1px;
    }

    .projectdx-hero-visual img,
    .projectsx-image-slot-dark {
        min-height: 280px;
    }

    .projectdx-two-col article {
        padding: 24px;
        border-radius: 16px;
    }

    .projectdx-shot,
    .projectdx-shot:first-child {
        min-height: 260px;
        border-radius: 16px;
    }
}

/* Projects final visual pass */
.projectsx-hero-soft {
    min-height: 380px;
    color: #171b23;
    background: #fdfdfd;
}

.projectsx-hero-soft::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .90) 44%, rgba(255, 255, 255, .64) 100%);
}

.projectsx-hero-soft .projectsx-hero-grid {
    min-height: 380px;
    padding: 38px 0;
}

.projectsx-hero-soft .websol-breadcrumb,
.projectsx-hero-soft .websol-breadcrumb a {
    color: #77706d;
}

.projectsx-hero-soft .projectsx-hero-copy h1 {
    color: #171b23;
    font-size: clamp(38px, 4.2vw, 58px);
    line-height: 1.04;
}

.projectsx-hero-soft .projectsx-hero-copy p {
    color: #675f5c;
}

.projectsx-hero-soft .projectsx-device {
    max-width: 520px;
    margin-left: auto;
}

.projectsx-hero-soft .projectsx-browser {
    border-radius: 22px;
    background: rgba(23, 27, 35, .92);
    box-shadow: 0 26px 70px rgba(23, 27, 35, .18);
}

.projectsx-hero-soft .projectsx-browser-body {
    min-height: 260px;
}

.projectsx-hero-soft .projectsx-screen-hero {
    height: 90px;
}

.projectsx-info-bar {
    margin-top: 0;
    padding-top: 30px;
    background: #f7f5f3;
}

.projectsx-featured-min {
    padding: 42px 0 20px;
}

.projectsx-featured-strip {
    grid-template-columns: 136px minmax(130px, .32fr) minmax(0, 1fr) auto;
    padding: 14px 18px;
    border-radius: 999px;
}

.projectsx-featured-thumb {
    width: 118px;
    height: 74px;
    overflow: hidden;
    border-radius: 999px;
    background: #f7f5f3;
    border: 1px solid rgba(23, 27, 35, .08);
}

.projectsx-featured-thumb img,
.projectsx-featured-thumb .projectsx-image-slot {
    width: 100%;
    height: 100%;
    min-height: 0;
}

.projectsx-featured-thumb img {
    display: block;
    object-fit: contain;
    padding: 14px;
    background: #fff;
}

.projectsx-featured-thumb .projectsx-image-slot {
    padding: 0;
}

.projectsx-featured-thumb .projectsx-image-slot i,
.projectsx-featured-thumb .projectsx-image-slot strong {
    display: none;
}

.projectsx-featured-thumb .projectsx-image-slot span {
    max-width: 80px;
    font-size: 10px;
}

.projectsx-featured-strip p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

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

.projectsx-card {
    display: grid;
    grid-template-columns: 48% 52%;
    min-height: 290px;
}

.projectsx-card-media {
    height: auto;
    min-height: 100%;
}

.projectsx-card-body {
    display: grid;
    align-content: center;
    padding: 24px;
}

.projectsx-card p {
    min-height: auto;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.projectdx-hero {
    position: relative;
    overflow: hidden;
}

.projectdx-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(23, 27, 35, .98), rgba(23, 27, 35, .88) 44%, rgba(23, 27, 35, .58)),
        url("../assets/images/topo-pattern.svg") right center/900px auto no-repeat;
    pointer-events: none;
}

.projectdx-hero-grid {
    position: relative;
    z-index: 1;
}

.projectdx-hero-visual {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.projectdx-device-scene {
    position: relative;
    min-height: 390px;
}

.projectdx-laptop {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    border: 10px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .40);
}

.projectdx-laptop::after {
    content: "";
    position: absolute;
    left: 16%;
    right: 16%;
    bottom: -24px;
    height: 24px;
    border-radius: 0 0 28px 28px;
    background: linear-gradient(180deg, #727783, #2e333c);
}

.projectdx-laptop img,
.projectdx-laptop .projectsx-image-slot {
    width: 100%;
    height: 100%;
    min-height: 330px;
}

.projectdx-phone {
    position: absolute;
    right: -18px;
    bottom: -6px;
    width: 136px;
    height: 250px;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, .18);
    border-radius: 28px;
    background: #171b23;
    box-shadow: 0 24px 58px rgba(0, 0, 0, .36);
}

.projectdx-phone .projectsx-image-slot {
    min-height: 100%;
    padding: 16px;
}

.projectdx-phone .projectsx-image-slot strong {
    display: none;
}

.contactx-page {
    background: #f7f5f3;
}

.contactx-methods span,
.contactx-address span {
    color: #df6a49;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contactx-main,
.contactx-map-section {
    padding: 82px 0;
}

.contactx-main {
    background: #fdfdfd;
}

.contactx-map-section {
    background: #f7f5f3;
}

.contactx-grid {
    display: grid;
    grid-template-columns: .82fr 1fr;
    gap: 28px;
    align-items: start;
}

.contactx-info,
.contactx-form {
    padding: 32px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(23, 27, 35, .08);
    box-shadow: 0 18px 46px rgba(23, 27, 35, .055);
}

.contactx-info h2,
.contactx-form h2,
.contactx-map-head h2 {
    margin: 0 0 24px;
    color: #171b23;
    font-family: var(--hero-font, "Montserrat", "Inter", sans-serif);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -1px;
}

.contactx-methods {
    display: grid;
    gap: 12px;
}

.contactx-methods a,
.contactx-address {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: center;
    min-height: 86px;
    padding: 16px;
    border-radius: 16px;
    background: #f7f5f3;
    color: inherit;
    text-decoration: none;
}

.contactx-methods i,
.contactx-address i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #df6a49;
    background: rgba(223, 106, 73, .10);
    font-size: 22px;
}

.contactx-methods strong,
.contactx-address strong {
    display: block;
    margin-top: 4px;
    color: #171b23;
    font-size: 16px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.contactx-address {
    margin-top: 14px;
}

.contactx-form {
    display: grid;
    gap: 14px;
}

.contactx-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contactx-form label {
    display: grid;
    gap: 8px;
    color: #4b4543;
    font-size: 13px;
    font-weight: 850;
}

.contactx-form input,
.contactx-form select,
.contactx-form textarea {
    width: 100%;
    border: 1px solid rgba(23, 27, 35, .10);
    border-radius: 12px;
    background: #fdfdfd;
    color: #171b23;
    padding: 0 14px;
    outline: none;
}

.contactx-form input,
.contactx-form select {
    min-height: 48px;
}

.contactx-form textarea {
    padding-top: 13px;
    resize: vertical;
}

.contactx-form button {
    border: 0;
    cursor: pointer;
}

.contactx-map-head {
    max-width: 720px;
    margin-bottom: 28px;
}

.contactx-map {
    overflow: hidden;
    min-height: 430px;
    border-radius: 22px;
    border: 1px solid rgba(23, 27, 35, .08);
    box-shadow: 0 22px 58px rgba(23, 27, 35, .08);
    background: #fff;
}

.contactx-map iframe {
    width: 100%;
    height: 520px;
    display: block;
    border: 0;
    filter: saturate(.95) contrast(1.02);
}

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

    .projectsx-card-media {
        min-height: 240px;
    }

    .contactx-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .projectsx-hero-soft .projectsx-hero-grid {
        grid-template-columns: 1fr;
    }

    .projectsx-hero-soft .projectsx-device {
        margin-left: 0;
    }
}

@media (max-width: 767.98px) {
    .projectsx-hero-soft .projectsx-hero-grid {
        padding: 34px 0 42px;
    }

    .projectsx-featured-strip {
        grid-template-columns: 74px 1fr;
        border-radius: 18px;
    }

    .projectsx-featured-strip p,
    .projectsx-featured-strip em {
        grid-column: 1 / -1;
    }

    .projectsx-featured-thumb {
        width: 64px;
        height: 64px;
    }

    .projectdx-phone {
        right: 8px;
        width: 104px;
        height: 198px;
    }

    .contactx-main,
    .contactx-map-section {
        padding: 58px 0;
    }

    .contactx-info,
    .contactx-form {
        padding: 24px;
        border-radius: 16px;
    }

    .contactx-form-row {
        grid-template-columns: 1fr;
    }

    .contactx-map iframe {
        height: 380px;
    }
}

/* Final fixes for project list, project detail and contact form */
.projectsx-stats-strip {
    margin-top: 0;
    padding: 0 0 34px;
    background: #f7f5f3;
}

.projectsx-stats-strip .stats-strip-wrap {
    transform: translateY(-34px);
}

.projectsx-featured-min {
    padding-top: 16px;
}

.projectsx-featured-strip {
    grid-template-columns: 120px 150px minmax(170px, .34fr) minmax(0, 1fr) auto;
    border-radius: 28px;
}

.projectsx-featured-strip .websol-kicker {
    justify-self: start;
}

.projectsx-featured-strip strong,
.projectsx-featured-strip p,
.projectsx-featured-strip em {
    align-self: center;
}

.projectdx-info-grid {
    border-radius: 20px;
}

.projectdx-info-grid div {
    position: relative;
    display: grid;
    grid-template-columns: 42px 1fr;
    grid-template-areas: "icon label" "icon value";
    align-items: center;
    column-gap: 14px;
}

.projectdx-info-grid i {
    grid-area: icon;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #df6a49;
    background: rgba(223, 106, 73, .10);
    font-size: 20px;
}

.projectdx-info-grid span {
    grid-area: label;
}

.projectdx-info-grid strong {
    grid-area: value;
}

.projectdx-problem {
    padding-bottom: 54px;
}

.projectdx-two-col article {
    min-height: 300px;
    display: grid;
    align-content: center;
}

.projectdx-showcase {
    padding-top: 68px;
}

.projectdx-gallery {
    grid-template-columns: 1.25fr .75fr;
}

.projectdx-gallery .projectdx-shot:first-child {
    grid-row: auto;
    min-height: 460px;
}

.projectdx-gallery .projectdx-shot:nth-child(2) {
    min-height: 460px;
}

.projectdx-work {
    background: #fdfdfd;
}

.projectdx-work-grid {
    grid-template-columns: 1fr;
    gap: 24px;
}

.projectdx-work-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.projectdx-work-list div {
    min-height: 190px;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
    text-align: center;
    gap: 14px;
}

.projectdx-work-list i {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(223, 106, 73, .10);
    font-size: 27px;
}

.projectdx-results-dark {
    margin: 0 auto;
    background: #fdfdfd;
}

.projectdx-results-dark .projectsx-shell {
    padding: 38px;
    border-radius: 20px;
    color: #fff;
    background:
        radial-gradient(circle at 96% 20%, rgba(223, 106, 73, .26), transparent 32%),
        linear-gradient(135deg, #0f131a 0%, #171b23 100%);
    box-shadow: 0 24px 70px rgba(23, 27, 35, .18);
}

.projectdx-results-dark .projectdx-section-head h2 {
    color: #fff;
}

.projectdx-results-dark .projectdx-result-grid article {
    min-height: 120px;
    padding: 0 26px;
    border-radius: 0;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, .12);
    background: transparent;
    box-shadow: none;
}

.projectdx-results-dark .projectdx-result-grid article:last-child {
    border-right: 0;
}

.projectdx-results-dark .projectdx-result-grid span {
    color: rgba(255, 255, 255, .72);
}

.projectdx-similar {
    padding-top: 68px;
}

.projectdx-similar .projectsx-card {
    grid-template-columns: 1fr;
}

.projectdx-similar .projectsx-card-media {
    min-height: 210px;
}

.contactx-grid {
    grid-template-columns: .9fr 1.1fr;
}

.contactx-form {
    gap: 16px;
}

.contactx-form-head h2 {
    margin-bottom: 8px;
}

.contactx-form-head p {
    margin: 0 0 10px;
    color: #675f5c;
    font-size: 14.5px;
    line-height: 1.65;
}

.contactx-form input,
.contactx-form select {
    min-height: 54px;
}

.contactx-form textarea {
    min-height: 150px;
}

.contactx-form button {
    width: fit-content;
    min-width: 190px;
}

@media (max-width: 1199.98px) {
    .projectdx-work-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .projectsx-featured-strip {
        grid-template-columns: 94px 1fr;
        border-radius: 22px;
    }

    .projectsx-featured-strip .websol-kicker,
    .projectsx-featured-strip p,
    .projectsx-featured-strip em {
        grid-column: 2;
    }

    .projectsx-featured-strip strong {
        grid-column: 2;
    }

    .projectdx-gallery,
    .contactx-grid {
        grid-template-columns: 1fr;
    }

    .projectdx-gallery .projectdx-shot:first-child,
    .projectdx-gallery .projectdx-shot:nth-child(2) {
        min-height: 320px;
    }
}

@media (max-width: 767.98px) {
    .projectsx-stats-strip .stats-strip-wrap {
        transform: none;
    }

    .projectsx-featured-strip {
        padding: 14px;
    }

    .projectdx-info-grid div {
        border-right: 0;
        border-bottom: 1px solid rgba(23, 27, 35, .08);
    }

    .projectdx-work-list {
        grid-template-columns: 1fr;
    }

    .projectdx-results-dark .projectsx-shell {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .projectdx-results-dark .projectdx-result-grid article {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        padding: 22px 0;
    }

    .projectdx-results-dark .projectdx-result-grid article:last-child {
        border-bottom: 0;
    }

    .contactx-form button {
        width: 100%;
    }
}

/* Final project/contact refinements */
.projectsx-hero-grid-clean {
    grid-template-columns: minmax(0, 820px);
    min-height: auto;
}

.projectsx-hero-grid-clean .projectsx-hero-copy {
    max-width: 820px;
}

.projectsx-hero-soft .projectsx-device {
    display: none !important;
}

.projectsx-stats-strip {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    z-index: 2;
    padding: 0 var(--container-pad) 34px;
    background: #f7f5f3;
    pointer-events: auto;
}

.projectsx-stats-strip .stats-strip-wrap {
    transform: translateY(-34px);
}

.projectsx-featured-min {
    padding: 0 0 72px;
    background: #f7f5f3;
}

.projectsx-featured-strip {
    width: 100%;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr) auto;
    grid-template-rows: auto auto auto;
    gap: 6px 24px;
    align-items: center;
    padding: 18px 24px;
    border-radius: 26px;
    color: #171b23;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 22px 70px rgba(23, 27, 35, .10);
    border: 1px solid rgba(23, 27, 35, .06);
}

.projectsx-featured-thumb {
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 96px;
    height: 96px;
    border-radius: 24px;
    overflow: hidden;
}

.projectsx-featured-strip .websol-kicker {
    grid-column: 2;
    grid-row: 1;
}

.projectsx-featured-strip strong {
    grid-column: 2;
    grid-row: 2;
    font-size: clamp(24px, 2.2vw, 34px);
    line-height: 1.08;
}

.projectsx-featured-strip p {
    grid-column: 2;
    grid-row: 3;
    max-width: 760px;
    margin: 0;
    color: #706966;
    line-height: 1.55;
}

.projectsx-featured-strip em {
    grid-column: 3;
    grid-row: 1 / span 3;
    align-self: center;
    white-space: nowrap;
}

.projectcase-page {
    background: #f7f5f3;
}

.projectcase-hero {
    background:
        radial-gradient(circle at 88% 20%, rgba(223, 106, 73, .18), transparent 30%),
        linear-gradient(135deg, #111821 0%, #171b23 58%, #242832 100%);
}

.projectcase-hero .websol-breadcrumb,
.projectcase-hero .websol-breadcrumb a,
.projectcase-hero p {
    color: rgba(255, 255, 255, .72);
}

.projectcase-hero h1,
.projectcase-hero .websol-breadcrumb strong {
    color: #fff;
}

.projectcase-visual {
    min-height: 430px;
}

.projectcase-visual-slot,
.projectcase-showcase-slot {
    width: 100%;
    min-height: 100%;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    padding: 36px;
    border-radius: 24px;
    text-align: center;
    color: rgba(255, 255, 255, .82);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03)),
        rgba(17, 24, 33, .88);
    border: 1px dashed rgba(255, 255, 255, .22);
}

.projectcase-visual-slot i,
.projectcase-showcase-slot i {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    color: #ff8758;
    background: rgba(255, 135, 88, .12);
    font-size: 34px;
}

.projectcase-info {
    position: relative;
    z-index: 2;
    margin-top: -48px;
    padding: 0 var(--container-pad) 50px;
}

.projectcase-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 22px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(23, 27, 35, .07);
    box-shadow: 0 24px 80px rgba(23, 27, 35, .10);
}

.projectcase-info-grid article {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-areas: "icon label" "icon value";
    gap: 3px 14px;
    align-items: center;
    padding: 16px 22px;
    border-right: 1px solid rgba(23, 27, 35, .08);
}

.projectcase-info-grid article:last-child {
    border-right: 0;
}

.projectcase-info-grid i {
    grid-area: icon;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #df6a49;
    background: rgba(223, 106, 73, .10);
    font-size: 22px;
}

.projectcase-info-grid span {
    grid-area: label;
    color: #8a827d;
    font-size: 13px;
    font-weight: 800;
}

.projectcase-info-grid strong {
    grid-area: value;
    color: #171b23;
    font-size: 16px;
}

.projectcase-story,
.projectcase-showcase,
.projectcase-work,
.projectcase-results,
.projectcase-similar {
    padding: 64px var(--container-pad);
}

.projectcase-story {
    padding-top: 10px;
}

.projectcase-story-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.projectcase-story-card {
    min-height: 280px;
    display: grid;
    align-content: center;
    padding: 40px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(23, 27, 35, .07);
    box-shadow: 0 18px 60px rgba(23, 27, 35, .07);
}

.projectcase-story-card-soft {
    background: linear-gradient(135deg, rgba(223, 106, 73, .10), rgba(255, 255, 255, .94));
}

.projectcase-story-card h2,
.projectcase-results-head h2 {
    margin: 8px 0 12px;
    color: #171b23;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.08;
}

.projectcase-story-card p {
    margin: 0;
    color: #675f5c;
    font-size: 17px;
    line-height: 1.75;
}

.projectcase-showcase {
    background: #fff;
}

.projectcase-showcase .websol-detail-grid {
    min-height: auto;
    align-items: center;
    gap: 44px;
    padding: 72px 0;
}

.projectcase-showcase .websol-detail-copy {
    padding: 0;
}

.projectcase-showcase .websol-detail-copy h2 {
    margin: 0;
    font-family: var(--hero-font, "Montserrat", sans-serif);
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -1.2px;
    font-weight: 850;
}

.projectcase-showcase .websol-detail-copy p {
    max-width: 620px;
    margin: 18px 0 0;
    font-size: 16px;
    line-height: 1.75;
}

.projectcase-showcase .websol-detail-visual {
    min-height: 430px;
    display: grid;
}

.projectcase-showcase-slot {
    color: #675f5c;
    background: #f7f5f3;
    border-color: rgba(223, 106, 73, .30);
}

.projectcase-work {
    background: #fdfdfd;
}

.projectcase-results {
    background: #fdfdfd;
}

.projectcase-results-box {
    padding: 38px;
    border-radius: 22px;
    color: #fff;
    background:
        radial-gradient(circle at 96% 18%, rgba(223, 106, 73, .30), transparent 30%),
        linear-gradient(135deg, #111821, #171b23);
}

.projectcase-results-head h2 {
    color: #fff;
}

.projectcase-result-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 24px;
}

.projectcase-result-grid article {
    padding: 22px 28px;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.projectcase-result-grid article:last-child {
    border-right: 0;
}

.projectcase-result-grid strong {
    display: block;
    color: #ff8758;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1;
}

.projectcase-result-grid span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .74);
    font-weight: 700;
}

.projectcase-similar {
    background: #fff;
}

.contactx-grid-clean {
    grid-template-columns: 1fr;
}

.contactx-lead {
    max-width: 720px;
    margin: 0 0 26px;
    color: #675f5c;
    line-height: 1.7;
}

.contactx-grid-clean .contactx-info {
    padding: 42px;
}

.contactx-grid-clean .contactx-methods {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.contactx-grid-clean .contactx-methods a {
    min-height: 170px;
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    justify-items: start;
    gap: 10px;
    padding: 24px;
}

.contactx-grid-clean .contactx-methods i,
.contactx-grid-clean .contactx-address i {
    margin-bottom: 4px;
}

.contactx-grid-clean .contactx-methods strong,
.contactx-grid-clean .contactx-address strong {
    word-break: break-word;
}

.academyx-page {
    background: #f7f5f3;
}

.academyx-branches {
    padding: 86px var(--container-pad);
}

.academyx-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.academyx-card {
    min-height: 430px;
    display: grid;
    align-content: end;
    gap: 14px;
    padding: 40px;
    border-radius: 24px;
    color: #171b23;
    background: #fff;
    border: 1px solid rgba(23, 27, 35, .07);
    box-shadow: 0 22px 70px rgba(23, 27, 35, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.academyx-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 90px rgba(23, 27, 35, .13);
}

.academyx-card-dark {
    color: #fff;
    background:
        radial-gradient(circle at 88% 20%, rgba(223, 106, 73, .24), transparent 32%),
        linear-gradient(135deg, #111821, #1b202a);
}

.academyx-logo {
    align-self: start;
    width: min(100%, 260px);
    min-height: 82px;
    display: grid;
    place-items: center;
    justify-self: start;
    margin-bottom: 60px;
}

.academyx-logo-img img {
    max-width: 240px;
    height: auto;
}

.academyx-logo-text {
    justify-content: start;
    color: #ff8758;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: 0;
}

.academyx-card span {
    color: #df6a49;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.academyx-card h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.04;
}

.academyx-card p {
    max-width: 620px;
    margin: 0;
    color: #675f5c;
    font-size: 17px;
    line-height: 1.7;
}

.academyx-card-dark p {
    color: rgba(255, 255, 255, .72);
}

.academyx-card em {
    margin-top: 14px;
    color: #df6a49;
    font-style: normal;
    font-weight: 900;
}

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

    .projectcase-info-grid article:nth-child(2) {
        border-right: 0;
    }

    .projectcase-info-grid article:nth-child(-n+2) {
        border-bottom: 1px solid rgba(23, 27, 35, .08);
    }
}

@media (max-width: 991.98px) {
    .projectsx-featured-strip {
        grid-template-columns: 92px minmax(0, 1fr);
        padding: 18px;
    }

    .projectsx-featured-strip em {
        grid-column: 2;
        grid-row: 4;
        justify-self: start;
    }

    .projectcase-story-grid,
    .academyx-grid,
    .contactx-grid-clean .contactx-methods {
        grid-template-columns: 1fr;
    }

    .projectcase-info {
        margin-top: -34px;
    }
}

@media (max-width: 767.98px) {
    .projectsx-hero-grid-clean {
        min-height: auto;
    }

    .projectsx-stats-strip {
        padding-bottom: 26px;
    }

    .projectsx-stats-strip .stats-strip-wrap {
        transform: none;
        margin-top: -22px;
    }

    .projectsx-featured-min {
        padding-bottom: 52px;
    }

    .projectsx-featured-strip {
        grid-template-columns: 1fr;
        gap: 10px;
        border-radius: 20px;
    }

    .projectsx-featured-thumb,
    .projectsx-featured-strip .websol-kicker,
    .projectsx-featured-strip strong,
    .projectsx-featured-strip p,
    .projectsx-featured-strip em {
        grid-column: 1;
        grid-row: auto;
    }

    .projectsx-featured-thumb {
        width: 100%;
        height: 170px;
    }

    .projectcase-info {
        margin-top: 0;
        padding-top: 28px;
    }

    .projectcase-info-grid,
    .projectcase-result-grid {
        grid-template-columns: 1fr;
    }

    .projectcase-info-grid article,
    .projectcase-info-grid article:nth-child(2),
    .projectcase-info-grid article:nth-child(-n+2),
    .projectcase-result-grid article {
        border-right: 0;
        border-bottom: 1px solid rgba(23, 27, 35, .08);
    }

    .projectcase-info-grid article:last-child,
    .projectcase-result-grid article:last-child {
        border-bottom: 0;
    }

    .projectcase-story,
    .projectcase-showcase,
    .projectcase-work,
    .projectcase-results,
    .projectcase-similar,
    .academyx-branches {
        padding: 52px var(--container-pad);
    }

    .projectcase-story-card,
    .contactx-grid-clean .contactx-info,
    .academyx-card {
        padding: 26px;
        border-radius: 20px;
    }

    .projectcase-visual,
    .projectcase-showcase .websol-detail-visual {
        min-height: 300px;
    }

    .projectcase-results-box {
        padding: 28px 22px;
    }

    .academyx-card {
        min-height: 360px;
    }

    .academyx-logo {
        margin-bottom: 28px;
    }
}

/* Site-wide polish pass */
.aboutx-hero-grid {
    grid-template-columns: minmax(0, 820px) !important;
}

.aboutx-hero-content {
    max-width: 820px;
}

.channels-section,
.process-flow,
.arv-why-section,
.arv-ref-section {
    background: #f7f5f3 !important;
}

.projectcase-page {
    color: #171b23;
}

.projectcase-hero .websol-hero-grid {
    grid-template-columns: minmax(0, .88fr) minmax(360px, .76fr);
}

.projectcase-hero .websol-btn-light {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .05);
}

.projectcase-info-grid article,
.projectcase-story-card,
.projectcase-showcase .websol-detail-copy {
    color: #171b23;
}

.projectcase-showcase .websol-detail-copy h2,
.projectcase-work .websol-section-head h2,
.projectcase-similar .websol-section-head h2 {
    color: #171b23;
}

.projectcase-showcase .websol-detail-copy p {
    color: #675f5c;
}

.projectcase-showcase .websol-check-list {
    display: grid;
    gap: 14px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.projectcase-showcase .websol-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #302826;
    font-size: 15.5px;
    font-weight: 800;
    line-height: 1.5;
}

.projectcase-showcase .websol-check-list i {
    flex: 0 0 auto;
    margin-top: 2px;
    color: #df6a49;
    font-size: 18px;
}

.projectcase-showcase-slot strong,
.projectcase-showcase-slot span {
    color: #302826;
}

.academyx-logo-arvengo {
    width: min(100%, 300px);
    min-height: 96px;
    justify-items: start;
}

.academyx-logo-arvengo img {
    max-width: 280px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.academyx-card-dark .academyx-logo-arvengo {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .92);
}

@media (max-width: 991.98px) {
    .projectcase-hero .websol-hero-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .aboutx-hero-grid {
        grid-template-columns: 1fr !important;
    }

}

/* Unified light surfaces and button language */
body,
main,
.channels-section,
.process-flow,
.arv-why-section,
.arv-ref-section,
.aboutx-intro,
.aboutx-values,
.aboutx-services,
.visionx-main,
.visionx-values,
.visionx-quote,
.processx-main,
.qualityx-main,
.faqx-main,
.projectsx-page,
.projectsx-featured-min,
.projectsx-list,
.projectsx-stats-strip,
.projectcase-page,
.projectcase-story,
.projectcase-showcase,
.projectcase-work,
.projectcase-results,
.projectcase-similar,
.contactx-page,
.contactx-main,
.contactx-map-section,
.academyx-page,
.academyx-branches,
.websol-intro,
.websol-types,
.websol-deliver {
    background: #f7f5f3 !important;
}

.h-btn-primary,
.websol-btn-primary,
.arv-cta-btn-primary {
    color: #fff !important;
    background: var(--accent, #df6a49) !important;
    border: 2px solid rgba(255, 255, 255, .08) !important;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .08) inset !important;
}

.h-btn-primary:hover,
.websol-btn-primary:hover,
.arv-cta-btn-primary:hover {
    color: #fff !important;
    background: var(--accent-hover, #cf5c3c) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(223, 106, 73, .18) !important;
}

.projectcase-work {
    padding-top: 72px;
}

.projectcase-work .websol-section-head {
    max-width: 760px;
    margin: 0 0 34px;
    text-align: left;
}

.projectcase-work .websol-section-head h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
}

.projectcase-work-why {
    margin-top: 0;
}

.projectcase-work-why .arv-why-card {
    min-height: 260px;
    background: rgba(255, 255, 255, .72);
}

/* Brand kit, career and simplified payment pages */
.quickpay-placeholder-section,
.brandkit-section,
.career-culture-section,
.career-positions-section,
.hr-main-section {
    padding: 76px 0;
    background: #f7f5f3;
}

.bankx-section-spaced {
    padding-top: 128px;
}

.quickpay-placeholder {
    padding: clamp(24px, 4vw, 44px);
    border: 1px solid rgba(23, 27, 35, .07);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(23, 27, 35, .07);
}

.quickpay-placeholder-head {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 28px;
}

.quickpay-placeholder-head i,
.brandkit-contact i,
.career-mail-cta i,
.hr-mail-strip i {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 18px;
    color: #df6a49;
    background: rgba(223, 106, 73, .10);
    font-size: 25px;
}

.quickpay-placeholder-head span,
.brandkit-head span,
.brandkit-colors > span,
.brandkit-notes > span {
    display: block;
}

.quickpay-placeholder-head h2 {
    margin: 6px 0 0;
    color: #171b23;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -.8px;
}

.quickpay-empty-box {
    min-height: clamp(360px, 44vw, 620px);
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    padding: 34px;
    border: 1px dashed rgba(23, 27, 35, .14);
    border-radius: 20px;
    color: #746d69;
    background: linear-gradient(180deg, #fff, #fbfaf9);
    text-align: center;
}

.quickpay-empty-box i {
    color: #df6a49;
    font-size: 44px;
}

.quickpay-empty-box strong {
    color: #171b23;
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.12;
}

.quickpay-empty-box p {
    max-width: 560px;
    margin: 0;
    line-height: 1.7;
}

.brandkit-hero,
.career-hero {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 20%, rgba(223, 106, 73, .26), transparent 30%),
        linear-gradient(135deg, #070b10 0%, #121722 62%, #0d1118 100%);
}

.brandkit-hero-inner,
.career-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 420px;
    display: grid;
    align-items: center;
}

.brandkit-hero-copy,
.career-hero-copy {
    max-width: 680px;
}

.brandkit-hero .aboutx-breadcrumb,
.brandkit-hero .aboutx-breadcrumb a,
.brandkit-hero .aboutx-breadcrumb strong,
.career-hero .aboutx-breadcrumb,
.career-hero .aboutx-breadcrumb a,
.career-hero .aboutx-breadcrumb strong {
    color: rgba(255, 255, 255, .72);
}

.brandkit-hero h1,
.career-hero h1 {
    margin: 18px 0 18px;
    color: #fff;
    font-size: clamp(46px, 6vw, 78px);
    line-height: .98;
    letter-spacing: -1.6px;
}

.brandkit-hero p,
.career-hero p {
    max-width: 590px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.65;
}

.brandkit-hero-art {
    position: absolute;
    inset: 0 0 0 auto;
    width: min(58vw, 860px);
    pointer-events: none;
}

.brandkit-folder,
.brandkit-card-mini,
.brandkit-card-accent {
    position: absolute;
    border-radius: 18px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .38);
    transform: rotate(-10deg);
}

.brandkit-folder {
    right: 18%;
    top: 68px;
    width: 360px;
    height: 240px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #20242d, #080b10);
}

.brandkit-folder img {
    width: 210px;
    filter: brightness(0) invert(1);
}

.brandkit-card-mini {
    right: 8%;
    top: 86px;
    width: 230px;
    height: 118px;
    background: #f7f5f3;
}

.brandkit-card-accent {
    right: 10%;
    top: 232px;
    width: 210px;
    height: 118px;
    background: linear-gradient(135deg, #171b23 0 58%, #df6a49 58% 100%);
}

.brandkit-head,
.career-section-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 28px;
}

.brandkit-head h2,
.career-section-head h2 {
    max-width: 720px;
    margin: 8px 0 0;
    color: #171b23;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -1px;
}

.brandkit-file-grid,
.career-position-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.brandkit-file-card,
.career-position-card,
.hr-panel,
.hr-process,
.hr-faq,
.brandkit-contact {
    border: 1px solid rgba(23, 27, 35, .07);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 54px rgba(23, 27, 35, .055);
}

.brandkit-file-card,
.career-position-card {
    min-height: 250px;
    padding: 22px;
}

.brandkit-format {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    padding: 0 8px;
    border-radius: 5px;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.brandkit-format-orange { background: #df6a49; }
.brandkit-format-green { background: #4f9d3a; }
.brandkit-format-red { background: #e33d3d; }

.brandkit-logo-preview {
    height: 78px;
    display: grid;
    place-items: center;
    margin: 14px 0 12px;
}

.brandkit-logo-preview img {
    max-width: 170px;
    max-height: 54px;
}

.brandkit-file-card h3,
.career-position-card h3 {
    margin: 0 0 8px;
    color: #171b23;
    font-size: 19px;
}

.brandkit-file-card p,
.career-position-card p,
.brandkit-contact p {
    margin: 0;
    color: #675f5c;
    font-size: 14px;
    line-height: 1.6;
}

.brandkit-download,
.career-position-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    margin-top: 20px;
    padding: 0 14px;
    border-radius: 7px;
    color: #fff;
    background: #df6a49;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.brandkit-bottom-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr) minmax(260px, .45fr);
    gap: 28px;
    align-items: start;
    margin-top: 42px;
}

.brandkit-color-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.brandkit-color-list i {
    display: block;
    height: 74px;
    border-radius: 8px;
    border: 1px solid rgba(23, 27, 35, .10);
}

.brandkit-color-list strong,
.brandkit-color-list span {
    display: block;
    margin-top: 8px;
    color: #171b23;
    font-size: 13px;
}

.brandkit-color-list span {
    color: #675f5c;
    font-weight: 800;
}

.brandkit-notes ul,
.hr-panel ul {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.brandkit-notes li,
.hr-panel li {
    display: flex;
    gap: 10px;
    color: #4b4543;
    font-weight: 750;
    line-height: 1.5;
}

.brandkit-notes i,
.hr-panel i {
    color: #df6a49;
}

.brandkit-contact {
    padding: 28px;
}

.brandkit-contact .websol-btn {
    margin-top: 18px;
}

.career-hero-art,
.hr-hero-art {
    position: absolute;
    inset: 0 0 0 auto;
    width: min(58vw, 900px);
    pointer-events: none;
}

.career-desk {
    position: absolute;
    right: 8%;
    bottom: 0;
    width: 680px;
    height: 300px;
    border-radius: 28px 28px 0 0;
    background:
        radial-gradient(circle at 70% 20%, rgba(223, 106, 73, .28), transparent 22%),
        linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    border: 1px solid rgba(255, 255, 255, .08);
}

.career-people {
    position: absolute;
    right: 10%;
    bottom: 86px;
    display: flex;
    align-items: end;
    gap: 24px;
}

.career-people span,
.hr-hero-art > span {
    width: 52px;
    height: 92px;
    display: block;
    border-radius: 999px 999px 16px 16px;
    background: linear-gradient(180deg, #e7d7c5, #7a6757);
    box-shadow: 0 18px 50px rgba(0,0,0,.28);
}

.career-people span:nth-child(2),
.career-people span:nth-child(4),
.hr-hero-art > span:nth-child(3) {
    height: 120px;
    background: linear-gradient(180deg, #df6a49, #9e3f28);
}

.career-culture-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border: 1px solid rgba(23, 27, 35, .07);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 60px rgba(23, 27, 35, .055);
}

.career-culture-grid article {
    min-height: 150px;
    padding: 24px;
    border-right: 1px solid rgba(23, 27, 35, .08);
}

.career-culture-grid article:last-child {
    border-right: 0;
}

.career-culture-grid i,
.career-position-card > i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 15px;
    color: #df6a49;
    background: rgba(223, 106, 73, .10);
    font-size: 22px;
}

.career-culture-grid strong {
    display: block;
    color: #171b23;
    font-size: 15px;
    line-height: 1.25;
}

.career-culture-grid span,
.career-position-card span {
    display: block;
    margin-top: 8px;
    color: #675f5c;
    font-size: 13px;
    line-height: 1.5;
}

.career-areas ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.career-areas li {
    color: #4b4543;
    font-size: 13px;
    font-weight: 800;
}

.career-areas li::before {
    content: "";
    width: 6px;
    height: 6px;
    display: inline-block;
    margin-right: 8px;
    border-radius: 50%;
    background: #df6a49;
    vertical-align: middle;
}

.career-position-card {
    display: flex;
    flex-direction: column;
}

.career-position-card p {
    min-height: 88px;
    margin: 16px 0 0;
}

.career-position-card a {
    align-self: start;
    margin-top: auto;
}

.career-mail-cta,
.hr-mail-strip {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    margin-top: 34px;
    padding: 24px;
    border-radius: 18px;
    border: 1px solid rgba(223, 106, 73, .16);
    background: linear-gradient(135deg, rgba(223, 106, 73, .08), #fff);
}

.career-mail-cta h2 {
    margin: 0 0 6px;
    color: #171b23;
    font-size: clamp(22px, 3vw, 32px);
}

.career-mail-cta p {
    margin: 0;
    color: #675f5c;
}

.hr-hero-art {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.hr-lens {
    position: absolute;
    right: 24%;
    top: 112px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 10px solid rgba(255, 255, 255, .22);
    box-shadow: 0 20px 70px rgba(0,0,0,.4);
}

.hr-lens::after {
    content: "";
    position: absolute;
    width: 88px;
    height: 14px;
    right: -72px;
    bottom: -28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .22);
    transform: rotate(42deg);
}

.hr-main-grid {
    display: grid;
    grid-template-columns: minmax(280px, .7fr) minmax(0, 1.2fr) minmax(300px, .75fr);
    gap: 24px;
    align-items: start;
}

.hr-panel,
.hr-process,
.hr-faq {
    padding: 28px;
}

.hr-panel h2 {
    margin: 12px 0;
    color: #171b23;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.12;
}

.hr-panel p {
    margin: 0;
    color: #675f5c;
    line-height: 1.7;
}

.hr-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-top: 18px;
}

.hr-process-grid article {
    padding: 18px;
    border-radius: 16px;
    background: #fbfaf9;
}

.hr-process-grid i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #df6a49;
    background: rgba(223, 106, 73, .10);
}

.hr-process-grid strong {
    display: block;
    margin-top: 18px;
    color: #df6a49;
    font-size: 22px;
}

.hr-process-grid h3 {
    margin: 4px 0 8px;
    color: #171b23;
    font-size: 16px;
    line-height: 1.2;
}

.hr-process-grid p,
.hr-faq p {
    margin: 0;
    color: #675f5c;
    font-size: 13px;
    line-height: 1.55;
}

.hr-faq details {
    border-top: 1px solid rgba(23, 27, 35, .08);
    padding: 16px 0;
}

.hr-faq summary {
    cursor: pointer;
    color: #171b23;
    font-weight: 850;
}

.hr-faq p {
    padding-top: 10px;
}

.hr-mail-strip {
    margin-top: 28px;
}

.hr-mail-strip > div {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hr-mail-strip span {
    color: #675f5c;
}

.hr-mail-strip strong {
    color: #df6a49;
}

@media (max-width: 1199.98px) {
    .brandkit-file-grid,
    .career-position-grid,
    .career-culture-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .career-culture-grid article {
        border-right: 0;
        border-bottom: 1px solid rgba(23, 27, 35, .08);
    }

    .brandkit-bottom-grid,
    .hr-main-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 767.98px) {
    .brandkit-hero,
    .career-hero,
    .brandkit-hero-inner,
    .career-hero-inner {
        min-height: 360px;
    }

    .brandkit-hero-art,
    .career-hero-art,
    .hr-hero-art {
        opacity: .14;
        width: 100%;
    }

    .brandkit-file-grid,
    .career-position-grid,
    .career-culture-grid,
    .brandkit-color-list,
    .hr-process-grid {
        grid-template-columns: 1fr;
    }

    .brandkit-head,
    .career-section-head,
    .career-mail-cta,
    .hr-mail-strip {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .quickpay-placeholder-section,
    .brandkit-section,
    .career-culture-section,
    .career-positions-section,
    .hr-main-section {
        padding: 54px 0;
    }
}
