/* =========================================================
   FILE: assets/css/style.css
   PURPOSE: Main stylesheet — Aurex Bank luxury fintech design
   ========================================================= */

/* ===== GOOGLE FONTS IMPORT ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Colors — Blue & White Theme */
    --color-bg-primary: #FFFFFF;
    --color-bg-secondary: #EFF6FF;
    --color-bg-card: #FFFFFF;
    --color-bg-card-hover: #EFF6FF;
    --color-charcoal: #F0F6FF;
    --color-gold: #2563EB;
    --color-gold-light: #3B82F6;
    --color-gold-dark: #1D4ED8;
    --color-white: #FFFFFF;
    --color-muted-white: #1E293B;
    --color-silver: #64748B;
    --color-silver-dark: #94A3B8;
    --color-border: rgba(37, 99, 235, 0.12);
    --color-border-gold: rgba(37, 99, 235, 0.22);
    --color-border-gold-bright: rgba(37, 99, 235, 0.48);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    --gradient-gold: linear-gradient(135deg, #2563EB, #3B82F6);
    --gradient-gold-reverse: linear-gradient(135deg, #3B82F6, #2563EB);
    --gradient-dark: linear-gradient(135deg, #1E3A8A, #1D4ED8);
    --gradient-hero: linear-gradient(135deg, #1E3A8A 0%, #1D4ED8 50%, #2563EB 100%);

    /* Shadows */
    --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.18);
    --shadow-glow-strong: 0 0 60px rgba(37, 99, 235, 0.32);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.07);
    --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.13);
    --shadow-navbar: 0 4px 16px rgba(0, 0, 0, 0.08);

    /* Typography */
    --font-primary: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Font Sizes */
    --fs-xs: 0.75rem;    /* 12px */
    --fs-sm: 0.875rem;   /* 14px */
    --fs-base: 1rem;     /* 16px */
    --fs-md: 1.125rem;   /* 18px */
    --fs-lg: 1.5rem;     /* 24px */
    --fs-xl: 2rem;       /* 32px */
    --fs-2xl: 3rem;      /* 48px */
    --fs-3xl: 4rem;      /* 64px */
    --fs-4xl: 5rem;      /* 80px */

    /* Border Radius */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 5rem;
    --spacing-3xl: 8rem;

    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --transition-fast: all 0.15s ease;

    /* Z-index layers */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-toast: 500;
}

/* ===== SECTION: RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-primary);
    color: var(--color-muted-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== SECTION: CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-light);
}

/* ===== SECTION: TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-muted-white);
}

.display-heading {
    font-family: var(--font-display);
    letter-spacing: -0.03em;
}

p {
    color: var(--color-silver);
    line-height: 1.6;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--color-gold-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Blue gradient text */
.text-gold-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold {
    color: var(--color-gold);
}

.text-silver {
    color: var(--color-silver);
}

.text-white {
    color: var(--color-white) !important;
}

/* ===== SECTION: FOCUS STYLES ===== */
*:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
    border-radius: var(--radius-xs);
}

/* ===== SECTION: TOP ANNOUNCEMENT BAR ===== */
.topbar {
    background: #1E3A8A;
    border-bottom: 1px solid rgba(37, 99, 235, 0.3);
    height: 42px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: calc(var(--z-sticky) + 1);
    overflow: hidden;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 2rem;
}

.topbar__marquee-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    overflow: hidden;
    flex: 1;
    max-width: 60%;
}

.topbar__dot {
    width: 8px;
    height: 8px;
    background: var(--gradient-gold);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    animation: pulse-dot 2s ease-in-out infinite;
}

.topbar__marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 30s linear infinite;
    font-size: var(--fs-xs);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.topbar__marquee span {
    padding: 0 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.topbar__marquee span::before {
    content: '◆';
    color: rgba(255, 255, 255, 0.6);
    font-size: 8px;
    margin-right: 1rem;
    vertical-align: middle;
}

.topbar__right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.topbar__contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topbar__contact-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    transition: var(--transition-base);
}

.topbar__contact-item:hover {
    color: #FFFFFF;
}

.topbar__contact-item i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
}

.topbar__social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 1rem;
}

.topbar__social a {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    border-radius: var(--radius-xs);
    transition: var(--transition-base);
}

.topbar__social a:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.12);
}

/* ===== SECTION: NAVBAR ===== */
.navbar-aurex {
    height: 80px;
    background: transparent;
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    transition: var(--transition-slow);
    padding: 0 2rem;
    display: flex;
    align-items: center;
}

.navbar-aurex.navbar--scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-navbar);
    border-bottom: 1px solid var(--color-border);
    top: 0;
}

.navbar-aurex.navbar--top-hidden {
    top: 0;
}

.navbar-aurex.navbar--solid {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-navbar);
    border-bottom: 1px solid var(--color-border);
}

.navbar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.navbar__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar__logo-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.navbar__brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.navbar__brand-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.02em;
    line-height: 1;
    transition: color 0.3s ease;
}

.navbar__brand-suffix {
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--color-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1.4;
}

/* Nav Links */
.navbar__nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.navbar__nav-item {
    position: relative;
}

.navbar__nav-link {
    display: block;
    padding: 0.5rem 0.875rem;
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--color-white);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    position: relative;
    white-space: nowrap;
}

.navbar__nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
}

.navbar__nav-link:hover {
    color: var(--color-gold-light);
}

.navbar__nav-link:hover::after,
.navbar__nav-link.active::after {
    width: 70%;
}

.navbar__nav-link.active {
    color: var(--color-gold-light);
}

/* Scrolled navbar: dark text on white background */
.navbar-aurex.navbar--scrolled .navbar__brand-name {
    color: var(--color-muted-white);
}

.navbar-aurex.navbar--solid .navbar__brand-name {
    color: var(--color-muted-white);
}

.navbar-aurex.navbar--scrolled .navbar__brand-suffix {
    color: var(--color-gold);
}

.navbar-aurex.navbar--solid .navbar__brand-suffix {
    color: var(--color-gold);
}

.navbar-aurex.navbar--scrolled .navbar__nav-link {
    color: var(--color-muted-white);
}

.navbar-aurex.navbar--solid .navbar__nav-link {
    color: var(--color-muted-white);
}

.navbar-aurex.navbar--scrolled .navbar__nav-link:hover,
.navbar-aurex.navbar--scrolled .navbar__nav-link.active {
    color: var(--color-gold);
}

.navbar-aurex.navbar--solid .navbar__nav-link:hover,
.navbar-aurex.navbar--solid .navbar__nav-link.active {
    color: var(--color-gold);
}

.navbar-aurex.navbar--scrolled .navbar__hamburger-line {
    background: var(--color-muted-white);
}

.navbar-aurex.navbar--solid .navbar__hamburger-line {
    background: var(--color-muted-white);
}

/* Nav Actions */
.navbar__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.navbar-aurex:not(.navbar--scrolled):not(.navbar--solid) .navbar__actions .btn--ghost {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.14);
}

.navbar-aurex:not(.navbar--scrolled):not(.navbar--solid) .navbar__actions .btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.16);
    color: var(--color-white);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
}

.navbar-aurex:not(.navbar--scrolled):not(.navbar--solid) .navbar__hamburger {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.14);
}

.navbar-aurex:not(.navbar--scrolled):not(.navbar--solid) .navbar__hamburger-line {
    background: rgba(255, 255, 255, 0.92);
}

/* Hamburger */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 0;
}

.navbar__hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--color-gold);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    transform-origin: center;
}

.navbar__hamburger.is-active .navbar__hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.is-active .navbar__hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar__hamburger.is-active .navbar__hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.navbar__mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: calc(var(--z-overlay));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.navbar__mobile-menu.is-open {
    opacity: 1;
    pointer-events: all;
}

.navbar__mobile-nav {
    list-style: none;
    text-align: center;
    margin-bottom: 2rem;
}

.navbar__mobile-nav-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.navbar__mobile-menu.is-open .navbar__mobile-nav-item {
    opacity: 1;
    transform: translateY(0);
}

.navbar__mobile-menu.is-open .navbar__mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
.navbar__mobile-menu.is-open .navbar__mobile-nav-item:nth-child(2) { transition-delay: 0.15s; }
.navbar__mobile-menu.is-open .navbar__mobile-nav-item:nth-child(3) { transition-delay: 0.2s; }
.navbar__mobile-menu.is-open .navbar__mobile-nav-item:nth-child(4) { transition-delay: 0.25s; }
.navbar__mobile-menu.is-open .navbar__mobile-nav-item:nth-child(5) { transition-delay: 0.3s; }
.navbar__mobile-menu.is-open .navbar__mobile-nav-item:nth-child(6) { transition-delay: 0.35s; }

.navbar__mobile-nav-link {
    display: block;
    padding: 0.875rem 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition-base);
}

.navbar__mobile-nav-link:hover,
.navbar__mobile-nav-link.active {
    color: var(--color-gold);
}

.navbar__mobile-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.navbar__mobile-actions {
    display: flex;
    gap: 1rem;
}

.navbar__mobile-social {
    display: flex;
    gap: 1rem;
}

.navbar__mobile-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-silver);
    font-size: 14px;
    transition: var(--transition-base);
}

.navbar__mobile-social a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.navbar__mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-silver);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition-base);
}

.navbar__mobile-close:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* ===== SECTION: BUTTONS ===== */
.btn--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gradient-gold);
    color: #FFFFFF;
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    font-weight: 700;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-base);
    letter-spacing: 0.01em;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn--primary:hover::before {
    left: 100%;
}

.btn--primary:hover {
    box-shadow: var(--shadow-glow-strong);
    transform: translateY(-2px);
    color: #FFFFFF;
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--color-gold);
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--color-gold);
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn--ghost:hover {
    border-color: var(--color-gold-dark);
    color: var(--color-white);
    background: var(--color-gold);
    box-shadow: var(--shadow-glow);
}

.btn--ghost-white {
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--color-white);
}

.btn--ghost-white:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    box-shadow: none;
}

.hero__ctas .btn--ghost {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.52);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.hero__ctas .btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.18);
    color: var(--color-white);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.22);
}

.btn--sm {
    padding: 0.625rem 1.25rem;
    font-size: var(--fs-xs);
}

.btn--lg {
    padding: 1rem 2.25rem;
    font-size: var(--fs-base);
}

.btn--full {
    width: 100%;
}

/* ===== SECTION: BADGES & CHIPS ===== */
.badge-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.22);
    color: var(--color-gold);
    font-size: var(--fs-xs);
    font-weight: 600;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-chip--silver {
    background: rgba(100, 116, 139, 0.08);
    border-color: rgba(100, 116, 139, 0.2);
    color: var(--color-silver);
}

/* ===== SECTION: CARDS ===== */
.card--glass {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
}

.card--glass:hover {
    background: var(--color-bg-card-hover);
    border-color: var(--color-border-gold);
    box-shadow: var(--shadow-glow), var(--shadow-card-hover);
    transform: translateY(-4px);
}

/* ===== SECTION: SECTION COMMON ===== */
.section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.section--dark {
    background: var(--color-bg-primary);
}

.section--darker {
    background: #EFF6FF;
}

.section--secondary {
    background: var(--color-bg-secondary);
}

.section--charcoal {
    background: var(--color-charcoal);
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--color-muted-white);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.section__title--display {
    font-family: var(--font-display);
}

.section__subtitle {
    font-size: var(--fs-md);
    color: var(--color-silver);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section--dark .section__title,
.section--charcoal .section__title,
.section--dark .timeline-item__title,
.section--charcoal .timeline-item__title,
.section--dark .faq-question,
.section--charcoal .faq-question {
    color: rgba(255, 255, 255, 0.96);
}

.section--dark .section__subtitle,
.section--charcoal .section__subtitle,
.section--dark .timeline-item__desc,
.section--charcoal .timeline-item__desc,
.section--dark .faq-answer p,
.section--charcoal .faq-answer p,
.section--dark .faq-category-btn,
.section--charcoal .faq-category-btn {
    color: rgba(255, 255, 255, 0.82);
}

.section--dark .badge-chip,
.section--charcoal .badge-chip {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.92);
}

.section--dark .faq-item,
.section--charcoal .faq-item {
    border-color: rgba(255, 255, 255, 0.12);
}

.section--dark .faq-icon,
.section--charcoal .faq-icon {
    border-color: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.74);
}

.section--dark .faq-category-btn,
.section--charcoal .faq-category-btn {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
}

.section--dark .faq-category-btn:hover,
.section--dark .faq-category-btn.active,
.section--charcoal .faq-category-btn:hover,
.section--charcoal .faq-category-btn.active {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.36);
    color: #FFFFFF;
}

.section__divider {
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    margin: 1rem auto 1.5rem;
}

/* ===== SECTION: HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
    padding-top: 122px; /* height of topbar + navbar */
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero__slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__slide {
    position: absolute;
    inset: -3%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1);
    will-change: transform, opacity;
    animation: hero-ken-burns 9s ease-in-out infinite, hero-slide-crossfade 27s linear infinite;
}

.hero__slide.is-active {
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(115deg, rgba(2, 6, 23, 0.78) 0%, rgba(2, 6, 23, 0.58) 42%, rgba(2, 6, 23, 0.72) 100%),
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.16) 0%, transparent 34%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.24) 0%, rgba(2, 6, 23, 0.36) 100%);
}

.hero__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.55;
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 3;
}

.hero__glow--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.10) 0%, transparent 70%);
    top: -100px;
    right: 10%;
    animation: float-slow 8s ease-in-out infinite;
}

.hero__glow--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.6) 0%, transparent 70%);
    bottom: 10%;
    left: 5%;
}

.hero__container {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Hero Left */
.hero__content {
    max-width: 620px;
    position: relative;
    z-index: 4;
}

.hero__badge {
    margin-bottom: 1.5rem;
    animation: slide-up-fade 0.6s ease forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

.hero__badge .badge-chip {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    animation: slide-up-fade 0.6s ease forwards;
    opacity: 0;
    animation-delay: 0.35s;
    text-shadow: 0 16px 48px rgba(15, 23, 42, 0.28);
}

.hero__headline-gold {
    background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 55%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
}

.hero__subheadline {
    font-size: var(--fs-md);
    color: rgba(255, 255, 255, 0.84);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    animation: slide-up-fade 0.6s ease forwards;
    opacity: 0;
    animation-delay: 0.5s;
    text-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
}

.hero__ctas {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: slide-up-fade 0.6s ease forwards;
    opacity: 0;
    animation-delay: 0.65s;
}

.hero__trust-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: slide-up-fade 0.6s ease forwards;
    opacity: 0;
    animation-delay: 0.8s;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--fs-xs);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    text-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
}

.hero__trust-item i {
    color: var(--color-gold);
    font-size: 12px;
}

/* Hero Right */
.hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 520px;
    z-index: 4;
    animation: slide-right-fade 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.4s;
}

@keyframes hero-ken-burns {
    0% {
        transform: scale(1) translate3d(0, 0, 0);
    }
    100% {
        transform: scale(1.15) translate3d(1.5%, -1.5%, 0);
    }
}

@keyframes hero-slide-crossfade {
    0% {
        opacity: 1;
    }
    28% {
        opacity: 1;
    }
    36% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__slide {
        animation: none;
        opacity: 0;
        transform: none;
    }

    .hero__slide:first-child {
        opacity: 1;
    }
}

.hero__card-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 65%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    z-index: 0;
    animation: pulse-glow 4s ease-in-out infinite;
}

/* Credit Card Mockup */
.credit-card {
    width: 340px;
    height: 210px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
    animation: float-card 6s ease-in-out infinite;
}

.credit-card__inner {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, #0F2044 0%, #1D4ED8 50%, #1E3A8A 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(37, 99, 235, 0.2), inset 0 1px 0 rgba(255,255,255,0.15);
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.credit-card__inner::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.credit-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.credit-card__bank-name {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.credit-card__chip {
    width: 32px;
    height: 24px;
    background: linear-gradient(135deg, #93C5FD, #BFDBFE);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.credit-card__chip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0,0,0,0.3);
    transform: translateY(-50%);
}

.credit-card__chip::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(0,0,0,0.3);
    transform: translateX(-50%);
}

.credit-card__contactless {
    color: rgba(255,255,255,0.5);
    font-size: 18px;
}

.credit-card__middle {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.85);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.credit-card__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.credit-card__holder {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.credit-card__name {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.credit-card__expiry-label {
    font-size: 0.55rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
    text-align: right;
    margin-bottom: 2px;
}

.credit-card__expiry {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.1em;
}

.credit-card__network {
    width: 44px;
}

.credit-card__network-circles {
    display: flex;
    align-items: center;
}

.credit-card__network-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
}

.credit-card__network-circle:first-child {
    background: rgba(235, 0, 27, 0.8);
    z-index: 1;
}

.credit-card__network-circle:last-child {
    background: rgba(255, 94, 14, 0.7);
    margin-left: -8px;
}

/* Floating UI chips */
.hero__floating-chip {
    position: absolute;
    z-index: 3;
    animation: float-chip 4s ease-in-out infinite;
}

.hero__floating-chip:nth-child(2) { animation-delay: -1s; }
.hero__floating-chip:nth-child(3) { animation-delay: -2.5s; }

.hero__floating-chip--balance {
    top: 10%;
    right: -60px;
}

.hero__floating-chip--transaction {
    bottom: 20%;
    right: -80px;
}

.hero__floating-chip--security {
    top: 35%;
    left: -100px;
}

.floating-chip {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-sm);
    padding: 0.625rem 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.floating-chip__icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 12px;
    flex-shrink: 0;
}

.floating-chip__label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    line-height: 1.2;
}

.floating-chip__value {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.2;
}

.floating-chip__value--green {
    color: #4ade80;
}

/* ===== SECTION: BANKING SOLUTIONS GRID ===== */
.solutions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.solution-card {
    padding: 2rem;
    border-radius: var(--radius-md);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
    cursor: default;
    position: relative;
    overflow: hidden;
    height: 280px;
    display: flex;
    flex-direction: column;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border-gold);
    box-shadow: var(--shadow-glow), var(--shadow-card-hover);
    background: #EFF6FF;
}

.solution-card__icon {
    width: 58px;
    height: 58px;
    border: 1.5px solid var(--color-border-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
    transition: var(--transition-base);
    background: rgba(37, 99, 235, 0.05);
}

.solution-card:hover .solution-card__icon {
    background: rgba(37, 99, 235, 0.10);
    box-shadow: var(--shadow-glow);
}

.solution-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-muted-white);
    margin-bottom: 0.625rem;
}

.solution-card__desc {
    font-size: var(--fs-sm);
    color: var(--color-silver);
    line-height: 1.6;
    flex: 1;
}

.solution-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-gold);
    text-decoration: none;
    margin-top: 1rem;
    transition: var(--transition-base);
}

.solution-card__link:hover {
    gap: 0.625rem;
    color: var(--color-gold-light);
}

/* ===== SECTION: ABOUT PREVIEW ===== */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-preview__image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 520px;
}

.about-preview__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-border-gold);
    transition: transform 0.6s ease;
}

.about-preview__image-wrap:hover .about-preview__image {
    transform: scale(1.04);
}

.about-preview__badge {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 58, 138, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.25rem;
    text-align: center;
    white-space: nowrap;
}

.about-preview__badge-year {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--color-gold);
    font-weight: 600;
    letter-spacing: 0.1em;
}

.about-preview__content {}

.about-preview__stats {
    display: flex;
    gap: 2.5rem;
    margin: 2rem 0 2.5rem;
}

.about-preview__stat {}

.about-preview__stat-value {
    font-family: var(--font-mono);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.25rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-preview__stat-label {
    font-size: var(--fs-xs);
    color: var(--color-silver);
    font-weight: 500;
}

/* ===== SECTION: CARD SHOWCASE ===== */
.card-showcase {
    background: var(--color-bg-secondary);
}

.cards-display {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.card-tier {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
}

.bank-card {
    width: 100%;
    max-width: 340px;
    height: 200px;
    border-radius: 18px;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                box-shadow 0.4s ease;
    transform-style: preserve-3d;
    position: relative;
}

.bank-card:hover {
    transform: translateY(-20px) rotateX(8deg) rotateY(10deg);
}

.bank-card--classic {
    background: linear-gradient(135deg, #334155, #1E293B);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.bank-card--classic:hover {
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 30px rgba(100, 116, 139, 0.2);
}

.bank-card--gold {
    background: linear-gradient(135deg, #1E3A8A, #1D4ED8);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.bank-card--gold:hover {
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), var(--shadow-glow-strong);
}

.bank-card--platinum {
    background: linear-gradient(135deg, #0F2044, #1E3A8A, #1D4ED8);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.bank-card--platinum:hover {
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 40px rgba(37, 99, 235, 0.25);
}

.bank-card__body {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    padding: 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.bank-card--classic .bank-card__body {
    border-color: rgba(255, 255, 255, 0.12);
}

.bank-card--gold .bank-card__body {
    border-color: rgba(255, 255, 255, 0.18);
}

.bank-card--platinum .bank-card__body {
    border-color: rgba(147, 197, 253, 0.25);
}

.bank-card__shine {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    pointer-events: none;
}

.bank-card--classic .bank-card__shine {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
}

.bank-card--gold .bank-card__shine {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.10), transparent 70%);
}

.bank-card--platinum .bank-card__shine {
    background: radial-gradient(circle, rgba(147, 197, 253, 0.08), transparent 70%);
}

.bank-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bank-card__label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.bank-card--classic .bank-card__label { color: rgba(255,255,255,0.7); }
.bank-card--gold .bank-card__label { color: rgba(255,255,255,0.85); }
.bank-card--platinum .bank-card__label { color: #93C5FD; }

.bank-card__chip-small {
    width: 28px;
    height: 20px;
    border-radius: 4px;
    background: linear-gradient(135deg, #93C5FD, #BFDBFE);
    opacity: 0.9;
}

.bank-card__mid {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.75);
}

.bank-card__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.bank-card__holder-name {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.8);
}

.bank-card__expiry-info {
    text-align: right;
}

.bank-card__expiry-info small {
    display: block;
    font-size: 0.5rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.bank-card__expiry-info span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: rgba(255,255,255,0.75);
}

.card-tier__info {
    text-align: center;
    width: 100%;
}

.card-tier__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-muted-white);
    margin-bottom: 0.875rem;
}

.card-tier__benefits {
    list-style: none;
    margin-bottom: 1.25rem;
}

.card-tier__benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-sm);
    color: var(--color-silver);
    padding: 0.3rem 0;
    justify-content: center;
}

.card-tier__benefit i {
    color: var(--color-gold);
    font-size: 11px;
}

/* ===== SECTION: LOAN CALCULATOR ===== */
.calculator-section {
    background: var(--color-bg-primary);
}

.calculator-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.calculator-panel {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

.calculator-panel__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-muted-white);
    margin-bottom: 1.75rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-muted-white);
    margin-bottom: 0.5rem;
}

.form-label__value {
    font-family: var(--font-mono);
    color: var(--color-gold);
    font-size: var(--fs-base);
}

.form-select,
.form-input {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    color: var(--color-muted-white);
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition-base);
    appearance: none;
    -webkit-appearance: none;
}

.form-select:focus,
.form-input:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
    background: #F8FBFF;
}

.form-select option {
    background: #FFFFFF;
    color: var(--color-muted-white);
}

/* Blue Range Slider */
.range-slider {
    width: 100%;
    height: 4px;
    background: #DBEAFE;
    border-radius: var(--radius-full);
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: var(--transition-base);
}

.range-slider::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient-gold);
    cursor: pointer;
    box-shadow: 0 0 8px rgba(37, 99, 235, 0.4);
    border: 2px solid #FFFFFF;
    transition: var(--transition-base);
}

.range-slider::-webkit-slider-thumb:hover {
    box-shadow: 0 0 16px rgba(37, 99, 235, 0.6);
    transform: scale(1.2);
}

.range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient-gold);
    cursor: pointer;
    border: 2px solid #FFFFFF;
}

/* Result panel */
.result-panel {
    background: rgba(37, 99, 235, 0.03);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.result-panel__title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-silver);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.result-panel__monthly {
    font-family: var(--font-mono);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.result-panel__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.result-detail {
    background: rgba(37, 99, 235, 0.04);
    border-radius: var(--radius-sm);
    padding: 0.875rem;
}

.result-detail__label {
    font-size: var(--fs-xs);
    color: var(--color-silver);
    margin-bottom: 0.3rem;
}

.result-detail__value {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-muted-white);
}

.progress-bar-wrap {
    margin-top: 1.25rem;
}

.progress-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: var(--fs-xs);
    color: var(--color-silver);
    margin-bottom: 0.5rem;
}

.progress-bar-track {
    height: 8px;
    background: #DBEAFE;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
}

/* ===== SECTION: WHY CHOOSE US ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-item {
    padding: 1.75rem;
    border-radius: var(--radius-md);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
}

.feature-item:hover {
    border-color: var(--color-border-gold);
    background: var(--color-bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.feature-item__icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.08);
    transition: var(--transition-base);
}

.feature-item:hover .feature-item__icon {
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

.feature-item__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-muted-white);
    margin-bottom: 0.625rem;
}

.feature-item__desc {
    font-size: var(--fs-sm);
    color: var(--color-silver);
    line-height: 1.6;
}

/* ===== SECTION: TESTIMONIALS ===== */
.testimonials-section {
    background: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(37, 99, 235, 0.02) 40px,
        rgba(37, 99, 235, 0.02) 41px
    );
    pointer-events: none;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
}

.testimonial-card {
    max-width: 720px;
    width: 100%;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
}

.testimonial-card__stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
    font-size: 1.1rem;
}

.testimonial-card__quote {
    font-size: var(--fs-md);
    font-style: italic;
    color: var(--color-silver);
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-card__quote::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 5rem;
    color: rgba(37, 99, 235, 0.12);
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 auto 0.875rem;
    border: 2px solid var(--color-border-gold);
}

.testimonial-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-muted-white);
    margin-bottom: 0.25rem;
}

.testimonial-card__title {
    font-size: var(--fs-sm);
    color: var(--color-silver);
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.testimonials-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-border-gold);
    background: transparent;
    color: var(--color-gold);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.testimonials-btn:hover {
    background: rgba(37, 99, 235, 0.08);
    box-shadow: var(--shadow-glow);
}

.testimonials-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.testimonials-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
}

.testimonials-dot.active {
    background: var(--color-gold);
    width: 24px;
    border-radius: var(--radius-full);
}

/* ===== SECTION: MOBILE APP ===== */
.app-section {
    background: var(--color-bg-primary);
}

.app-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.app-content {}

.app-features {
    list-style: none;
    margin: 1.75rem 0 2.5rem;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.625rem 0;
    font-size: var(--fs-base);
    color: var(--color-silver);
    border-bottom: 1px solid var(--color-border);
}

.app-feature:last-child {
    border-bottom: none;
}

.app-feature i {
    width: 24px;
    height: 24px;
    background: rgba(37, 99, 235, 0.10);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 11px;
    flex-shrink: 0;
}

.app-store-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #FFFFFF;
    border: 1.5px solid var(--color-border-gold);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.25rem;
    color: var(--color-muted-white);
    text-decoration: none;
    font-size: var(--fs-xs);
    transition: var(--transition-base);
    white-space: nowrap;
    box-shadow: var(--shadow-card);
}

.app-store-btn:hover {
    border-color: var(--color-gold);
    background: var(--color-gold);
    color: #FFFFFF;
}

.app-store-btn i {
    font-size: 1.5rem;
    color: var(--color-gold);
    transition: var(--transition-base);
}

.app-store-btn:hover i {
    color: #FFFFFF;
}

.app-store-btn__text {
    line-height: 1.3;
}

.app-store-btn__store-name {
    font-size: 0.65rem;
    color: var(--color-silver);
    display: block;
}

.app-store-btn__app-name {
    font-size: 0.875rem;
    font-weight: 600;
    display: block;
}

.app-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-sm);
    color: var(--color-silver);
}

.app-rating__stars {
    color: var(--color-gold);
}

/* Phone Mockup */
.phone-mockup-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float-phone 5s ease-in-out infinite;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #0F2044;
    border-radius: 44px;
    border: 2px solid rgba(255,255,255,0.15);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5),
                inset 0 1px 0 rgba(255,255,255,0.10),
                0 0 60px rgba(37, 99, 235, 0.12);
    position: relative;
    overflow: hidden;
}

.phone-mockup__notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #0F2044;
    border-radius: 0 0 20px 20px;
    z-index: 2;
    border: 2px solid rgba(255,255,255,0.10);
    border-top: none;
}

.phone-mockup__screen {
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(180deg, #1E3A8A 0%, #0F2044 100%);
    display: flex;
    flex-direction: column;
}

.phone-screen__header {
    padding: 3rem 1.25rem 1rem;
    background: linear-gradient(180deg, #1E3A8A, transparent);
}

.phone-screen__greeting {
    font-size: 0.7rem;
    color: var(--color-silver);
    margin-bottom: 0.2rem;
}

.phone-screen__balance {
    font-family: var(--font-mono);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-white);
}

.phone-screen__balance-label {
    font-size: 0.6rem;
    color: var(--color-silver);
    margin-top: 0.15rem;
}

.phone-screen__card-mini {
    margin: 0 1.25rem;
    height: 80px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.phone-screen__actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    padding: 1rem 1.25rem;
}

.phone-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.phone-action__icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #FFFFFF;
}

.phone-action__label {
    font-size: 0.5rem;
    color: var(--color-silver);
    text-align: center;
}

.phone-screen__transactions {
    padding: 0 1.25rem;
    flex: 1;
}

.phone-transaction {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.6rem;
}

.phone-transaction__name {
    color: var(--color-white);
    font-weight: 500;
}

.phone-transaction__date {
    color: var(--color-silver);
    font-size: 0.55rem;
}

.phone-transaction__amount--positive {
    color: #4ade80;
    font-family: var(--font-mono);
    font-weight: 600;
}

.phone-transaction__amount--negative {
    color: #f87171;
    font-family: var(--font-mono);
    font-weight: 600;
}

/* ===== SECTION: STATISTICS COUNTER ===== */
.stats-section {
    background: linear-gradient(135deg, #1E3A8A 0%, #1D4ED8 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.3), transparent);
}

.stat-item__number {
    font-family: var(--font-mono);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.stat-item__label {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

/* ===== SECTION: FAQ ===== */
.faq-section {}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.375rem 0;
    cursor: pointer;
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--color-muted-white);
    gap: 1rem;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--color-gold);
}

.faq-question.active {
    color: var(--color-gold);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-silver);
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.faq-question.active .faq-icon {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.is-open {
    max-height: 300px;
    padding-bottom: 1.375rem;
}

.faq-answer p {
    font-size: var(--fs-sm);
    color: var(--color-silver);
    line-height: 1.8;
}

.faq-more-link {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

/* ===== SECTION: CTA SECTION ===== */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #1E3A8A 0%, #1D4ED8 50%, #2563EB 100%);
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 50%, rgba(255,255,255,0.02) 100%);
}

.cta-section__orb {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 65%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: pulse-glow 5s ease-in-out infinite;
}

.cta-section__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-section__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.cta-section__subtitle {
    font-size: var(--fs-md);
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-section .badge-chip {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.92);
}

.cta-section__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-section__trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.82);
}

.cta-section__trust-item i {
    color: var(--color-gold);
}

.cta-section__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== SECTION: NEWSLETTER ===== */
.newsletter-section {
    background: #EFF6FF;
    padding: 2.5rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.newsletter-content {}

.newsletter-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-muted-white);
    margin-bottom: 0.25rem;
}

.newsletter-subtitle {
    font-size: var(--fs-sm);
    color: var(--color-silver);
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    max-width: 480px;
}

.newsletter-input {
    flex: 1;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    color: var(--color-muted-white);
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition-base);
    box-shadow: var(--shadow-card);
}

.newsletter-input::placeholder {
    color: var(--color-silver-dark);
}

.newsletter-input:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.newsletter-privacy {
    font-size: var(--fs-xs);
    color: var(--color-silver-dark);
    margin-top: 0.5rem;
}

/* ===== SECTION: PAGE BANNER ===== */
.page-banner {
    position: relative;
    padding: 7rem 0 4rem;
    background: linear-gradient(135deg, #1E3A8A, #1D4ED8);
    overflow: hidden;
    margin-top: 122px;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 30px,
        rgba(255, 255, 255, 0.02) 30px,
        rgba(255, 255, 255, 0.02) 31px
    );
}

.page-banner__glow {
    position: absolute;
    top: -100px;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-banner__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.page-banner__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1rem;
}

.page-banner__breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
}

.page-banner__breadcrumb a:hover {
    color: #FFFFFF;
}

.page-banner__breadcrumb-sep {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
}

.page-banner__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.page-banner__subtitle {
    font-size: var(--fs-md);
    color: rgba(255, 255, 255, 0.82);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== SECTION: FORMS (CONTACT, LOGIN, SIGNUP) ===== */
.form-control--dark {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    color: var(--color-muted-white);
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    padding: 0.875rem 1rem;
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition-base);
}

.form-control--dark::placeholder {
    color: var(--color-silver-dark);
}

.form-control--dark:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
    background: #F8FBFF;
}

.form-control--dark.is-invalid {
    border-color: #EF4444;
}

.form-control--dark option {
    background: #FFFFFF;
    color: var(--color-muted-white);
}

textarea.form-control--dark {
    resize: vertical;
    min-height: 120px;
}

.form-label--dark {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-muted-white);
    margin-bottom: 0.5rem;
}

.form-error {
    font-size: var(--fs-xs);
    color: #f87171;
    margin-top: 0.375rem;
    display: none;
}

.form-error.show {
    display: block;
}

/* Auth Card */
.auth-page {
    min-height: 100vh;
    background: #EFF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    padding-top: 122px;
}

.auth-card {
    width: 100%;
    max-width: 480px;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-card-hover);
}

.auth-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    text-decoration: none;
}

.auth-card__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-muted-white);
    margin-bottom: 0.5rem;
    text-align: center;
}

.auth-card__subtitle {
    font-size: var(--fs-sm);
    color: var(--color-silver);
    text-align: center;
    margin-bottom: 2rem;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--color-silver-dark);
    font-size: var(--fs-xs);
    font-weight: 500;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--color-border);
}

.social-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-muted-white);
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    font-weight: 500;
    padding: 0.75rem;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    width: 100%;
}

.social-login-btn:hover {
    border-color: var(--color-gold);
    background: rgba(37, 99, 235, 0.04);
    color: var(--color-muted-white);
}

.social-login-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.auth-security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
    font-size: var(--fs-xs);
    color: var(--color-silver-dark);
}

.auth-security-note i {
    color: var(--color-gold);
}

/* Password strength meter */
.password-strength {
    margin-top: 0.5rem;
}

.password-strength__bar {
    height: 4px;
    background: var(--color-border);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.password-strength__fill {
    height: 100%;
    width: 0%;
    border-radius: var(--radius-full);
    transition: width 0.4s ease, background 0.4s ease;
}

.password-strength__text {
    font-size: var(--fs-xs);
    color: var(--color-silver-dark);
    margin-top: 0.3rem;
}

/* Checkbox Gold */
.checkbox-gold {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-gold input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--color-border-gold);
    border-radius: 4px;
    background: #FFFFFF;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition-base);
    position: relative;
}

.checkbox-gold input[type="checkbox"]:checked {
    background: var(--gradient-gold);
    border-color: var(--color-gold);
}

.checkbox-gold input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 5px;
    height: 9px;
    border: 2px solid #FFFFFF;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.checkbox-gold__label {
    font-size: var(--fs-sm);
    color: var(--color-silver);
    line-height: 1.5;
}

.checkbox-gold__label a {
    color: var(--color-gold);
}

/* Progress Steps */
.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    position: relative;
}

.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18px;
    left: calc(50% + 18px);
    width: calc(100% - 0px);
    height: 2px;
    background: var(--color-border);
    transition: background 0.3s ease;
}

.progress-step.completed:not(:last-child)::after {
    background: var(--gradient-gold);
}

.progress-step__number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--color-silver);
    background: #FFFFFF;
    transition: var(--transition-base);
}

.progress-step.active .progress-step__number {
    border-color: var(--color-gold);
    background: rgba(37, 99, 235, 0.08);
    color: var(--color-gold);
}

.progress-step.completed .progress-step__number {
    background: var(--gradient-gold);
    border-color: var(--color-gold);
    color: #FFFFFF;
}

.progress-step__label {
    font-size: var(--fs-xs);
    color: var(--color-silver-dark);
    font-weight: 500;
    white-space: nowrap;
}

.progress-step.active .progress-step__label {
    color: var(--color-gold);
}

/* ===== SECTION: CONTACT PAGE ===== */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    margin-bottom: 1rem;
}

.contact-info-card:hover {
    border-color: var(--color-border-gold);
    transform: translateX(4px);
}

.contact-info-card__icon {
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-gold);
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.contact-info-card__title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-muted-white);
    margin-bottom: 0.375rem;
}

.contact-info-card__value {
    font-size: var(--fs-sm);
    color: var(--color-silver);
    line-height: 1.5;
}

.support-card {
    padding: 2rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition-base);
}

.support-card:hover {
    border-color: var(--color-border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow), var(--shadow-card-hover);
}

.support-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-gold);
}

.support-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-muted-white);
    margin-bottom: 0.5rem;
}

.support-card__desc {
    font-size: var(--fs-sm);
    color: var(--color-silver);
    margin-bottom: 1.25rem;
}

/* Map Placeholder */
.map-placeholder {
    width: 100%;
    height: 320px;
    background: #EFF6FF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 1.5rem;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 30px,
        rgba(37, 99, 235, 0.04) 30px,
        rgba(37, 99, 235, 0.04) 31px
    ),
    repeating-linear-gradient(
        90deg,
        transparent,
        transparent 30px,
        rgba(37, 99, 235, 0.04) 30px,
        rgba(37, 99, 235, 0.04) 31px
    );
}

.map-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-silver);
    font-size: var(--fs-sm);
}

.map-overlay i {
    font-size: 2.5rem;
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.75rem;
}

.map-embed {
    margin-top: 1.5rem;
}

.map-embed__frame {
    width: 100%;
    height: 320px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: block;
    background: #EFF6FF;
}

.map-embed__actions {
    margin-top: 0.75rem;
    display: flex;
    justify-content: flex-end;
}

/* ===== SECTION: TABLE STYLES ===== */
.table-responsive-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--fs-sm);
}

.comparison-table th {
    background: rgba(37, 99, 235, 0.06);
    color: var(--color-gold);
    font-weight: 600;
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border-gold);
    white-space: nowrap;
}

.comparison-table td {
    padding: 0.875rem 1.25rem;
    color: var(--color-silver);
    border-bottom: 1px solid var(--color-border);
}

.comparison-table tr:hover td {
    background: rgba(37, 99, 235, 0.03);
    color: var(--color-muted-white);
}

.comparison-table .check { color: #4ade80; }
.comparison-table .cross { color: #f87171; }

/* ===== SECTION: ABOUT PAGE ===== */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--color-gold), rgba(37,99,235,0.1));
}

.timeline-item {
    position: relative;
    padding: 0 0 3rem 2.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 6px;
    width: 14px;
    height: 14px;
    background: var(--gradient-gold);
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.4);
}

.timeline-item__year {
    font-family: var(--font-mono);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.timeline-item__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-muted-white);
    margin-bottom: 0.5rem;
}

.timeline-item__desc {
    font-size: var(--fs-sm);
    color: var(--color-silver);
    line-height: 1.6;
}

/* Team Cards */
.team-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-base);
}

.team-card:hover {
    border-color: var(--color-border-gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow), var(--shadow-card-hover);
}

.team-card__avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 auto 1.25rem;
    border: 3px solid var(--color-border-gold);
}

.team-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-muted-white);
    margin-bottom: 0.25rem;
}

.team-card__role {
    font-size: var(--fs-sm);
    color: var(--color-gold);
    font-weight: 500;
    margin-bottom: 0.875rem;
}

.team-card__bio {
    font-size: var(--fs-sm);
    color: var(--color-silver);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-card__linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--fs-xs);
    color: var(--color-silver);
    text-decoration: none;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    padding: 0.3rem 0.75rem;
    transition: var(--transition-base);
}

.team-card__linkedin:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* ===== SECTION: LOAN PAGE ===== */
.loan-type-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.loan-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.loan-type-card:hover::before {
    transform: scaleX(1);
}

.loan-type-card:hover {
    border-color: var(--color-border-gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.loan-type-card__icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
}

.loan-type-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-muted-white);
    margin-bottom: 0.875rem;
}

.loan-type-card__rate {
    font-family: var(--font-mono);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.loan-type-card__rate-label {
    font-size: var(--fs-xs);
    color: var(--color-silver);
    margin-bottom: 1rem;
}

.loan-type-card__details {
    list-style: none;
    margin-bottom: 1.5rem;
}

.loan-type-card__detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-sm);
    color: var(--color-silver);
    padding: 0.3rem 0;
}

.loan-type-card__detail i {
    color: var(--color-gold);
    font-size: 11px;
}

/* Application Stepper */
.stepper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    gap: 1rem;
}

.stepper::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    z-index: 0;
}

.stepper-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 160px;
}

.stepper-step__icon {
    width: 48px;
    height: 48px;
    background: #FFFFFF;
    border: 2px solid var(--color-border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-gold);
    margin: 0 auto 0.75rem;
    box-shadow: var(--shadow-glow);
}

.stepper-step__title {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--color-muted-white);
    margin-bottom: 0.25rem;
}

.stepper-step__desc {
    font-size: var(--fs-xs);
    color: var(--color-silver);
}

/* ===== SECTION: PRIVACY/TERMS PAGES ===== */
.legal-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

.legal-sidebar {
    position: sticky;
    top: 140px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
}

.legal-sidebar__title {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--color-muted-white);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
}

.legal-sidebar__nav {
    list-style: none;
}

.legal-sidebar__nav-item {
    border-bottom: 1px solid var(--color-border);
}

.legal-sidebar__nav-link {
    display: block;
    padding: 0.625rem 0.5rem;
    font-size: var(--fs-xs);
    color: var(--color-silver);
    text-decoration: none;
    transition: var(--transition-base);
    border-radius: var(--radius-xs);
}

.legal-sidebar__nav-link:hover {
    color: var(--color-gold);
    background: rgba(37, 99, 235, 0.05);
    padding-left: 1rem;
}

.legal-content h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
}

.legal-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-gold);
    margin: 1.75rem 0 0.75rem;
}

.legal-content p {
    font-size: var(--fs-sm);
    color: var(--color-silver);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul, .legal-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    font-size: var(--fs-sm);
    color: var(--color-silver);
    line-height: 1.8;
    margin-bottom: 0.375rem;
}

/* ===== SECTION: FAQ PAGE ===== */
.faq-search-bar {
    position: relative;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.faq-search-input {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    color: var(--color-muted-white);
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    padding: 1rem 1rem 1rem 3.25rem;
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition-base);
    box-shadow: var(--shadow-card);
}

.faq-search-input:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.faq-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gold);
    font-size: 1rem;
    pointer-events: none;
}

.faq-categories {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.faq-category-btn {
    padding: 0.5rem 1.125rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-silver);
    font-family: var(--font-primary);
    font-size: var(--fs-xs);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.faq-category-btn:hover,
.faq-category-btn.active {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(37, 99, 235, 0.06);
}

/* ===== SECTION: SERVICES PAGE ===== */
.service-detail-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--color-border);
}

.service-detail-section:last-child {
    border-bottom: none;
}

.service-detail-section.reverse {
    direction: rtl;
}

.service-detail-section.reverse > * {
    direction: ltr;
}

.service-detail__icon-large {
    width: 80px;
    height: 80px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-glow);
}

.service-detail__title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-muted-white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.service-detail__desc {
    font-size: var(--fs-base);
    color: var(--color-silver);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-detail__features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: var(--fs-sm);
    color: var(--color-silver);
}

.service-detail__feature i {
    color: var(--color-gold);
    font-size: 14px;
    flex-shrink: 0;
}

.service-visual-placeholder {
    width: 100%;
    min-height: 360px;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-visual-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.03), rgba(37, 99, 235, 0.06));
    pointer-events: none;
}

.service-visual-placeholder__image {
    width: 100%;
    min-height: 360px;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.service-visual-placeholder:hover .service-visual-placeholder__image {
    transform: scale(1.04);
}

/* ===== SECTION: AWARDS / TRUST BADGES ===== */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.5rem;
    text-align: center;
    transition: var(--transition-base);
    min-width: 140px;
    box-shadow: var(--shadow-card);
}

.trust-badge:hover {
    border-color: var(--color-border-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
}

.trust-badge__icon {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.trust-badge__name {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--color-silver);
    line-height: 1.4;
}

/* Values cards */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-card {
    padding: 2rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    box-shadow: var(--shadow-card);
}

.value-card:hover {
    border-color: var(--color-border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.value-card__icon {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.value-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-muted-white);
    margin-bottom: 0.5rem;
}

.value-card__desc {
    font-size: var(--fs-sm);
    color: var(--color-silver);
    line-height: 1.6;
}

/* ===== SECTION: UTILITY ===== */
.container-fluid-pad {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border-gold), transparent);
    margin: 1rem 0;
    border: none;
}

/* Grid Pattern overlay */
.grid-pattern-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
        linear-gradient(to right, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Animated background orbs */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    animation: float-slow 10s ease-in-out infinite;
}

.bg-orb--1 {
    width: 300px;
    height: 300px;
    background: rgba(37, 99, 235, 0.06);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.bg-orb--2 {
    width: 400px;
    height: 400px;
    background: rgba(37, 99, 235, 0.04);
    top: 40%;
    right: 3%;
    animation-delay: -4s;
}

.bg-orb--3 {
    width: 250px;
    height: 250px;
    background: rgba(37, 99, 235, 0.03);
    bottom: 10%;
    left: 30%;
    animation-delay: -6s;
}

/* Show/hide password button */
.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--color-silver-dark);
    cursor: pointer;
    padding: 0;
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.password-toggle:hover {
    color: var(--color-gold);
}

.input-wrap {
    position: relative;
}

.input-wrap .form-control--dark {
    padding-right: 3rem;
}

/* Footer Styles */
.footer {
    background: #0F2044;
    border-top: none;
    padding-top: 4rem;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 0 2rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer__tagline {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.footer__social {
    display: flex;
    gap: 0.625rem;
}

.footer__social-link {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: var(--transition-base);
    text-decoration: none;
}

.footer__social-link:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.15);
}

.footer__col-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer__col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
}

.footer__links {
    list-style: none;
}

.footer__link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0;
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer__link:hover {
    color: #FFFFFF;
    padding-left: 4px;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.78);
}

.footer__contact-item i {
    color: rgba(255, 255, 255, 0.84);
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 13px;
}

.footer__contact-link {
    color: inherit;
    text-decoration: none;
}

.footer__contact-link:hover {
    color: #FFFFFF;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copyright {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.68);
}

.footer__copyright a {
    color: rgba(255, 255, 255, 0.8);
}

.footer__payment-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.payment-icon {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 0.45rem 0.85rem;
    min-width: 4.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
}

.payment-icon i {
    font-size: 1.7rem;
}
