/* FONTS */
@font-face {
    font-family: "SizinLombardFont";
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: url('../fonts/HelveticaNeueThin.woff2') format('woff2');
}

@font-face {
    font-family: "SizinLombardFont";
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: url('../fonts/HelveticaNeueUltraLight.woff2') format('woff2');
}

@font-face {
    font-family: "SizinLombardFont";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/HelveticaNeueLight.woff2') format('woff2');
}

@font-face {
    font-family: "SizinLombardFont";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/HelveticaNeueRoman.woff2') format('woff2');
}

@font-face {
    font-family: "SizinLombardFont";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/HelveticaNeueMedium.woff2') format('woff2');
}

@font-face {
    font-family: "SizinLombardFont";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/HelveticaNeueBold.woff2') format('woff2');
}

@font-face {
    font-family: "SizinLombardFont";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/HelveticaNeueBold.woff2') format('woff2');
}

@font-face {
    font-family: "SizinLombardFont";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/HelveticaNeueHeavy.woff2') format('woff2');
}

@font-face {
    font-family: "SizinLombardFont";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('../fonts/HelveticaNeueBlack.woff2') format('woff2');
}

/* VARIABLES */
:root {
    --brand: #fddf00;
    --brand-secondary: #fdd85c;
    --ink: #10191b;
    --ink-2: #162529;
    --text: #1f2529;
    --muted: #828e97;
    --line: #c1c7c8;
    --bg: #f7f4ea;
    --card: var(--white);
    --footer: #0c1418;
    --footer-2: #10191b;
    --white: #ffffff;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 14px;
    --radius-xl: 20px;

    --shadow-sm: 0 2px 4px -1px rgba(16, 25, 27, 0.03), 0 4px 6px -1px rgba(16, 25, 27, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(16, 25, 27, 0.05), 0 10px 15px -3px rgba(16, 25, 27, 0.08);
    --shadow-lg: 0 10px 25px -3px rgba(16, 25, 27, 0.08), 0 24px 60px -5px rgba(16, 25, 27, 0.12);
    --transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);

    --font-body: "SizinLombardFont", "Segoe UI", Tahoma, Arial, sans-serif;
    --font-heading: "SizinLombardFont", "Segoe UI", Arial, sans-serif;

    --section-padding: 60px;
    --section-padding-lg: 90px;
}

/* BASE */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    transition: background 0.25s ease, color 0.25s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
    font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

:where(.site-nav .nav-link, .btn-header, .footer-title, .lang-switch__item) {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
}

.main {
    position: relative;
}

/* UTILITIES */
.text-muted {
    color: var(--muted) !important;
}

.text-brand {
    color: var(--brand);
}

.section-padding {
    padding: var(--section-padding) 0;
}

.calculator-section,
.products-section,
.careers-section,
.faq-section,
.contact-section {
    border-top: 1px solid var(--line);
}

.products-section,
.about-section,
.cta-banner {
    position: relative;
    overflow: hidden;
}

section[id] {
    scroll-margin-top: 140px;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* SHARED COMPONENTS */
:where(.header-social, .footer-social) {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

:where(.header-social__link, .footer-social__link) {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

:where(.header-social__link, .footer-social__link):hover {
    background: var(--brand);
    color: var(--ink);
    transform: translateY(-1px);
}

.btn-header {
    min-height: 48px;
    padding: 0 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-header:active {
    transform: scale(0.97) translateY(0);
}

.btn-header--primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-secondary));
    color: var(--ink);
    border: none;
    font-weight: 700;
}

.btn-header--primary:hover {
    background: linear-gradient(135deg, var(--brand-secondary), var(--brand));
    transform: translateY(-2px);
    color: var(--ink);
}

.btn-header--primary:active {
    box-shadow: 0 4px 10px -3px rgba(253, 223, 0, 0.4);
}

.btn-header--ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--line);
}

.btn-header--ghost:hover {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
}

.form-control {
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--brand) !important;
    background-color: transparent !important;
    box-shadow: 0 4px 15px rgba(253, 223, 0, 0.15), 0 0 0 1px var(--brand) !important;
}

.anim-delay-100 {
    transition-delay: 0.1s;
}

.anim-delay-200 {
    transition-delay: 0.2s;
}

.anim-delay-300 {
    transition-delay: 0.3s;
}

.header-meta__item--brand,
.header-meta__icon--brand {
    color: var(--brand);
}

.btn-header--light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-header--dark {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

.btn-header--dark:hover {
    background: var(--footer);
    color: var(--white);
    border-color: var(--footer);
    transform: translateY(-2px);
}

.pd-process__image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1050;
}

.header-top {
    background: linear-gradient(90deg, #091317 0%, #081920 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-top__inner {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-meta,
.header-tools {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-meta__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

a.header-meta__item:hover {
    color: var(--brand);
}

.header-tools__divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.16);
}

.header-social__link {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lang-switch__item {
    min-width: 34px;
    height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.lang-switch__item:hover,
.lang-switch__item.is-active {
    background: var(--brand);
    color: var(--ink);
}

.theme-toggle {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.theme-toggle:hover {
    background: var(--brand);
    color: var(--ink);
    transform: translateY(-1px);
}

.header-main {
    background: var(--card);
    border-bottom: 2px solid var(--brand);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1000;
}

.header-shell {
    min-height: 88px;
}

.site-logo img {
    height: 50px;
    display: block;
}

.site-nav {
    gap: 2px;
}

.site-nav .nav-link {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 14px !important;
    border-radius: 0;
    transition: var(--transition);
    position: relative;
    background: transparent !important;
}

.site-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.site-nav .nav-link:hover {
    color: var(--ink);
    background: transparent !important;
}

.site-nav .nav-link:hover::after {
    transform: scaleX(1);
}

.site-nav .nav-link.active,
.site-nav .nav-link.is-active {
    color: var(--ink);
    font-weight: 700;
    background: transparent !important;
}

.site-nav .nav-link.active::after,
.site-nav .nav-link.is-active::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.site-toggler {
    color: var(--text);
    background: transparent;
    box-shadow: none !important;
}

.mobile-panel {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.mobile-panel__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mobile-panel__social {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.mobile-panel__meta {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

/* HERO */
.hero-slider {
    position: relative;
}

.hero-slider .carousel-item {
    height: 65vh;
    min-height: 450px;
    max-height: 650px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(17, 17, 17, 0.3) 0%, rgba(17, 17, 17, 0.85) 100%);
}

.carousel-indicators {
    margin-bottom: 0;
    gap: 8px;
    bottom: auto;
    top: 50%;
    left: auto;
    right: 40px;
    transform: translateY(-50%);
    flex-direction: column;
    z-index: 15;
}

.carousel-indicators button {
    width: 4px !important;
    height: 40px !important;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.3) !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.carousel-indicators button.active {
    height: 60px !important;
    background-color: var(--brand) !important;
    box-shadow: 0 0 10px rgba(253, 223, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 650px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-label span {
    width: 44px;
    height: 3px;
    background: var(--brand);
    display: inline-block;
}

.hero-title {
    margin: 0;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    animation: slideUp 0.8s ease forwards;
}

.hero-text {
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.7;
    animation: slideUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

.hero-actions .btn-header {
    min-height: 54px;
    border-radius: var(--radius-md);
    padding: 0 28px;
}

/* PAGE HEADER */
.page-header {
    position: relative;
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
    padding: 70px 0 90px;
    border-bottom: 4px solid var(--brand);
    overflow: hidden;
}

.page-header__shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.page-header__shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.page-header__shapes .shape-1 {
    width: 350px;
    height: 350px;
    background: var(--brand);
    top: -150px;
    right: -50px;
}

.page-header__shapes .shape-2 {
    width: 250px;
    height: 250px;
    background: #ffffff;
    bottom: -100px;
    left: 10%;
    opacity: 0.05;
}

.page-header__shapes .bg-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.02);
    font-size: 220px;
    transform: rotate(-15deg);
}

.page-header__shapes .icon-1 {
    right: 5%;
    top: -20px;
}

.page-header__shapes .icon-2 {
    left: -5%;
    bottom: -50px;
    transform: rotate(25deg);
}

.page-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.2;
}

.page-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

/* CALCULATOR */
.calc-section-title {
    color: var(--ink);
}

.calc-box {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.calc-tabs {
    display: flex;
    border-bottom: 1px solid var(--line);
}

.calc-tab {
    flex: 1;
    padding: 18px 20px;
    background: transparent;
    border: none;
    color: var(--muted);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.calc-tab::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: var(--brand);
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.calc-tab:hover {
    color: var(--text);
}

.calc-tab.active {
    color: var(--ink);
}

.calc-tab.active::after {
    transform: scaleX(1);
}

.calc-body {
    padding: 28px;
}

.calc-item {
    margin-bottom: 8px;
}

.calc-item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.calc-item__header h5 {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calc-remove-btn {
    color: #ff4757;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
}

.hallmark-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.hallmark-options input[type="radio"] {
    display: none;
}

.hallmark-options label {
    min-width: 60px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--line);
    color: var(--muted);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
}

.hallmark-options label:hover {
    border-color: var(--brand);
    color: var(--ink);
}

.hallmark-options input[type="radio"]:checked+label {
    background: linear-gradient(135deg, var(--brand), var(--brand-secondary));
    border-color: transparent;
    color: var(--ink);
    font-weight: 800;
}

.calc-label {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.calc-input-box {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f1f3f4;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    margin-bottom: 12px;
    transition: var(--transition);
    cursor: text;
}

.calc-input-box:focus-within {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(253, 223, 0, 0.1);
}

.calc-input-value {
    background: transparent;
    border: none;
    outline: none;
    color: var(--ink);
    font-size: 20px;
    font-weight: 800;
    font-family: var(--font-heading);
    width: 4ch;
    min-width: 2ch;
}

.calc-unit {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.calc-range {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, var(--brand) 0%, #ddd 0%);
    outline: none;
    cursor: pointer;
}

.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--brand);
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(253, 223, 0, 0.4);
    cursor: pointer;
    transition: transform 0.15s ease;
}

.calc-range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.calc-range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--brand);
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(253, 223, 0, 0.4);
    cursor: pointer;
}

.calc-divider {
    height: 1px;
    background: var(--line);
    margin: 20px 0;
}

.calc-add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    border: 2px dashed var(--line);
    border-radius: var(--radius-md);
    background: transparent;
    color: var(--muted);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 16px;
}

.calc-add-btn:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: rgba(253, 223, 0, 0.04);
}

.calc-results-wrapper {
    position: sticky;
    top: 120px;
}

.calc-results {
    padding: 28px;
    border-left: 1px solid var(--line);
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
}

.calc-result-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.calc-result-label {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
}

.calc-result-value {
    color: var(--ink);
    font-size: 22px;
    font-family: var(--font-heading);
    font-weight: 800;
}

.calc-result-value--highlight {
    color: var(--brand);
    font-size: 28px;
}

.calc-result-divider {
    height: 1px;
    background: var(--line);
}

/* CALCULATOR PAGE */
.mini-process-banner {
    background: #ffffff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.process-step {
    padding: 20px;
}

.step-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 32px;
    color: var(--line);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.process-step:hover .step-num {
    color: var(--brand);
}

.process-step h6 {
    font-weight: 700;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
}

.help-center-card {
    background: var(--bg);
}

.help-box {
    background: var(--card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

/* PRODUCTS */
.product-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 48px 36px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--line);
    border-top: 4px solid var(--brand);
}

.product-icon-wrap {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--brand), var(--brand-secondary));
    color: var(--ink);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.product-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.product-desc {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.product-link {
    color: var(--ink);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

.product-link:hover {
    color: var(--brand);
}

/* PRODUCTS PAGE */
.products-list-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
}

.products-list-title {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
}

.products-list-text {
    color: var(--muted);
    margin: 0;
    font-size: 17px;
}

.fintech-card {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding: 40px 32px;
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-decoration: none;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 1;
}

.fintech-card:hover {
    background: var(--ink);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(17, 17, 17, 0.25);
    border-color: var(--ink);
}

.fintech-card__watermark {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 180px;
    color: #ffffff;
    opacity: 0;
    transform: scale(0.5) rotate(-15deg);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
    z-index: -1;
}

.fintech-card:hover .fintech-card__watermark {
    opacity: 0.03;
    transform: scale(1) rotate(0deg);
}

.icon-surface {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: var(--brand);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 32px;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fintech-card:hover .icon-surface {
    background: rgba(253, 223, 0, 0.1);
    color: var(--brand);
}

.fintech-card__body {
    flex-grow: 1;
}

.fintech-card h3 {
    color: var(--ink);
    font-size: 22px;
    margin-bottom: 12px;
    transition: color 0.5s ease;
}

.fintech-card:hover h3 {
    color: #ffffff;
}

.fintech-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
    transition: color 0.5s ease;
}

.fintech-card:hover p {
    color: rgba(255, 255, 255, 0.6);
}

.fintech-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.link-text {
    color: var(--ink);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.5s ease;
}

.fintech-card:hover .link-text {
    color: var(--brand);
}

.arrow-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f3f4f6;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fintech-card:hover .arrow-circle {
    background: var(--brand);
    color: var(--ink);
    transform: translateX(6px) scale(1.05);
}

.products-pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 46px;
}

.products-pagination {
    gap: 8px;
    margin: 0;
}

.products-pagination .page-link {
    width: 44px;
    height: 44px;
    border-radius: 12px !important;
    border: 1px solid var(--line);
    color: var(--text);
    background: var(--card);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    box-shadow: none;
}

.products-pagination .page-link:hover {
    background: rgba(253, 223, 0, 0.16);
    color: var(--ink);
    border-color: var(--brand);
}

.products-pagination .page-item.active .page-link {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--ink);
}

.products-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    pointer-events: none;
}

/* PRODUCT DETAIL PAGE */
.pd-hero {
    background: linear-gradient(135deg, var(--ink) 0%, #060a0c 100%);
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--brand);
}

.pd-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: var(--brand);
    top: -100px;
    right: 10%;
}

.glow-2 {
    width: 300px;
    height: 300px;
    background: #ffffff;
    bottom: -50px;
    left: 5%;
    opacity: 0.05;
}

.pd-hero__title {
    color: var(--white);
    font-size: clamp(36px, 5vw, 54px);
    line-height: 1.15;
    margin-bottom: 24px;
}

.pd-hero__desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 90%;
}

.pd-hero__stats {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 32px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    color: var(--brand);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
}

.stat-item span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.pd-visual {
    perspective: 1000px;
    display: flex;
    justify-content: center;
}

.pd-visual__card {
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pd-visual:hover .pd-visual__card {
    transform: rotateY(0deg) rotateX(0deg);
}

.pd-visual__card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.brand-text {
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 1px;
}

.pd-visual__card .chip {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(253, 223, 0, 0.2);
    color: var(--brand);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pd-visual__card .amount {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 40px;
}

.pd-visual__card .amount span {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.pd-visual__card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.pd-visual__card .info span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-bottom: 4px;
}

.pd-visual__card .info strong {
    color: var(--brand);
    font-size: 18px;
    font-weight: 700;
}

.benefit-box {
    background: var(--card);
    border: 1px solid var(--line);
    padding: 40px 32px;
    border-radius: 24px;
    height: 100%;
    transition: all 0.4s ease;
}

.benefit-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(253, 223, 0, 0.5);
}

.benefit-box .icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(253, 223, 0, 0.15);
    color: var(--ink);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.benefit-box:hover .icon-wrap {
    background: var(--brand);
    transform: scale(1.1);
}

.benefit-box h4 {
    font-size: 20px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
}

.benefit-box p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.pd-process {
    background: #ffffff;
    border-top: 1px solid var(--line);
}

.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0, 0, 0, 0.08);
}

.timeline-step {
    position: relative;
    margin-bottom: 40px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-marker {
    position: absolute;
    left: -55px;
    top: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--card);
    border: 3px solid var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    color: var(--ink);
    box-shadow: 0 0 0 6px #ffffff;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-step:hover .step-marker {
    background: var(--brand);
    transform: scale(1.1);
}

.step-content h4 {
    font-size: 20px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
    padding-top: 4px;
}

.step-content p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* PRODUCT DETAIL PROCESS & SUPPORT DECK */
.fintech-process-section {
    border-top: 1px solid var(--line);
    padding: 80px 0;
}

.section-title-modern {
    font-size: 32px;
    color: var(--ink);
    margin-bottom: 12px;
}

.section-subtitle-modern {
    font-size: 16px;
    font-weight: 500;
}

.modern-process-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 40px 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.modern-process-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(253, 223, 0, 0.4);
}

.card-step-badge {
    position: absolute;
    top: 32px;
    right: 32px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 44px;
    line-height: 1;
    color: #e9ecef;
    transition: color 0.3s ease;
}

.modern-process-card:hover .card-step-badge {
    color: rgba(253, 223, 0, 0.25);
}

.card-icon-surface {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(253, 223, 0, 0.12);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 32px;
    transition: var(--transition);
}

.modern-process-card:hover .card-icon-surface {
    background: var(--brand);
    box-shadow: 0 6px 15px rgba(253, 223, 0, 0.3);
}

.modern-process-card h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
}

.modern-process-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.premium-support-deck {
    padding-bottom: 80px !important;
}

.support-split-card {
    position: relative;
    border-radius: 28px;
    padding: 48px;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid transparent;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    z-index: 1;
}

.support-split-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.support-split-card.dark-deck {
    background: var(--ink);
    border-color: var(--ink);
}

.support-split-card.light-deck {
    background: var(--white);
    border-color: rgba(0, 0, 0, 0.05);
}

.deck-watermark {
    position: absolute;
    right: -20px;
    bottom: -30px;
    font-size: 160px;
    pointer-events: none;
    z-index: -1;
    transition: var(--transition);
}

.dark-deck .deck-watermark {
    color: rgba(255, 255, 255, 0.02);
}

.light-deck .deck-watermark {
    color: rgba(0, 0, 0, 0.02);
}

.support-split-card:hover .deck-watermark {
    transform: scale(1.08) rotate(-5deg);
}

.deck-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    padding: 4px 10px;
    border-radius: 6px;
}

.dark-deck .deck-tag {
    background: rgba(253, 223, 0, 0.15);
    color: var(--brand);
}

.light-deck .deck-tag {
    background: #f1f3f5;
    color: var(--muted);
}

.support-split-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.dark-deck h3 {
    color: var(--white);
}

.light-deck h3 {
    color: var(--ink);
}

.support-split-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 90%;
}

.dark-deck p {
    color: rgba(255, 255, 255, 0.6);
}

.light-deck p {
    color: var(--muted);
}

.support-split-card .btn {
    align-self: flex-start;
}

/* CAREERS */
.careers-premium-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.careers-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
    grid-template-areas:
        "intro media"
        "body  media";
    align-items: stretch;
}

.careers-intro {
    grid-area: intro;
    padding: 64px 56px 0 56px;
}

.careers-body {
    grid-area: body;
    padding: 0 56px 64px 56px;
}

.careers-media {
    grid-area: media;
    position: relative;
    min-height: 520px;
    height: 100%;
    overflow: hidden;
    background: #f7f4ea;
    display: flex;
    align-items: center;
    justify-content: center;
}

.careers-image {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: var(--career-position, center);
    display: block;
}

.careers-section .careers-label {
    color: var(--muted);
    animation: none;
    opacity: 1;
}

.careers-section .careers-label span {
    background: var(--brand);
}

.careers-section h2 {
    color: var(--ink);
}

/* CAREERS PAGE */
.corporate-marquee {
    background: var(--ink);
    padding: 24px 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    border-bottom: 2px solid var(--brand);
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    animation: scrollMarquee 25s linear infinite;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.marquee-item--brand {
    color: var(--brand);
}

.marquee-dot {
    width: 8px;
    height: 8px;
    margin: 0 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.oversized-manifesto {
    font-family: var(--font-heading);
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 800;
    color: var(--ink);
    margin: 0;
}

.manifesto-subtext {
    max-width: 700px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.6;
}

.manifesto-highlight {
    color: var(--brand);
    position: relative;
    display: inline-block;
    background: transparent !important;
    padding: 0 !important;
}

.manifesto-highlight::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(253, 223, 0, 0.2);
    border-radius: 4px;
    z-index: -1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 400px;
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(16, 25, 27, 0.4) 100%);
    z-index: 1;
}

.g-item-1 {
    grid-column: span 4;
}

.g-item-2 {
    grid-column: span 5;
}

.g-item-3 {
    grid-column: span 3;
}

.hr-value-card {
    background: var(--card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 40px 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    z-index: 1;
}

.hr-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 2;
}

.hr-value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.hr-value-card:hover::before {
    transform: scaleX(1);
}

.hr-value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
    border-radius: 16px;
    background: rgba(253, 223, 0, 0.12);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition);
}

.hr-value-card:hover .hr-value-icon {
    background: var(--brand);
    color: var(--ink);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(253, 223, 0, 0.2);
}

.hr-value-card h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
}

.hr-value-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.recruitment-process-section {
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.recruitment-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.recruitment-timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--line);
    z-index: 1;
}

.r-step {
    position: relative;
    z-index: 2;
}

.r-step-marker {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--line);
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.4s ease;
}

.r-step:hover .r-step-marker {
    border-color: var(--brand);
    background: var(--brand);
    color: var(--ink);
    box-shadow: 0 0 0 10px rgba(253, 223, 0, 0.15);
}

.r-step-content h5 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
}

.r-step-content p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.vacancies-section {
    background: var(--white);
    border-top: 1px solid var(--line);
}

.vacancy-card {
    background: var(--card);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.vacancy-card:hover {
    border-color: rgba(253, 223, 0, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transform: translateY(-6px);
}

.vacancy-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.vacancy-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.v-tag {
    padding: 6px 14px;
    border-radius: 50px;
    background: #f3f4f6;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.v-tag--primary {
    background: rgba(253, 223, 0, 0.15);
    color: #998500;
}

.v-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 50px;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.vacancy-title {
    color: var(--ink);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
}

.vacancy-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.v-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.v-info-item .v-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(253, 223, 0, 0.15);
    color: #998500;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.v-info-item span {
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
}

.vacancy-desc {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.vacancy-card__footer {
    margin-top: auto;
}

.bg-light-surface {
    background-color: #f9fafb;
}

.vacancy-detail-hero {
    position: relative;
    background: linear-gradient(135deg, var(--ink) 0%, #060a0c 100%);
    padding: 60px 0 80px;
    border-bottom: 4px solid var(--brand);
    overflow: hidden;
}

.vd-hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.vd-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(253, 223, 0, 0.15) 0%, transparent 60%);
    top: -200px;
    left: -100px;
    filter: blur(50px);
}

.vd-page-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin: 0;
}

.vd-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    max-width: 700px;
}

.vd-content-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-sm);
}

.vd-block-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 20px;
}

.vd-content-block p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
}

.vd-divider {
    border-color: var(--line);
    opacity: 1;
    margin: 40px 0;
}

.vd-custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vd-custom-list li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 16px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
}

.vd-custom-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background: rgba(253, 223, 0, 0.2);
    color: #8a7800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.vd-perk-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 16px;
    height: 100%;
    border: 1px solid transparent;
    transition: var(--transition);
}

.vd-perk-item:hover {
    background: var(--white);
    border-color: rgba(253, 223, 0, 0.4);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.vd-perk-item .perk-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--white);
    color: var(--brand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.vd-perk-item:hover .perk-icon {
    background: var(--brand);
    color: var(--ink);
    transform: scale(1.1) rotate(5deg);
}

.vd-perk-item strong {
    display: block;
    font-size: 16px;
    color: var(--ink);
    margin-bottom: 4px;
}

.vd-perk-item span {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
    display: block;
}

.vd-sticky-sidebar {
    position: sticky;
    top: 135px;
}

.vd-summary-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.vd-summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--brand);
}

.vd-summary-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 24px;
}

.vd-summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vd-summary-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.vd-summary-list li:last-child {
    margin-bottom: 0;
}

.vd-summary-list .icon {
    width: 44px;
    height: 44px;
    background: rgba(253, 223, 0, 0.15);
    color: #8a7800;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.vd-summary-list .text span {
    display: block;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 2px;
}

.vd-summary-list .text strong {
    display: block;
    font-size: 15px;
    color: var(--ink);
}

.vd-apply-btn {
    height: 56px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vd-share-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px 24px;
}

.vd-share-card span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.vd-social-links {
    display: flex;
    gap: 8px;
}

.vd-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.vd-social-btn:hover {
    background: var(--brand);
    color: var(--ink);
    transform: translateY(-2px);
}

.premium-modal .modal-content {
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--line);
}

.premium-modal .modal-header h4 {
    color: var(--ink) !important;
}

.premium-modal .btn-close {
    background-color: #f3f4f6;
    border-radius: 50%;
    padding: 12px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.premium-modal .btn-close:hover {
    opacity: 1;
    background-color: #e5e7eb;
    transform: rotate(90deg);
}

.premium-modal .form-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.premium-input {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 15px;
    color: var(--ink);
    transition: all 0.3s ease;
}

.premium-input::placeholder {
    color: #9ca3af;
}

.premium-input:focus {
    background-color: var(--white);
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(253, 223, 0, 0.15);
}

.premium-input.form-select {
    cursor: pointer;
}

.file-upload-zone {
    border: 2px dashed #d1d5db;
    border-radius: 16px;
    background-color: #f9fafb;
    transition: all 0.3s ease;
}

.file-upload-zone:hover {
    border-color: var(--brand);
    background-color: rgba(253, 223, 0, 0.03);
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    cursor: pointer;
    width: 100%;
    margin: 0;
}

.upload-icon {
    width: 56px;
    height: 56px;
    background: rgba(253, 223, 0, 0.15);
    color: #8a7800;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s;
}

.file-upload-zone:hover .upload-icon {
    transform: translateY(-6px);
    background: var(--brand);
    color: var(--ink);
}

.upload-text {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 6px;
    text-align: center;
}

.upload-text strong {
    color: var(--ink);
    text-decoration: underline;
    text-decoration-color: var(--brand);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.upload-hint {
    font-size: 13px;
    color: var(--muted);
}

/* FAQ */
.custom-accordion .accordion-item {
    background-color: var(--card);
    border: 1px solid transparent;
    border-radius: var(--radius-lg) !important;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.custom-accordion .accordion-item:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
    border-color: rgba(253, 223, 0, 0.2);
}

.custom-accordion .accordion-button {
    background-color: transparent;
    color: var(--text);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 22px 24px;
    box-shadow: none !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--ink);
    background-color: transparent;
    padding-bottom: 8px;
}

.custom-accordion .accordion-button::after {
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    filter: none;
}

.custom-accordion .accordion-body {
    padding: 0 24px 24px 24px;
    color: var(--muted);
    font-size: 1rem;
    background-color: transparent;
    line-height: 1.7;
}

.faq-hero {
    position: relative;
    background: linear-gradient(135deg, var(--ink) 0%, #060a0c 100%);
    padding: 80px 0 120px;
    border-bottom: 4px solid var(--brand);
    overflow: hidden;
}

.f-hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.f-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(253, 223, 0, 0.15) 0%, transparent 60%);
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(40px);
}

.faq-hero .hero-label .line {
    width: 30px;
    height: 2px;
    background: var(--brand);
    display: inline-block;
    margin-right: 10px;
}

.faq-search-wrapper {
    max-width: 650px;
    position: relative;
}

.faq-search-box {
    display: flex;
    align-items: center;
    background: var(--card);
    padding: 8px;
    border-radius: 100px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-search-box .search-icon {
    font-size: 20px;
    color: var(--muted);
    margin-left: 16px;
    margin-right: 12px;
}

.faq-search-box .form-control {
    border: none;
    background: transparent;
    box-shadow: none !important;
    padding: 12px 0;
    font-size: 16px;
    color: var(--ink);
}

.faq-search-box .form-control::placeholder {
    color: #aab5bc;
}

.faq-search-box .btn {
    border-radius: 100px;
    height: 40px;
    width: 40px;
    font-size: 16px;
}

.premium-accordion .accordion-item {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px !important;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.premium-accordion .accordion-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(253, 223, 0, 0.4);
}

.premium-accordion .accordion-button {
    background: transparent;
    color: var(--ink);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    padding: 24px 32px;
    box-shadow: none !important;
    border: none;
    position: relative;
}

.premium-accordion .accordion-button:not(.collapsed) {
    color: var(--ink);
    background: transparent;
    padding-bottom: 12px;
}

.premium-accordion .accordion-button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--brand);
    border-radius: 0 4px 4px 0;
    transition: height 0.3s ease;
}

.premium-accordion .accordion-button:not(.collapsed)::before {
    height: 60%;
}

.premium-accordion .accordion-button::after {
    background-image: none;
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 16px;
    color: var(--brand);
    transform: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(253, 223, 0, 0.15);
}

.premium-accordion .accordion-button:not(.collapsed)::after {
    content: '\f068';
    background: var(--brand);
    color: var(--ink);
    transform: rotate(180deg);
}

.premium-accordion .accordion-body {
    padding: 0 32px 32px 32px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.faq-cta-card {
    background: linear-gradient(135deg, rgba(253, 223, 0, 0.1) 0%, rgba(253, 223, 0, 0.02) 100%);
    border: 1px solid rgba(253, 223, 0, 0.3);
    border-radius: 24px;
    padding: 32px 40px;
}

.faq-cta-icon {
    width: 64px;
    height: 64px;
    background: var(--white);
    color: var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* ABOUT */
.about-section {
    background: var(--bg);
    padding: var(--section-padding) 0;
}

.about-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image {
    max-width: 100%;
    max-height: 480px;
    border-radius: var(--radius-xl);
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.about-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--brand), var(--brand-secondary));
    color: var(--ink);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 8px 24px rgba(253, 223, 0, 0.4);
}

.about-image-badge strong {
    display: block;
    font-size: 32px;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1;
}

.about-image-badge span {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.8;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius-lg);
    background: var(--card);
    border: 1px solid var(--line);
    transition: var(--transition);
}

.about-feature:hover {
    border-color: var(--brand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.about-feature__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: var(--radius-md);
    background: rgba(253, 223, 0, 0.15);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.about-feature strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.about-feature span {
    font-size: 12px;
    color: var(--muted);
}

/* ABOUT US PAGE */
.about-page {
    background: #ffffff;
}

.about-intro {
    background: #ffffff;
    border-top: 1px solid rgba(16, 25, 27, 0.08);
}

.about-intro__content {
    max-width: 650px;
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #7c8790;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-kicker::before {
    content: "";
    width: 40px;
    height: 3px;
    border-radius: 999px;
    background: var(--brand);
}

.about-kicker--center {
    justify-content: center;
}

.about-title {
    margin-bottom: 20px;
    color: var(--ink);
    font-size: clamp(34px, 2.5vw, 56px);
    font-weight: 800;
}

.about-text {
    margin-bottom: 15px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.85;
}

.about-feature-list {
    margin-top: 34px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid rgba(16, 25, 27, 0.08);
}

.about-feature:first-child {
    padding-top: 0;
    border-top: 0;
}

.about-feature__icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff3b5;
    color: var(--ink);
    font-size: 22px;
}

.about-feature__body h3 {
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 20px;
    font-weight: 800;
}

.about-feature__body p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.about-intro__image {
    position: relative;
    min-height: 500px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--ink);
    box-shadow: 0 30px 80px rgba(16, 25, 27, 0.16);
}

.about-intro__image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
}

.about-intro__image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(16, 25, 27, 0.12) 0%, rgba(16, 25, 27, 0.72) 100%),
        linear-gradient(90deg, rgba(16, 25, 27, 0.42) 0%, rgba(16, 25, 27, 0.04) 62%);
}

.about-intro__image-card {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    padding: 28px;
    border-radius: 24px;
    background: rgba(12, 20, 24, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(14px);
}

.about-intro__image-card span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-intro__image-card span::before {
    content: "";
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: var(--brand);
}

.about-intro__image-card h3 {
    margin-bottom: 10px;
    color: var(--white);
    font-size: 28px;
    font-weight: 800;
}

.about-intro__image-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.7;
}

.about-principles {
    background: #f8f9f9;
    border-top: 1px solid rgba(16, 25, 27, 0.08);
}

.about-heading h2 {
    color: var(--ink);
    font-size: clamp(30px, 3.2vw, 40px);
    font-weight: 800;
    margin-bottom: 14px;
}

.about-heading p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
}

.about-principle-card {
    height: 100%;
    padding: 30px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(16, 25, 27, 0.08);
    box-shadow: 0 12px 34px rgba(16, 25, 27, 0.045);
    transition: var(--transition);
}

.about-principle-card:hover {
    transform: translateY(-6px);
    border-color: rgba(253, 223, 0, 0.65);
    box-shadow: 0 22px 54px rgba(16, 25, 27, 0.09);
}

.about-principle-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 22px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff3b5;
    color: var(--ink);
    font-size: 22px;
}

.about-principle-card h3 {
    color: var(--ink);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.about-principle-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.about-process {
    background: #ffffff;
    border-top: 1px solid rgba(16, 25, 27, 0.08);
}

.about-process__image {
    position: relative;
    min-height: 500px;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: var(--ink);
    box-shadow: 0 28px 70px rgba(16, 25, 27, 0.12);
}

.about-process__image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
}

.about-process__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 25, 27, 0.008), rgba(16, 25, 27, 0.4));
}

.about-process__badge {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.42);
}

.about-process__badge h3 {
    color: var(--ink);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.about-process__badge p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.about-process__content {
    height: 100%;
    padding: 20px;
    border-radius: 16px;
    background: #f8f9f9;
    border: 1px solid rgba(16, 25, 27, 0.08);
}

.about-process-list {
    margin-top: 34px;
}

.about-process-step {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(16, 25, 27, 0.08);
}

.about-process-step:first-child {
    padding-top: 0;
}

.about-process-step:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.about-process-step__number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand);
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
}

.about-process-step h3 {
    color: var(--ink);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.about-process-step p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.about-links {
    background: #f8f9f9;
    border-top: 1px solid rgba(16, 25, 27, 0.08);
}

.about-link-card {
    position: relative;
    display: block;
    min-height: 340px;
    border-radius: 28px;
    overflow: hidden;
    background: var(--ink);
    box-shadow: 0 22px 56px rgba(16, 25, 27, 0.1);
    transition: var(--transition);
}

.about-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 72px rgba(16, 25, 27, 0.16);
}

.about-link-card img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-link-card:hover img {
    transform: scale(1.06);
}

.about-link-card__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(16, 25, 27, 0.008) 0%, rgba(16, 25, 27, 0.86) 100%),
        linear-gradient(90deg, rgba(16, 25, 27, 0.4), transparent);
}

.about-link-card__content {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    z-index: 2;
}

.about-link-card__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand);
    color: var(--ink);
    font-size: 20px;
}

.about-link-card__content h3 {
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
}

.about-link-card__content p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.about-link-card__content span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--brand);
    font-size: 14px;
    font-weight: 800;
}

/* CONTACT */
.contact-info-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 48px;
    height: 100%;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(253, 223, 0, 0.15);
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 16px;
}

.contact-hero {
    position: relative;
    background: linear-gradient(135deg, var(--ink) 0%, #060a0c 100%);
    padding: 70px 0 90px;
    border-bottom: 4px solid var(--brand);
    overflow: hidden;
}

.c-hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.c-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(253, 223, 0, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
}

.contact-hero .hero-label .line {
    width: 30px;
    height: 2px;
    background: var(--brand);
    display: inline-block;
    margin-right: 10px;
}

.premium-info-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    transition: all 0.4s ease;
    cursor: default;
}

a.premium-info-card {
    cursor: pointer;
}

.premium-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(253, 223, 0, 0.4);
}

.pi-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: rgba(253, 223, 0, 0.15);
    color: #8a7800;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: transform 0.3s ease, background 0.3s;
}

.premium-info-card:hover .pi-icon {
    background: var(--brand);
    color: var(--ink);
    transform: scale(1.1) rotate(-5deg);
}

.pi-text span {
    display: block;
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.pi-text strong {
    display: block;
    font-size: 16px;
    color: var(--ink);
}

a.premium-info-card:hover .pi-text strong {
    color: var(--brand);
}

.c-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--line);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.c-social-btn:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--ink);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(253, 223, 0, 0.2);
}

.premium-contact-form {
    background: var(--card);
    border-radius: 28px;
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.premium-contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--brand), var(--brand-secondary));
}

.premium-map-wrapper {
    height: 450px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.premium-map-wrapper iframe {
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.5s ease;
}

.premium-map-wrapper:hover iframe {
    filter: grayscale(0%) contrast(1);
}

/* REPORTS & BONDS PAGE */
.reports-hero {
    position: relative;
    background: linear-gradient(135deg, var(--ink) 0%, #060a0c 100%);
    padding: 80px 0 140px;
    border-bottom: 4px solid var(--brand);
    overflow: hidden;
}

.r-hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.r-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(253, 223, 0, 0.12) 0%, transparent 60%);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(40px);
}

.premium-tabs {
    background: #ffffff;
    display: inline-flex;
    gap: 10px;
}

.premium-tabs .nav-item {
    margin: 0;
}

.premium-tabs .nav-link {
    font-family: var(--font-heading);
    color: var(--muted);
    font-weight: 700;
    font-size: 16px;
    padding: 12px 32px;
    border-radius: 14px;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    border: 1px solid var(--line);
}

.premium-tabs .nav-link:hover {
    color: var(--ink);
}

.premium-tabs .nav-link.active {
    background: var(--brand);
    color: var(--ink);
    box-shadow: 0 4px 15px rgba(253, 223, 0, 0.3);
}

.premium-report-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.premium-report-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(253, 223, 0, 0.5);
}

.premium-report-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-report-card:hover::before {
    opacity: 1;
}

.r-card-watermark {
    position: absolute;
    right: -20px;
    top: -20px;
    font-size: 140px;
    color: var(--ink);
    opacity: 0.02;
    z-index: -1;
    transform: rotate(15deg);
    transition: all 0.5s ease;
}

.premium-report-card:hover .r-card-watermark {
    transform: rotate(0deg) scale(1.1);
    opacity: 0.04;
    color: var(--brand);
}

.r-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.file-format-icon {
    background: #ff4757;
    color: white;
    font-weight: 800;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 8px;
    letter-spacing: 1px;
}

.file-size {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
}

.report-year {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(253, 223, 0, 0.15);
    color: #8a7800;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 16px;
}

.report-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.3;
}

.report-desc {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.r-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--line);
    padding-top: 20px;
    margin-top: auto;
}

.report-date {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 6px;
}

.report-date i {
    color: var(--muted);
}

.btn-download {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f3f4f6;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.premium-report-card:hover .btn-download {
    background: var(--brand);
    color: var(--ink);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(253, 223, 0, 0.2);
}

/* CTA */
.cta-banner {
    background: linear-gradient(135deg, #fdd85c 0%, var(--brand) 100%);
    padding: var(--section-padding-lg) 0;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 60%);
    pointer-events: none;
    border-radius: 50%;
}

.cta-banner__title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-banner__text {
    color: rgba(16, 25, 27, 0.7);
    font-size: 18px;
    margin: 0;
    max-width: 600px;
}

/* FOOTER */
.site-footer {
    background:
        linear-gradient(180deg, var(--footer-2) 0%, var(--footer) 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 70px 0 24px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    margin-bottom: 34px;
}

.footer-brand__logo {
    height: 50px;
    margin-bottom: 18px;
}

.footer-social__link {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

.footer-text {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
    max-width: 320px;
    margin-bottom: 18px;
}

.footer-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 18px;
}

.footer-links,
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    color: rgba(255, 255, 255, 0.68);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--brand);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--brand);
    width: 18px;
    margin-top: 3px;
}

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-bottom p,
.footer-bottom__links a {
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
}

.footer-bottom__links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-bottom__links a:hover {
    color: var(--brand);
}

/* FLOATING ACTIONS */
.floating-widgets {
    position: fixed;
    bottom: 30px;
    z-index: 1040;
}

.floating-widgets.left {
    left: 30px;
}

.floating-widgets.right {
    right: 30px;
}

.widget-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.widget-btn:hover {
    transform: scale(1.1);
    color: var(--white);
}

.widget-whatsapp {
    background: #25D366;
}

.widget-whatsapp:hover {
    background: #1EBE5D;
}

.widget-accessibility {
    background: #0056b3;
    font-size: 24px;
}

.widget-accessibility:hover {
    background: #004494;
}

.widget-close-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ff4757;
    color: var(--white);
    border: none;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.widget-whatsapp:hover .widget-close-btn,
.widget-accessibility:hover .widget-close-btn {
    opacity: 1;
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--brand);
    color: var(--ink);
    border: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1039;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 1199.98px) {

    /* Calculator */
    .calc-results {
        border-left: none;
        border-top: 1px solid var(--line);
    }

    .about-intro__image,
    .about-intro__image img {
        min-height: 580px;
    }

    .about-process__image,
    .about-process__image img {
        min-height: 580px;
    }
}

@media (max-width: 991.98px) {

    /* Header */
    .header-main {
        padding-top: 12px;
    }

    .header-shell {
        min-height: 76px;
        border-radius: 22px;
    }

    .site-logo img {
        height: 42px;
    }

    /* Hero */
    .hero-slider .carousel-item {
        height: 650px;
        padding: 60px 0 80px;
    }

    .carousel-overlay {
        background: linear-gradient(180deg, rgba(7, 16, 18, 0.95) 0%, rgba(7, 16, 18, 0.8) 50%, rgba(7, 16, 18, 0.4) 100%);
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .hero-label {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-title {
        font-size: clamp(34px, 8vw, 48px);
    }

    /* Careers */
    .careers-section {
        padding: 40px 0;
    }

    .careers-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "intro"
            "media"
            "body";
    }

    .careers-intro {
        padding: 40px 32px 0 32px;
    }

    .careers-media {
        min-height: unset;
        height: auto;
        aspect-ratio: 16 / 10;
        margin: 28px 32px 0 32px;
        border-radius: 22px;
    }

    .careers-image {
        width: 100%;
        height: 100%;
        min-height: unset;
        object-fit: cover;
        object-position: var(--career-position-mobile, center);
        border-radius: 22px;
    }

    .careers-body {
        padding: 28px 32px 40px 32px;
    }

    .careers-body .btn-header {
        width: 100%;
    }

    /* Products page */
    .products-list-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .products-list-title {
        font-size: 30px;
    }

    /* PRODUCT DETAIL PAGE */
    .pd-visual {
        margin-top: 40px;
    }

    .pd-visual__card {
        transform: rotateY(0deg) rotateX(0deg);
        max-width: 100%;
    }

    .pd-process img {
        margin-bottom: 32px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .g-item-1,
    .g-item-2,
    .g-item-3 {
        grid-column: span 1;
        height: 250px;
    }

    .recruitment-timeline {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .recruitment-timeline::before {
        left: 32px;
        top: 0;
        bottom: 0;
        right: auto;
        width: 2px;
        height: 100%;
    }

    .r-step {
        display: flex;
        align-items: flex-start;
        gap: 24px;
    }

    .r-step-marker {
        min-width: 64px;
        margin-bottom: 0;
    }

    .vd-content-card {
        padding: 32px 24px;
    }

    .vd-sticky-sidebar {
        position: static;
        margin-top: 24px;
    }

    .premium-contact-form {
        padding: 32px 24px;
    }

    .about-intro__content {
        max-width: 100%;
    }

    .about-intro__image,
    .about-intro__image img,
    .about-process__image,
    .about-process__image img {
        min-height: 500px;
    }

    .about-process__content {
        padding: 32px;
    }
}

@media (max-width: 767.98px) {

    /* Hero */
    .carousel-indicators {
        top: auto;
        bottom: 40px;
        right: 0;
        left: 0;
        flex-direction: row;
    }

    .carousel-indicators button {
        height: 4px !important;
        width: 30px !important;
    }

    .carousel-indicators button.active {
        height: 4px !important;
        width: 50px !important;
    }

    /* Page header */
    .page-header {
        padding: 50px 0 60px;
        text-align: center;
    }

    .page-desc {
        font-size: 16px;
    }

    .page-header__shapes .bg-icon {
        font-size: 140px;
    }

    /* PRODUCT DETAIL PAGE */
    .pd-hero {
        padding: 40px 0 60px;
    }

    .pd-hero__title {
        font-size: clamp(28px, 8vw, 36px);
    }

    .pd-hero__desc {
        max-width: 100%;
        font-size: 16px;
    }

    .pd-hero .d-flex.gap-3 {
        flex-direction: column;
        width: 100%;
    }

    .pd-hero .btn {
        width: 100%;
        justify-content: center;
    }

    .pd-hero__stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 24px;
        width: 100%;
    }

    .pd-hero__stats .stat-item:last-child {
        grid-column: span 2;
        text-align: center;
    }

    .pd-hero__stats .stat-item {
        text-align: center;
    }

    .stat-divider {
        display: none;
    }

    .support-split-card {
        padding: 32px;
    }

    .support-split-card p {
        max-width: 100%;
    }

    .support-split-card .btn {
        width: 100%;
        justify-content: center;
    }

    .corporate-marquee {
        padding: 18px 0;
    }

    .marquee-item {
        font-size: 18px;
    }

    .marquee-dot {
        margin: 0 24px;
    }

    .manifesto-subtext {
        font-size: 17px;
    }

    .vacancy-card,
    .hr-value-card {
        padding: 28px 24px;
    }

    .vacancy-card__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .vacancy-detail-hero {
        padding: 40px 0 60px;
    }

    .vd-page-title {
        font-size: 28px;
    }

    .premium-accordion .accordion-button {
        padding: 20px;
        font-size: 15px;
    }

    .premium-accordion .accordion-body {
        padding: 0 20px 20px 20px;
    }

    .faq-cta-card {
        padding: 32px 24px;
    }

    .faq-search-box {
        flex-direction: column;
        padding: 12px;
        border-radius: 24px;
    }

    .faq-search-box .search-icon {
        display: none;
    }

    .faq-search-box .form-control {
        text-align: center;
        margin-bottom: 12px;
    }

    .faq-search-box .btn {
        width: 100%;
    }

    .premium-tabs {
        flex-direction: column;
        width: 100%;
        border-radius: 20px;
    }

    .premium-tabs .nav-link {
        text-align: center;
        border-radius: 14px;
        width: 100%;
    }

    .about-title {
        font-size: 38px;
    }

    .about-feature {
        gap: 14px;
    }

    .about-feature__icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 14px;
        font-size: 18px;
    }

    .about-intro__image,
    .about-intro__image img,
    .about-process__image,
    .about-process__image img {
        min-height: 420px;
        border-radius: 24px;
    }

    .about-intro__image-card,
    .about-process__badge {
        left: 18px;
        right: 18px;
        bottom: 18px;
        padding: 20px;
        border-radius: 18px;
    }

    .about-intro__image-card h3,
    .about-process__badge h3 {
        font-size: 22px;
    }

    .about-process__content {
        padding: 26px;
        border-radius: 24px;
    }

    .about-process-step {
        gap: 14px;
    }

    .about-process-step__number {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }
}

@media (max-width: 575.98px) {

    /* Header */
    .header-shell {
        min-height: 70px;
    }

    .site-logo img {
        height: 38px;
    }

    /* Hero */
    .hero-slider .carousel-item {
        height: 650px;
        padding: 40px 0 60px;
    }

    .hero-label {
        font-size: 11px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-actions .btn-header {
        width: 100%;
    }

    /* Careers */
    .careers-premium-card {
        border-radius: 22px;
    }

    .careers-intro {
        padding: 32px 22px 0 22px;
    }

    .careers-media {
        aspect-ratio: 4 / 3;
        margin: 22px 22px 0 22px;
        border-radius: var(--radius-md);
    }

    .careers-image {
        border-radius: var(--radius-md);
    }

    .careers-body {
        padding: 24px 22px 32px 22px;
    }

    .careers-premium-card h2.fs-1 {
        font-size: 28px !important;
    }

    .careers-body ul {
        margin-bottom: 32px !important;
    }

    /* Products page */
    .products-pagination .page-link {
        width: 40px;
        height: 40px;
    }

    /* Floating actions */
    .floating-widgets.left,
    .floating-widgets.right {
        bottom: 20px;
    }

    .floating-widgets.left {
        left: 20px;
    }

    .floating-widgets.right {
        right: 20px;
    }

    .widget-btn {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .back-to-top {
        bottom: 80px;
        right: 20px;
        width: 42px;
        height: 42px;
        border-radius: var(--radius-md);
    }
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* ==========================================================================
   MOBILE MENU - OFFCANVAS STYLE
   Breakpoint: below 992px
   ========================================================================== */

.site-toggler {
    position: relative;
    z-index: 1080;
    overflow: hidden;
}

.site-toggler__icon {
    width:40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease, opacity 0.25s ease;
}

.site-toggler i {
    line-height: 1;
    transition: transform 0.35s ease, opacity 0.25s ease;
}

.site-toggler.is-active .site-toggler__icon {
    transform: rotate(180deg);
}

@media (max-width: 991.98px) {
    body.mobile-menu-open {
        overflow: hidden;
    }

    .header-main {
        padding-top: 12px;
    }

    .header-shell {
        min-height: 76px;
    }

    .site-logo {
        position: relative;
        z-index: 1080;
    }

    .site-logo img {
        height: 42px;
    }

    .navbar-collapse {
        position: fixed;
        top: 90px;
        right: 0;
        bottom: 0;
        left: auto;
        z-index: 1060;
        width: 100%;
        height: calc(100dvh - 90px);
        min-height: 0;
        padding: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        margin: 0;
        background:
            radial-gradient(circle at 85% 12%, rgba(253, 223, 0, 0.12), transparent 30%),
            linear-gradient(180deg, var(--card) 0%, #ffffff 100%);
        border: 0;
        border-radius: 0;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition:
            transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.28s ease,
            visibility 0.28s ease;
    }

    .navbar-collapse.collapse {
        display: block !important;
    }

    .navbar-collapse.collapse.show {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .navbar-collapse.collapsing {
        display: block !important;
        height: 100dvh !important;
        overflow-y: auto;
        transition:
            transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.28s ease,
            visibility 0.28s ease;
    }

    .navbar-collapse.collapsing.is-opening {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .navbar-collapse.collapsing.is-closing {
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .site-nav {
        gap: 8px;
        margin: 0 !important;
    }

    .site-nav .nav-item {
        width: 100%;
    }

    .site-nav .nav-link {
        width: 100%;
        min-height: 54px;
        padding: 16px 18px !important;

        display: flex;
        align-items: center;
        justify-content: space-between;

        border-radius: var(--radius-lg);
        background: rgba(16, 25, 27, 0.035) !important;
        color: var(--ink);
        font-size: 17px;
        font-weight: 800;
        letter-spacing: -0.02em;
    }

    .site-nav .nav-link::after {
        display: none;
    }

    .site-nav .nav-link::before {
        content: "\f061";
        order: 2;
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: var(--brand);
        font-size: 13px;
        opacity: 0;
        transform: translateX(-6px);
        transition: var(--transition);
    }

    .site-nav .nav-link:hover,
    .site-nav .nav-link.active,
    .site-nav .nav-link.is-active {
        background: var(--ink) !important;
        color: var(--white);
    }

    .site-nav .nav-link:hover::before,
    .site-nav .nav-link.active::before,
    .site-nav .nav-link.is-active::before {
        opacity: 1;
        transform: translateX(0);
    }

    .header-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 22px;
    }

    .header-actions .btn-header {
        width: 100%;
        min-height: 54px;
        border-radius: var(--radius-lg);
        font-size: 15px;
    }

    .mobile-panel {
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid rgba(16, 25, 27, 0.1);
    }

    .mobile-panel__row {
        padding: 14px;
        border-radius: var(--radius-lg);
        background: rgba(16, 25, 27, 0.035);
    }

    .mobile-panel__social .header-social__link {
        width: 44px;
        height: 44px;
        background: var(--ink);
        color: var(--white);
    }

    .mobile-panel__meta {
        margin-top: 18px;
        gap: 10px;
    }

    .mobile-panel__meta .header-meta__item {
        padding: 14px 16px;
        border-radius: var(--radius-lg);
        background: rgba(16, 25, 27, 0.035);
        color: var(--text);
        font-size: 14px;
        line-height: 1.45;
    }

    .mobile-panel__meta .header-meta__item i {
        color: var(--brand);
    }
}

@media (min-width: 992px) {
    body.mobile-menu-open {
        overflow: auto;
    }

    .navbar-collapse {
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
}


@media (max-width: 991.98px) {
    .header-main {
        position: relative;
        z-index: 1070;
        background: var(--card);
    }

    body.mobile-menu-open .header-main::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 88px;
        z-index: 1070;
        background: #ffffff;
        pointer-events: none;
    }

    body.mobile-menu-open .site-logo,
    body.mobile-menu-open .site-toggler {
        position: relative;
        z-index: 1085;
    }
}

.site-toggler{
    border: none;
    padding: 0;
}

.site-toggler i{
    font-size: 30px;
}


/* ==========================================================================
   MOBILE MENU FINAL FIXES
   ========================================================================== */

@media (max-width: 991.98px) {
    .navbar-collapse.collapse.show,
    .navbar-collapse.collapsing {
        height: calc(100dvh - 90px) !important;
        min-height: 0 !important;
        overflow-y: auto;
    }

    .mobile-panel__row {
        background: rgba(16, 25, 27, 0.035);
        border: 1px solid rgba(16, 25, 27, 0.06);
    }

    .mobile-panel .lang-switch {
        gap: 8px;
    }

    .mobile-panel .lang-switch__item {
        min-width: 38px;
        height: 34px;
        color: var(--muted);
        background: transparent;
        opacity: 1;
    }

    .mobile-panel .lang-switch__item:hover,
    .mobile-panel .lang-switch__item.is-active {
        background: var(--brand);
        color: var(--ink);
    }

    .mobile-panel .theme-toggle {
        width: 38px;
        height: 38px;
        background: #ffffff;
        border: 1px solid rgba(16, 25, 27, 0.12);
        color: var(--ink);
    }

    .mobile-panel .theme-toggle i {
        color: inherit;
        font-size: 16px;
    }

    .mobile-panel .theme-toggle:hover {
        background: var(--brand);
        color: var(--ink);
        border-color: var(--brand);
    }

    .mobile-panel__social {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        margin-top: 22px;
    }

    .mobile-panel__social .header-social__link {
        width: 46px;
        height: 46px;
        background: var(--ink);
        color: var(--white);
        opacity: 1;
    }

    .mobile-panel__social .header-social__link:hover {
        background: var(--brand);
        color: var(--ink);
    }

    .mobile-panel__social .header-social__link i{
        font-size: 23px;
    }
}

@media (max-width: 991.98px) {
    .mobile-menu-container {
        padding-top: 30px;
        padding-bottom: max(42px, env(safe-area-inset-bottom));
    }
}

@media (min-width: 992px) {
    .mobile-menu-container.container {
        max-width: none;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        display: flex;
        align-items: center;
    }
}