/* ================================================================
   ALTARA MARKETS — PAGE TEMPLATES CSS v1.1
   public/css/altara-pages.css

   Covers all custom page templates. Prefixed with .am- to avoid
   conflicts with Elementor and Kadence on non-template pages.
   ================================================================ */

/* ── 0. RESETS (scoped to page templates) ──────────────────────── */
.altara-page-template * { box-sizing: border-box; }
.altara-page-template { margin: 0; padding: 0; }
.altara-page-template a { color: inherit; text-decoration: none; }
.altara-page-template img { max-width: 100%; height: auto; display: block; }
.altara-page-template ul, .altara-page-template ol { list-style: none; padding: 0; margin: 0; }

/* Base body — ensure dark background on template pages */
body.altara-page-template {
    background: #07080E;
    color: #FFFFFF;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ── 1. LOADING SCREEN (handled by WPCode preloader — no duplicate here) ── */

/* ── 2. HEADER / NAVIGATION ─────────────────────────────────────── */
.am-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    background: rgba(7,8,14,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201,168,76,0.10);
    transition: background 0.3s ease, border-color 0.3s ease;
}
.am-header.scrolled {
    background: rgba(7,8,14,0.98);
    border-bottom-color: rgba(201,168,76,0.18);
}
.am-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
}
.am-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}
header#am-header .am-logo-img {
    height: 36px;
    width: auto;
    max-width: none;
    display: block;
    flex-shrink: 0;
}
.am-logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.am-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 3px;
}
.am-logo-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: #FFFFFF;
    text-transform: uppercase;
}
.am-logo-name span { color: #C9A84C; }
.am-logo-tag {
    font-size: 8px;
    letter-spacing: 1.5px;
    color: #6B6050;
    text-transform: uppercase;
    font-weight: 500;
}

/* Desktop nav */
.am-nav {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 4px;
}
.am-nav-item {
    position: relative;
}
.am-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.80);
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
    cursor: pointer;
}
.am-nav-link:hover, .am-nav-link.active {
    color: #C9A84C;
    background: rgba(201,168,76,0.06);
}
.am-nav-link svg { width: 12px; height: 12px; opacity: 0.6; transition: transform 0.2s; }
.am-nav-item:hover .am-nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.am-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: #0C0D15;
    border: 1px solid rgba(201,168,76,0.14);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 100;
}
.am-nav-item:hover .am-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.am-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    transition: all 0.2s;
}
.am-dropdown-item:hover {
    background: rgba(201,168,76,0.07);
    color: #C9A84C;
}
.am-dropdown-item svg { width: 16px; height: 16px; color: #C9A84C; flex-shrink: 0; }

/* Header actions */
.am-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
/* Mobile-only controls wrapper (lang + hamburger) */
.am-mobile-controls {
    display: none;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}
.am-mobile-lang-sw .am-lang-btn { padding: 4px 9px; font-size: 11px; }

/* Language switcher */
.am-lang-switcher {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
    gap: 0;
}
.am-lang-btn {
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.55);
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    background: transparent;
    border-radius: 20px;
}
.am-lang-btn.active, .am-lang-btn:hover {
    color: #C9A84C;
    background: rgba(201,168,76,0.10);
}

/* Header buttons */
.am-btn-nav-primary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    background: linear-gradient(135deg, #B8892C 0%, #D4A840 35%, #ECC94A 65%, #F5D485 100%);
    color: #0A0E1A;
    font-size: 13px;
    font-weight: 700;
    border-radius: 7px;
    letter-spacing: 0.2px;
    transition: all 0.25s;
    box-shadow: 0 2px 12px rgba(201,168,76,0.28);
    white-space: nowrap;
}
.am-btn-nav-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201,168,76,0.45);
    color: #0A0E1A;
}
.am-btn-nav-outline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    background: transparent;
    color: #C9A84C;
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid rgba(201,168,76,0.50);
    border-radius: 7px;
    transition: all 0.25s;
    white-space: nowrap;
}
.am-btn-nav-outline:hover {
    background: rgba(201,168,76,0.08);
    border-color: #C9A84C;
    color: #C9A84C;
}

/* Hamburger */
.am-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.2s;
}
.am-hamburger:hover { border-color: rgba(201,168,76,0.6); }
.am-hamburger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: #C9A84C;
    border-radius: 2px;
    transition: all 0.25s;
}
.am-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.am-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.am-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Page top spacer (below fixed header) */
.am-header-spacer { height: 72px; }

/* ── 3. MOBILE MENU ─────────────────────────────────────────────── */
.am-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: linear-gradient(160deg, #07080E 0%, #0B0C15 100%);
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.65,0,0.35,1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.am-mobile-menu.open { transform: translateX(0); }
.am-mobile-menu-inner {
    padding: 24px 20px 48px;
    max-width: 480px;
    margin: 0 auto;
}
.am-mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-left: 4px;
}
.am-mobile-close {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.45);
    background: rgba(255,255,255,0.05);
    color: #F4D36A;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
}
.am-mobile-close:hover { border-color: rgba(201,168,76,0.6); background: rgba(201,168,76,0.12); }
.am-mobile-promo {
    border: 1px solid rgba(201,168,76,0.28);
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 20px;
    background: linear-gradient(120deg, rgba(201,168,76,0.07), transparent);
    display: flex;
    align-items: center;
    gap: 14px;
}
.am-mobile-promo-icon {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: rgba(201,168,76,0.10);
    display: flex; align-items: center; justify-content: center;
    color: #C9A84C; flex-shrink: 0;
}
.am-mobile-promo-icon svg { width: 20px; height: 20px; }
.am-mobile-promo h4 { font-size: 14px; font-weight: 700; margin: 0 0 3px; }
.am-mobile-promo p  { font-size: 12px; color: #6B6050; margin: 0; line-height: 1.4; }
.am-mobile-nav {
    border-top: 1px solid rgba(201,168,76,0.08);
    margin-bottom: 24px;
}
.am-mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 4px;
    border-bottom: 1px solid rgba(201,168,76,0.06);
    border-left: 3px solid transparent;
    transition: border-color 0.2s, background 0.2s, padding-left 0.2s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
.am-mobile-nav-item:hover, .am-mobile-nav-item.active {
    border-left-color: #C9A84C;
    background: rgba(201,168,76,0.04);
    padding-left: 8px;
}
.am-mobile-nav-icon { width: 22px; color: #C9A84C; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.am-mobile-nav-icon svg { width: 18px; height: 18px; }
.am-mobile-nav-text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.am-mobile-nav-title { font-size: 15px; font-weight: 700; color: #FFFFFF; display: block; }
.am-mobile-nav-sub   { font-size: 11.5px; color: #6B6050; display: block; }
.am-mobile-nav-badge { font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 20px; white-space: nowrap; }
.am-mobile-nav-badge.hot  { background: rgba(201,168,76,0.12); color: #C9A84C; }
.am-mobile-nav-badge.earn { background: rgba(201,168,76,0.12); color: #C9A84C; }
.am-mobile-nav-badge.fast { background: rgba(201,168,76,0.12); color: #C9A84C; }
.am-mobile-nav-chev { color: #6B6050; font-size: 16px; }
.am-mobile-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.am-mobile-cta-primary {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(90deg, #B8892C, #F5D485);
    border-radius: 12px; cursor: pointer;
    color: #0A0E1A;
    text-decoration: none;
}
.am-mobile-cta-primary h4 { margin: 0; font-size: 15px; font-weight: 700; }
.am-mobile-cta-primary p  { margin: 0; font-size: 11px; opacity: 0.7; }
.am-mobile-cta-arrow {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(10,14,26,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.am-mobile-cta-login {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px;
    border: 1.5px solid rgba(201,168,76,0.35);
    border-radius: 12px; cursor: pointer;
    color: #FFFFFF;
    text-decoration: none;
}
.am-mobile-cta-login h4 { margin: 0; font-size: 15px; font-weight: 700; }
.am-mobile-cta-login p  { margin: 0; font-size: 11px; color: #6B6050; }
.am-mobile-menu .am-cta-left {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    text-align: left !important;
}
[dir="rtl"] .am-mobile-menu .am-cta-left {
    flex-direction: row-reverse !important;
    text-align: right !important;
}
.am-mobile-footer-items {
    display: flex; flex-wrap: wrap; gap: 8px 16px;
    justify-content: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(201,168,76,0.08);
    font-size: 11px;
    color: #6B6050;
}
.am-mobile-footer-items span { display: flex; align-items: center; gap: 5px; }

/* ── 4. GLOBAL BACKGROUND MOTIF ──────────────────────────────────── */
.am-global-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}
.am-global-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201,168,76,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 70%);
}
.am-global-glow {
    position: absolute;
    border-radius: 50%;
    background: rgba(201,168,76,0.07);
    filter: blur(80px);
    pointer-events: none;
}
.am-glow-1 { width: 500px; height: 500px; top: -200px; left: -150px; }
.am-glow-2 { width: 400px; height: 400px; bottom: -100px; right: -100px; }

/* ── 5. PAGE SECTION WRAPPER ─────────────────────────────────────── */
.am-section {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
}
.am-section--dark    { background: #07080E; }
.am-section--mid     { background: #0B0C15; }
.am-section--darker  { background: #050508; }
.am-section--gold    { background: linear-gradient(135deg, #0C0A04, #0E0C05, #0C0A04); }
.am-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.am-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}
.am-eyebrow, .am-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 14px;
}
.am-eyebrow::before, .am-section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1.5px;
    background: rgba(201,168,76,0.55);
    flex-shrink: 0;
}
.am-section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.15;
    margin: 0 0 14px;
    letter-spacing: -0.5px;
}
.am-section-title .gold {
    background: linear-gradient(90deg, #B8892C, #D4A840, #ECC94A, #F5D485);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.am-section-sub,
.am-section-subtitle {
    font-size: 16px;
    color: #8A8070;
    line-height: 1.65;
    margin: 0;
}

/* ── 6. HERO SECTIONS ─────────────────────────────────────────────── */
.am-hero {
    position: relative;
    min-height: min(72vh, 680px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #07080E;
    padding: 56px 0 44px;
}
.am-hero--page {
    min-height: 320px;
    padding: 72px 0 56px;
    align-items: flex-end;
}
.am-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.am-hero-bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(201,168,76,0.30) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: radial-gradient(ellipse 80% 60% at 65% 42%, rgba(0,0,0,0.65) 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 65% 42%, rgba(0,0,0,0.65) 0%, transparent 70%);
    opacity: 0.35;
}
.am-hero-bg-glow {
    position: absolute;
    width: 800px; height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.09) 0%, transparent 65%);
    top: -200px; left: 50%;
    transform: translateX(-20%);
}
.am-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.am-hero-content { max-width: 600px; }
.am-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 20px;
}
.am-hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1.5px;
    background: #C9A84C;
}
.am-hero-h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.8px;
    color: #FFFFFF;
    margin: 0 0 22px;
}
.am-hero-h1 .gold {
    background: linear-gradient(90deg, #B8892C 0%, #D4A840 30%, #ECC94A 60%, #F5D485 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}
.am-hero-sub {
    font-size: 17px;
    color: #8A8070;
    line-height: 1.65;
    max-width: 500px;
    margin: 0 0 36px;
}
.am-hero-ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero slide animation */
.am-hero-slides { position: relative; }
.am-hero-slide { display: none; }
.am-hero-slide.active { display: block; animation: heroCrossIn 0.7s ease; }
@keyframes heroCrossIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Hero dot navigation */
.am-hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}
.am-hero-dot {
    padding: 0;
    border: none;
    cursor: pointer;
    background: rgba(201,168,76,0.22);
    border-radius: 3px;
    width: 22px;
    height: 3px;
    transition: background 0.3s ease, width 0.3s ease;
    outline: none;
}
.am-hero-dot:focus-visible {
    outline: 2px solid rgba(201,168,76,0.55);
    outline-offset: 3px;
}
.am-hero-dot.active {
    background: linear-gradient(90deg, #B8892C, #ECC94A);
    width: 40px;
}
.am-hero-dot:hover:not(.active) { background: rgba(201,168,76,0.45); }

/* Hero visual area */
.am-hero-visual { position: relative; height: 480px; }
.am-hero-visual svg { width: 100%; height: 100%; }

/* Trust badges */
.am-trust-strip {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 24px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(201,168,76,0.10);
}
.am-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 600;
    color: #6B6050;
}
.am-trust-item svg { width: 14px; height: 14px; color: #C9A84C; }

/* Page hero (inner pages) */
.am-page-hero {
    position: relative;
    padding: 80px 0 60px;
    background: #07080E;
    overflow: hidden;
}
.am-page-hero-bg-line {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.20), transparent);
}

/* ── 7. BUTTONS ──────────────────────────────────────────────────── */
.am-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    padding: 15px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}
.am-btn-primary {
    background: linear-gradient(135deg, #B8892C 0%, #D4A840 35%, #ECC94A 65%, #F5D485 100%);
    color: #0A0E1A;
    box-shadow: 0 4px 20px rgba(201,168,76,0.30);
}
.am-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201,168,76,0.45);
    color: #0A0E1A;
}
.am-btn-secondary {
    background: transparent;
    color: #C9A84C;
    border: 1.5px solid rgba(201,168,76,0.42);
}
.am-btn-secondary:hover {
    background: rgba(201,168,76,0.08);
    border-color: #C9A84C;
    color: #C9A84C;
    transform: translateY(-2px);
}
.am-btn-outline {
    background: transparent;
    color: rgba(255,255,255,0.8);
    border: 1.5px solid rgba(255,255,255,0.2);
}
.am-btn-outline:hover {
    border-color: rgba(201,168,76,0.55);
    color: #C9A84C;
    background: rgba(201,168,76,0.06);
    transform: translateY(-2px);
}
.am-btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.82);
    border: 1px solid rgba(255,255,255,0.18);
}
.am-btn-ghost:hover {
    border-color: rgba(255,255,255,0.45);
    color: #FFFFFF;
    background: rgba(255,255,255,0.04);
    transform: translateY(-2px);
}
.am-btn-lg { font-size: 16px; padding: 18px 40px; border-radius: 10px; }
.am-btn-sm { font-size: 13px; padding: 10px 20px; border-radius: 6px; }
/* Active state — pressed feel */
.am-btn:active { transform: translateY(0) scale(0.98) !important; }
/* Focus ring for accessibility */
.am-btn:focus-visible { outline: 2px solid rgba(201,168,76,0.6); outline-offset: 3px; }
.am-btn .am-btn-arrow { transition: transform 0.2s; display: inline-flex; align-items: center; }
.am-btn:hover .am-btn-arrow { transform: translateX(4px); }

/* ── 8. CARDS ─────────────────────────────────────────────────────── */
.am-card {
    background: rgba(15,16,26,0.95);
    border: 1px solid rgba(201,168,76,0.13);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.04);
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    box-sizing: border-box;
}
.am-card:hover {
    border-color: rgba(201,168,76,0.35);
    box-shadow: 0 16px 48px rgba(0,0,0,0.55), 0 0 40px rgba(201,168,76,0.09);
    transform: translateY(-4px);
}
.am-card--featured {
    background: rgba(20,18,30,0.98);
    border: 1.5px solid rgba(201,168,76,0.55);
    box-shadow: 0 16px 48px rgba(0,0,0,0.55), 0 0 40px rgba(201,168,76,0.12);
}
.am-card--sm { padding: 20px 24px; border-radius: 16px; }
.am-card-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    border: 1px solid rgba(201,168,76,0.35);
    background: rgba(201,168,76,0.07);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    color: #C9A84C;
    transition: border-color 0.25s, background 0.25s;
}
.am-card:hover .am-card-icon { border-color: #C9A84C; background: rgba(201,168,76,0.14); }
.am-card-icon svg { width: 26px; height: 26px; }
.am-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 8px;
}
.am-card-desc {
    font-size: 13.5px;
    color: #8A8070;
    line-height: 1.6;
    margin: 0;
}

/* ── 9. ICON BADGE ────────────────────────────────────────────────── */
.am-icon-badge {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: rgba(201,168,76,0.08);
    border: 1.5px solid rgba(201,168,76,0.38);
    display: flex; align-items: center; justify-content: center;
    color: #C9A84C; flex-shrink: 0;
    transition: all 0.25s;
}
.am-icon-badge svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.75; }
.am-icon-badge--sq { border-radius: 12px; }

/* ── 10. STATS SECTION ────────────────────────────────────────────── */
.am-stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    border: 1px solid rgba(201,168,76,0.13);
    border-radius: 20px;
    background: rgba(11,12,21,0.6);
    overflow: hidden;
}
.am-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 28px 24px;
    border-right: 1px solid rgba(201,168,76,0.08);
}
.am-stat-item:last-child { border-right: none; }
.am-stat-text { display: flex; flex-direction: column; gap: 2px; }
.am-stat-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6B6050;
}
.am-stat-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
}
.am-stat-value.gold {
    background: linear-gradient(90deg, #C9A84C, #F5D485);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.am-stat-sub {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #4A4040;
}

/* ── 11. FEATURE GRID ─────────────────────────────────────────────── */
.am-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.am-feature-grid--6 { grid-template-columns: repeat(6, 1fr); gap: 20px; }
.am-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 28px 20px;
    background: rgba(15,16,26,0.95);
    border: 1px solid rgba(201,168,76,0.10);
    border-radius: 18px;
    transition: all 0.3s;
}
.am-feature-item:hover {
    border-color: rgba(201,168,76,0.32);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.am-feature-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(201,168,76,0.07);
    border: 1px solid rgba(201,168,76,0.30);
    display: flex; align-items: center; justify-content: center;
    color: #C9A84C;
    transition: all 0.25s;
}
.am-feature-item:hover .am-feature-icon { background: rgba(201,168,76,0.14); border-color: #C9A84C; }
.am-feature-icon svg { width: 24px; height: 24px; }
.am-feature-title { font-size: 14.5px; font-weight: 700; color: #FFFFFF; margin: 0; }
.am-feature-desc  { font-size: 12px; color: #6B6050; margin: 0; line-height: 1.55; }

/* ── 12. STAT COUNTER SECTION ─────────────────────────────────────── */
.am-counters-section {
    padding: 80px 0;
    background: linear-gradient(160deg, #050507 0%, #0B0A0E 100%);
    position: relative;
    overflow: hidden;
}
.am-counters-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.25), transparent);
}
.am-counters-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.25), transparent);
}
.am-counters-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    text-align: center;
}
.am-counter-item {
    padding: 40px 16px;
    border-right: 1px solid rgba(201,168,76,0.07);
    min-width: 0;
    overflow: hidden;
}
.am-counter-item:last-child { border-right: none; }
.am-counter-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(26px, 3vw, 44px);
    font-weight: 800;
    background: linear-gradient(135deg, #C9A84C, #F5D485);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}
.am-counter-label {
    font-size: 12px;
    font-weight: 600;
    color: #6B6050;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ── 13. ACCOUNT TYPE CARDS ───────────────────────────────────────── */
.am-accounts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.am-account-card {
    background: rgba(15,16,26,0.95);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 20px;
    padding: 32px 24px;
    position: relative;
    transition: all 0.3s;
    text-align: center;
    overflow: visible;
}
.am-account-card:hover {
    border-color: rgba(201,168,76,0.35);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.am-account-card--featured {
    border: 1.5px solid rgba(201,168,76,0.55);
    background: rgba(20,18,30,0.98);
    box-shadow: 0 16px 48px rgba(201,168,76,0.12);
}
.am-account-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #B8892C, #F5D485);
    color: #0A0E1A;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    white-space: nowrap;
}
.am-account-type-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 6px;
}
.am-account-min-dep {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 4px;
}
.am-account-min-label {
    font-size: 11px;
    color: #6B6050;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.am-account-features {
    text-align: left;
    margin-bottom: 28px;
    border-top: 1px solid rgba(201,168,76,0.08);
    padding-top: 20px;
}
.am-account-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 13px;
}
.am-account-feature-key { color: #6B6050; }
.am-account-feature-val { color: #FFFFFF; font-weight: 600; }
.am-account-feature-val.gold { color: #C9A84C; }

/* ── 14. COMPARISON TABLE ─────────────────────────────────────────── */
.am-table-wrap { overflow-x: auto; border-radius: 20px; }
.am-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(11,12,21,0.8);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 20px;
    overflow: hidden;
}
.am-table th {
    background: rgba(201,168,76,0.07);
    padding: 18px 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #C9A84C;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    text-align: center;
}
.am-table th:first-child { text-align: left; color: rgba(255,255,255,0.6); }
.am-table td {
    padding: 16px 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    text-align: center;
}
.am-table td:first-child { text-align: left; color: #8A8070; font-weight: 500; }
.am-table tr:last-child td { border-bottom: none; }
.am-table tr:hover td { background: rgba(201,168,76,0.03); }
.am-table .am-col-featured { background: rgba(201,168,76,0.05); }
.am-table .check { color: #C9A84C; font-size: 16px; }
.am-table .dash  { color: #4A4040; }
.am-table .gold  { color: #C9A84C; font-weight: 700; }

/* ── 15. MARKET / PAYMENT CARDS ───────────────────────────────────── */
.am-payment-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.am-payment-card {
    background: rgba(15,16,26,0.95);
    border: 1px solid rgba(201,168,76,0.10);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s;
}
.am-payment-card:hover {
    border-color: rgba(201,168,76,0.32);
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.4);
}
.am-payment-logo {
    width: 80px; height: 48px;
    margin: 0 auto 12px;
    display: flex; align-items: center; justify-content: center;
}
.am-payment-logo img { max-width: 80px; max-height: 38px; width: auto; height: auto; object-fit: contain; display: block; }
.am-payment-name { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 4px; }
.am-payment-info { font-size: 11px; color: rgba(201,168,76,0.7); font-weight: 600; letter-spacing: 0.2px; }

/* ── 16. TESTIMONIALS ─────────────────────────────────────────────── */
.am-testimonials-track {
    display: flex;
    gap: 24px;
    animation: testimonialsScroll 30s linear infinite;
    width: max-content;
}
.am-testimonials-track:hover { animation-play-state: paused; }
.am-testimonial-card {
    width: 320px;
    flex-shrink: 0;
    background: rgba(15,16,26,0.95);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 20px;
    padding: 28px 24px;
}
.am-testimonial-stars { color: #C9A84C; font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.am-testimonial-text { font-size: 14px; color: rgba(255,255,255,0.82); line-height: 1.65; margin-bottom: 20px; font-style: italic; }
.am-testimonial-author { display: flex; align-items: center; gap: 12px; }
.am-testimonial-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(201,168,76,0.12);
    border: 1.5px solid rgba(201,168,76,0.35);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    color: #C9A84C;
    font-size: 14px;
}
.am-testimonial-name { font-weight: 700; font-size: 13.5px; color: #FFFFFF; }
.am-testimonial-country { font-size: 11.5px; color: #6B6050; }
@keyframes testimonialsScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── 17. FAQ ──────────────────────────────────────────────────────── */
.am-faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 840px; margin: 0 auto; }
.am-faq-item {
    background: rgba(15,16,26,0.95);
    border: 1px solid rgba(201,168,76,0.10);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.25s;
}
.am-faq-item.open { border-color: rgba(201,168,76,0.35); }
.am-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
    user-select: none;
}
.am-faq-question-text { font-size: 15px; font-weight: 600; color: #FFFFFF; flex: 1; }
.am-faq-icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.25);
    background: rgba(201,168,76,0.06);
    display: flex; align-items: center; justify-content: center;
    color: #C9A84C; flex-shrink: 0;
    transition: all 0.25s;
}
.am-faq-item.open .am-faq-icon { background: rgba(201,168,76,0.14); border-color: #C9A84C; transform: rotate(45deg); }
.am-faq-icon svg { width: 14px; height: 14px; }
.am-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
    padding: 0 24px;
}
.am-faq-item.open .am-faq-answer { max-height: 400px; padding-bottom: 20px; }
.am-faq-answer-text { font-size: 14px; color: #8A8070; line-height: 1.7; padding-top: 4px; border-top: 1px solid rgba(201,168,76,0.07); padding-top: 16px; }

/* FAQ filters */
.am-faq-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; justify-content: center; }
.am-faq-filter {
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid rgba(201,168,76,0.18);
    background: transparent;
    color: #6B6050;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.am-faq-filter:hover, .am-faq-filter.active {
    background: rgba(201,168,76,0.10);
    border-color: #C9A84C;
    color: #C9A84C;
}

/* ── 18. TIER / COMMISSION CARDS ──────────────────────────────────── */
.am-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.am-tier-card {
    background: rgba(15,16,26,0.95);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 20px;
    padding: 36px 28px 32px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}
.am-tier-card:hover {
    border-color: rgba(201,168,76,0.35);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.am-tier-card--featured {
    background: rgba(20,18,30,0.98);
    border: 1.5px solid rgba(201,168,76,0.55);
    box-shadow: 0 16px 48px rgba(201,168,76,0.13);
}
.am-tier-badge {
    position: absolute;
    top: -13px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #B8892C, #F5D485);
    color: #0A0E1A;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    white-space: nowrap;
}
.am-tier-icon { width: 56px; height: 56px; margin: 0 auto 14px; }
.am-tier-name {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #6B6050;
    margin-bottom: 6px;
}
.am-tier-range {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 2px;
}
.am-tier-lots { font-size: 10.5px; color: #4A4040; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.am-tier-divider { border: none; border-top: 1px solid rgba(201,168,76,0.08); margin: 0 0 20px; }
.am-tier-earn-label { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #C9A84C; margin-bottom: 4px; }
.am-tier-amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, #B8892C, #ECC94A, #F5D485);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}
.am-tier-per { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: #4A4040; }

/* ── 19. CTA BLOCK ───────────────────────────────────────────────── */
.am-cta-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 48px 56px;
    background: rgba(201,168,76,0.04);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 24px;
    box-sizing: border-box;
}
.am-cta-left { display: flex; align-items: center; gap: 24px; }
.am-cta-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    border: 1.5px solid rgba(201,168,76,0.40);
    background: rgba(201,168,76,0.07);
    display: flex; align-items: center; justify-content: center;
    color: #C9A84C; flex-shrink: 0;
}
.am-cta-icon svg { width: 30px; height: 30px; }
.am-cta-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 6px;
}
.am-cta-sub { font-size: 14px; color: #8A8070; margin: 0; line-height: 1.55; }
.am-cta-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* Full-width CTA */
.am-cta-full {
    text-align: center;
    padding: 100px 40px;
    background: linear-gradient(160deg, #08090D 0%, #0D0C13 50%, #08090D 100%);
    position: relative;
    overflow: hidden;
}
.am-cta-full::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.30), transparent);
}
.am-cta-full::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.30), transparent);
}
.am-cta-full-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}
.am-cta-full-sub {
    font-size: 17px;
    color: #8A8070;
    margin: 0 auto 40px;
    max-width: 540px;
    line-height: 1.6;
}
.am-cta-full-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── 20. NOTICE STRIP ─────────────────────────────────────────────── */
.am-notice {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(201,168,76,0.04);
    border: 1px solid rgba(201,168,76,0.22);
    border-radius: 14px;
}
.am-notice-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(201,168,76,0.35); background: rgba(201,168,76,0.07); display: flex; align-items: center; justify-content: center; color: #C9A84C; }
.am-notice-icon svg { width: 18px; height: 18px; }
.am-notice-title { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #C9A84C; margin: 0 0 4px; }
.am-notice-text { font-size: 13px; color: #8A8070; margin: 0; line-height: 1.55; }

/* ── 21. STEP PROCESS ─────────────────────────────────────────────── */
.am-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.am-steps-grid::before {
    content: '';
    position: absolute;
    top: 36px; left: 12.5%; right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, rgba(201,168,76,0.08), rgba(201,168,76,0.25), rgba(201,168,76,0.08));
}
.am-step { text-align: center; padding: 0 24px 32px; }
.am-step-num {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(201,168,76,0.07);
    border: 1.5px solid rgba(201,168,76,0.35);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #C9A84C;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}
.am-step-title { font-size: 15px; font-weight: 700; color: #FFFFFF; margin-bottom: 8px; }
.am-step-desc { font-size: 13px; color: #6B6050; line-height: 1.6; }

/* ── 22. PLATFORM DOWNLOAD CARDS ──────────────────────────────────── */
.am-platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.am-platform-card {
    display: flex;
    flex-direction: column;
    background: rgba(15,16,26,0.95);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.3s;
}
.am-platform-card:hover {
    border-color: rgba(201,168,76,0.35);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}
.am-platform-icon { margin-bottom: 18px; }
.am-platform-icon svg { width: 48px; height: 48px; }
.am-platform-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 700; color: #FFFFFF; margin-bottom: 4px; }
.am-platform-desc { font-size: 13px; color: #6B6050; line-height: 1.5; margin-bottom: 24px; flex: 1; }

/* ── 23. TRUST BAR ───────────────────────────────────────────────── */
.am-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 36px;
    padding: 24px 40px;
    border-top: 1px solid rgba(201,168,76,0.08);
    border-bottom: 1px solid rgba(201,168,76,0.08);
    background: rgba(11,12,21,0.4);
}
.am-trust-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #6B6050;
}
.am-trust-bar-item svg { width: 15px; height: 15px; color: #C9A84C; }

/* ── 24. LEGAL PAGE ──────────────────────────────────────────────── */
.am-legal-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
.am-legal-sidebar { position: sticky; top: 96px; }
.am-legal-nav {
    background: rgba(15,16,26,0.95);
    border: 1px solid rgba(201,168,76,0.10);
    border-radius: 16px;
    padding: 20px;
}
.am-legal-nav-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #C9A84C; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid rgba(201,168,76,0.10); }
.am-legal-nav-item {
    display: block;
    padding: 9px 14px;
    font-size: 13.5px;
    color: #8A8070;
    border-radius: 8px;
    transition: all 0.2s;
    margin-bottom: 2px;
}
.am-legal-nav-item:hover, .am-legal-nav-item.active { color: #C9A84C; background: rgba(201,168,76,0.07); }
.am-legal-content {}
.am-legal-section { margin-bottom: 48px; }
.am-legal-section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201,168,76,0.10);
}
.am-legal-text { font-size: 14.5px; color: #8A8070; line-height: 1.75; }
.am-legal-text p { margin: 0 0 14px; }
.am-legal-text ul { list-style: none; padding: 0; margin: 0 0 14px; }
.am-legal-text ul li { padding: 6px 0 6px 20px; position: relative; }
.am-legal-text ul li::before { content: ''; position: absolute; left: 0; top: 14px; width: 6px; height: 6px; border-radius: 50%; background: #C9A84C; }

/* Risk warning box */
.am-risk-warning {
    background: rgba(239,68,68,0.05);
    border: 1px solid rgba(239,68,68,0.25);
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 32px;
}
.am-risk-warning-title { font-size: 13px; font-weight: 700; color: #ef4444; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.am-risk-warning-text { font-size: 13px; color: rgba(239,68,68,0.85); line-height: 1.6; margin: 0; }

/* ── 25. CAREERS / COMING SOON ───────────────────────────────────── */
.am-coming-soon {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}
.am-coming-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border: 1.5px solid rgba(201,168,76,0.45);
    border-radius: 30px;
    background: rgba(201,168,76,0.06);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 32px;
    animation: pulseBadge 2s ease-in-out infinite;
}
@keyframes pulseBadge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.2); }
    50%       { box-shadow: 0 0 0 12px rgba(201,168,76,0); }
}
.am-coming-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.05;
    letter-spacing: -0.5px;
    margin: 0 0 20px;
}
.am-coming-sub { font-size: 18px; color: #8A8070; max-width: 500px; line-height: 1.65; margin: 0 auto 48px; }
.am-notify-form { display: flex; gap: 12px; max-width: 420px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.am-notify-input {
    flex: 1;
    min-width: 220px;
    padding: 14px 20px;
    background: rgba(15,16,26,0.95);
    border: 1px solid rgba(201,168,76,0.20);
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    font-family: 'Inter', sans-serif;
}
.am-notify-input:focus { border-color: rgba(201,168,76,0.50); }
.am-notify-input::placeholder { color: #4A4040; }

/* Starfield background for careers */
.am-starfield {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.am-star {
    position: absolute;
    border-radius: 50%;
    background: rgba(201,168,76,0.5);
    animation: starTwinkle var(--d, 3s) ease-in-out infinite var(--dl, 0s);
}
@keyframes starTwinkle {
    0%, 100% { opacity: 0.1; transform: scale(0.8); }
    50%       { opacity: 0.6; transform: scale(1.2); }
}

/* ── 26. CONTACT PAGE ─────────────────────────────────────────────── */
.am-contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.am-contact-method-cards { display: flex; flex-direction: column; gap: 16px; }
.am-contact-method {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: rgba(15,16,26,0.95);
    border: 1px solid rgba(201,168,76,0.10);
    border-radius: 16px;
    transition: all 0.3s;
}
.am-contact-method:hover { border-color: rgba(201,168,76,0.32); transform: translateX(4px); }
.am-contact-method-icon { flex-shrink: 0; color: #C9A84C; }
.am-contact-method-icon svg { width: 22px; height: 22px; }
.am-contact-method-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #6B6050; margin-bottom: 3px; }
.am-contact-method-value { font-size: 14.5px; font-weight: 600; color: #FFFFFF; }

/* Contact form */
.am-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.am-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.am-form-group { display: flex; flex-direction: column; gap: 6px; }
.am-form-label { font-size: 12px; font-weight: 600; color: #8A8070; letter-spacing: 0.5px; }
.am-form-input, .am-form-select, .am-form-textarea {
    padding: 13px 16px;
    background: rgba(15,16,26,0.95);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
    width: 100%;
}
.am-form-input:focus, .am-form-select:focus, .am-form-textarea:focus { border-color: rgba(201,168,76,0.45); }
.am-form-input::placeholder, .am-form-textarea::placeholder { color: #4A4040; }
.am-form-select { appearance: none; cursor: pointer; }
.am-form-select option { background: #0B0C15; }
.am-form-textarea { resize: vertical; min-height: 120px; }
.am-form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 12.5px; color: #8A8070; line-height: 1.5; }
.am-form-check input { margin-top: 2px; accent-color: #C9A84C; flex-shrink: 0; }

/* ── 27. FOOTER ──────────────────────────────────────────────────── */
.am-footer {
    background: #050508;
    border-top: 1px solid rgba(201,168,76,0.10);
    padding: 0;
}

/* Top area — brand + nav columns */
.am-footer-main { padding: 72px 0 56px; }
.am-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}
.am-footer-brand { padding-right: 12px; }
.am-footer-logo { margin-bottom: 20px; }
.am-footer-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.30);
    line-height: 1.75;
    max-width: 260px;
    margin-bottom: 28px;
}
.am-footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.am-footer-social-link {
    width: 36px; height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(201,168,76,0.18);
    background: rgba(201,168,76,0.04);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.35);
    transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.am-footer-social-link:hover {
    border-color: rgba(201,168,76,0.55);
    background: rgba(201,168,76,0.10);
    color: #C9A84C;
}
.am-footer-social-link svg { width: 15px; height: 15px; }
.am-footer-col-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 20px;
}
.am-footer-col nav { display: flex; flex-direction: column; }
.am-footer-link {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.38);
    padding: 5px 0;
    transition: color 0.2s;
    text-decoration: none;
}
.am-footer-link:hover { color: #C9A84C; }
.am-footer-divider {
    border: none;
    border-top: 1px solid rgba(201,168,76,0.08);
    margin: 0;
}

/* Middle area — Premium Risk Warning Card */
.am-footer-risk-section { padding: 40px 0 32px; }
.am-footer-risk-card {
    width: 100%;
    background: rgba(10,11,18,0.95);
    border: 1px solid rgba(201,168,76,0.28);
    border-radius: 18px;
    padding: 36px 40px;
    box-shadow: 0 0 60px rgba(201,168,76,0.04), inset 0 1px 0 rgba(201,168,76,0.08);
}
.am-footer-risk-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.am-footer-risk-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.30);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A84C;
}
.am-footer-risk-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C9A84C;
    margin: 0;
}
.am-footer-risk-body { padding-left: 66px; }
.am-footer-risk-text {
    font-size: 13px;
    color: rgba(255,255,255,0.52);
    line-height: 1.8;
    margin: 0 0 16px;
    max-width: 960px;
}
.am-footer-risk-link {
    font-size: 12.5px;
    color: rgba(201,168,76,0.65);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.2s;
    display: inline-block;
}
.am-footer-risk-link:hover { color: #C9A84C; }

/* Bottom area — copyright + legal nav + disclaimer */
.am-footer-bottom-section {
    border-top: 1px solid rgba(201,168,76,0.06);
    padding: 28px 0 36px;
    text-align: center;
}
.am-footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.28);
    margin: 0 0 16px;
}
.am-footer-legal-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 4px;
    margin-bottom: 20px;
}
.am-footer-legal-link {
    font-size: 12px;
    color: rgba(255,255,255,0.30);
    text-decoration: none;
    transition: color 0.2s;
    padding: 3px 6px;
}
.am-footer-legal-link:hover { color: #C9A84C; }
.am-footer-legal-sep {
    color: rgba(255,255,255,0.15);
    font-size: 12px;
    user-select: none;
}
.am-footer-disclaimer {
    font-size: 11px;
    color: rgba(255,255,255,0.18);
    line-height: 1.75;
    max-width: 860px;
    margin: 0 auto;
}

/* Back-to-top button */
.am-back-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(7,8,14,0.90);
    border: 1.5px solid rgba(201,168,76,0.50);
    color: #C9A84C;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s, border-color 0.25s, background 0.25s, transform 0.25s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0;
}
.am-back-top:hover {
    border-color: #C9A84C;
    background: rgba(201,168,76,0.12);
    transform: translateY(-3px);
}

/* ── 28. SCROLL REVEAL ───────────────────────────────────────────── */
.am-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.am-reveal.revealed { opacity: 1; transform: translateY(0); }
.am-reveal-delay-1 { transition-delay: 0.1s; }
.am-reveal-delay-2 { transition-delay: 0.2s; }
.am-reveal-delay-3 { transition-delay: 0.3s; }
.am-reveal-delay-4 { transition-delay: 0.4s; }

/* ── 29. MARKET TICKER ───────────────────────────────────────────── */
.am-ticker-section {
    padding: 0;
    background: rgba(201,168,76,0.03);
    border-top: 1px solid rgba(201,168,76,0.10);
    border-bottom: 1px solid rgba(201,168,76,0.10);
}
.am-ticker-section .tradingview-widget-container { min-height: 46px; }

/* ── 30. TRADINGVIEW OVERRIDE ────────────────────────────────────── */
.am-tv-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.12);
    background: rgba(7,8,14,0.9);
}
.am-tv-container .tradingview-widget-container { border-radius: 0; }
.tradingview-widget-copyright { display: none !important; }

/* ── 31. ANIMATIONS ──────────────────────────────────────────────── */
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}
.am-float { animation: floatY 4s ease-in-out infinite; }
.am-float-delay { animation: floatY 4s ease-in-out infinite 1.5s; }
.am-fade-in-up { animation: fadeInUp 0.7s ease forwards; }

/* Gold shimmer text */
.am-shimmer-gold {
    background: linear-gradient(90deg, #C9A84C 0%, #F5D485 35%, #C9A84C 60%, #F5D485 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

/* ── 32. PORTAL PLACEHOLDER ──────────────────────────────────────── */
.am-portal-header {
    background: rgba(15,16,26,0.95);
    border: 1px solid rgba(201,168,76,0.10);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.am-portal-welcome { font-size: 18px; font-weight: 700; }
.am-portal-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.am-portal-card {
    background: rgba(15,16,26,0.95);
    border: 1px solid rgba(201,168,76,0.10);
    border-radius: 16px;
    padding: 24px;
}
.am-portal-card-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #6B6050; margin-bottom: 8px; }
.am-portal-card-value { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 28px; font-weight: 800; color: #C9A84C; }

/* ── 33. RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .am-feature-grid--6 { grid-template-columns: repeat(3, 1fr); }
    .am-counters-grid   { grid-template-columns: repeat(3, 1fr); }
    .am-stats-grid      { grid-template-columns: repeat(3, 1fr); }
    .am-accounts-grid   { grid-template-columns: repeat(2, 1fr); }
    .am-payment-grid    { grid-template-columns: repeat(4, 1fr); }
    /* footer grid handled by section 53 */
}

@media (max-width: 1024px) {
    .am-header-inner { padding: 0 24px; gap: 20px; }
    .am-container    { padding: 0 24px; }
    .am-section      { padding: 72px 0; }
    .am-hero-grid    { grid-template-columns: 1fr; }
    .am-hero-visual  { height: 320px; order: -1; }
    .am-cta-block    { padding: 32px; }
    .am-platform-grid { grid-template-columns: repeat(2, 1fr); }
    .am-steps-grid   { grid-template-columns: repeat(2, 1fr); }
    .am-steps-grid::before { display: none; }
    .am-legal-layout { grid-template-columns: 1fr; }
    .am-legal-sidebar { position: static; }
    .am-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .am-nav              { display: none; }
    .am-header-inner     { gap: 0; }                           /* remove gap — actions pushed by margin-left:auto */
    .am-header-actions   { margin-left: auto; gap: 0; }        /* push actions block to far right */
    .am-header-actions > .am-lang-switcher { display: none; } /* desktop lang switcher hidden on mobile */
    .am-mobile-controls .am-lang-switcher  { display: flex;  } /* mobile header lang switcher: always visible */
    .am-mobile-menu .am-lang-switcher      { display: flex;  } /* mobile menu lang switcher: visible when menu open */
    .am-btn-nav-primary, .am-btn-nav-outline,
    body.page-id-39 header#am-header .am-btn-nav-primary,
    body.page-id-39 header#am-header .am-btn-nav-outline,
    body header#am-header .am-btn-nav-primary,
    body header#am-header .am-btn-nav-outline {
        display: none !important;
    }
    .am-hamburger        { display: flex; }
    .am-mobile-controls  { display: flex; margin-left: 0; }   /* controls are the only visible actions child */
    header#am-header .am-logo-img { max-width: 130px; }
    .am-tier-grid        { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .am-section      { padding: 56px 0; }
    .am-container    { padding: 0 20px; }
    .am-hero         { padding: 60px 0 48px; min-height: min(60vh, 560px); }
    .am-hero-h1      { font-size: clamp(32px, 9vw, 52px); letter-spacing: -0.5px; }
    .am-hero-visual  { display: none; }
    .am-feature-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .am-feature-grid--6 { grid-template-columns: repeat(2, 1fr); }
    .am-counters-grid   { grid-template-columns: repeat(2, 1fr); }
    .am-stats-grid      { grid-template-columns: repeat(2, 1fr); }
    .am-accounts-grid   { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .am-payment-grid    { grid-template-columns: repeat(3, 1fr); }
    .am-platform-grid   { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .am-cta-block       { flex-direction: column; text-align: center; padding: 28px 20px; gap: 20px; }
    .am-cta-left        { flex-direction: column; text-align: center; }
    .am-cta-actions     { justify-content: center; width: 100%; }
    .am-cta-actions .am-btn { flex: 1; justify-content: center; }
    .am-form-row        { grid-template-columns: 1fr; }
    .am-trust-strip     { justify-content: center; }
    .am-section-header  { margin-bottom: 36px; }
    .am-steps-grid      { grid-template-columns: 1fr; }
    .am-portal-cards    { grid-template-columns: 1fr; }
    .am-cta-full        { padding: 64px 20px; }
}

@media (max-width: 480px) {
    .am-hero-ctas { flex-direction: column; }
    .am-hero-ctas .am-btn { width: 100%; justify-content: center; }
    .am-payment-grid { grid-template-columns: repeat(2, 1fr); }
    .am-counters-grid { grid-template-columns: repeat(2, 1fr); }
    .am-counter-item { padding: 28px 14px; }
    /* footer legal nav handled by section 53 */
}

/* ── 34. RTL SUPPORT ─────────────────────────────────────────────── */
[dir="rtl"] .am-header-inner  { flex-direction: row-reverse; }
[dir="rtl"] .am-logo          { flex-direction: row-reverse; }
[dir="rtl"] .am-nav           { flex-direction: row-reverse; }
[dir="rtl"] .am-header-actions { flex-direction: row-reverse; }
[dir="rtl"] .am-hero-eyebrow,
[dir="rtl"] .am-eyebrow,
[dir="rtl"] .am-section-eyebrow { flex-direction: row-reverse; }
[dir="rtl"] .am-hero-grid     { direction: rtl; }
[dir="rtl"] .am-footer-grid   { direction: rtl; }
[dir="rtl"] .am-cta-left      { flex-direction: row-reverse; }
[dir="rtl"] .am-faq-question  { flex-direction: row-reverse; }
[dir="rtl"] .am-mobile-menu   { left: 0; right: auto; transform: translateX(-100%); }
[dir="rtl"] .am-mobile-menu.open { transform: translateX(0); }
[dir="rtl"] .am-mobile-nav-item { border-left: none; border-right: 3px solid transparent; }
[dir="rtl"] .am-mobile-nav-item:hover, [dir="rtl"] .am-mobile-nav-item.active {
    border-right-color: #C9A84C;
    padding-left: 4px;
    padding-right: 8px;
}
[dir="rtl"] body { font-family: 'Tajawal', 'Cairo', 'Noto Sans Arabic', sans-serif; }
[dir="rtl"] .am-section-title,
[dir="rtl"] .am-hero-h1,
[dir="rtl"] .am-card-title,
[dir="rtl"] .am-footer-col-title {
    font-family: 'Tajawal', 'Cairo', sans-serif;
}

/* ── 35. PARTNERS PAGE ─────────────────────────────────────────────── */
.am-partners-hero { position: relative; padding: 80px 0 0; overflow: hidden; min-height: 460px; }
.am-partners-hero-bg { position: absolute; inset: 0; z-index: 0; }
.am-world-map-dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(201,168,76,0.18) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.5;
}
.am-partners-hero-chart {
    position: absolute; right: 5%; top: 100px; width: 360px; opacity: 0.7;
    z-index: 1; pointer-events: none;
}
.am-partners-hero-content { position: relative; z-index: 2; max-width: 680px; }
.am-partners-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; border-radius: 40px;
    background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3);
    color: #C9A84C; font-size: 13px; font-weight: 600; margin-bottom: 20px;
}
.am-partners-hero-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 20px; }
.am-partners-hero-desc { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 32px; max-width: 560px; }
.am-partners-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.am-deal-box {
    display: inline-block; padding: 11px 22px; border-radius: 10px;
    border: 1px solid rgba(201,168,76,0.45); background: rgba(201,168,76,0.07);
    color: #C9A84C; font-size: 12px; font-weight: 700; letter-spacing: 0.8px;
    line-height: 1.5; max-width: 520px;
}
.am-partners-stat-strip { background: rgba(201,168,76,0.04); border-top: 1px solid rgba(201,168,76,0.1); margin-top: 60px; padding: 32px 0; }
.am-partners-stats { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.am-partners-stat { text-align: center; padding: 0 40px; }
.am-partners-stat-value { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.2rem; font-weight: 800; color: #C9A84C; }
.am-partners-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.am-partners-stat-divider { width: 1px; height: 48px; background: rgba(201,168,76,0.15); }
.am-why-partner { background: rgba(255,255,255,0.01); }
.am-partner-benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.am-partner-benefit-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px; padding: 32px 28px; transition: border-color 0.3s, transform 0.3s;
}
.am-partner-benefit-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.am-partner-benefit-card h3 { font-size: 17px; font-weight: 700; margin: 16px 0 10px; }
.am-partner-benefit-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.65; }
.am-commission-tiers { background: rgba(201,168,76,0.02); }
.am-tier-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 24px; }
.am-tier-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px; padding: 36px 28px; position: relative; text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}
.am-tier-card:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-4px); }
.am-tier-featured { border-color: #C9A84C; border-width: 2px; background: rgba(201,168,76,0.05); transform: scale(1.03); box-shadow: 0 0 40px rgba(201,168,76,0.15); }
.am-tier-featured:hover { transform: scale(1.03) translateY(-4px); }
.am-tier-popular-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, #C9A84C, #8B6914);
    color: #000; font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
    padding: 4px 14px; border-radius: 40px;
}
.am-tier-badge { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #C9A84C; margin-bottom: 8px; }
.am-tier-badge-gold { color: #C9A84C; }
.am-tier-volume { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.am-tier-rate { margin-bottom: 28px; }
.am-tier-amount { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 34px; font-weight: 800; color: #C9A84C; }
.am-tier-per { font-size: 14px; color: rgba(255,255,255,0.5); margin-left: 4px; }
.am-tier-perks { text-align: left; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.am-tier-perks li { font-size: 14px; color: rgba(255,255,255,0.75); padding-left: 18px; position: relative; }
.am-tier-perks li::before { content: '✓'; position: absolute; left: 0; color: #C9A84C; font-weight: 700; }
.am-how-it-works { }
.am-steps { display: flex; align-items: flex-start; gap: 0; flex-wrap: wrap; }
.am-step { display: flex; align-items: flex-start; gap: 20px; flex: 1; min-width: 200px; padding: 28px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; }
.am-step-number { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.5rem; font-weight: 800; color: rgba(201,168,76,0.15); line-height: 1; flex-shrink: 0; }
.am-step-content h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.am-step-content p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.am-step-icon { margin-left: auto; color: rgba(201,168,76,0.4); flex-shrink: 0; }
.am-step-connector { width: 32px; height: 2px; background: rgba(201,168,76,0.2); align-self: center; flex-shrink: 0; }
.am-ib-who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.am-ib-who-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 28px; transition: border-color 0.3s; }
.am-ib-who-card:hover { border-color: rgba(201,168,76,0.2); }
.am-ib-who-icon { color: rgba(201,168,76,0.6); margin-bottom: 16px; }
.am-ib-who-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.am-ib-who-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.65; }
.am-partners-cta { position: relative; }
.am-partners-cta-inner {
    position: relative; overflow: hidden; border-radius: 24px;
    background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(10,10,20,0.8) 100%);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 72px 60px; text-align: center;
}
.am-partners-cta-decoration { position: absolute; inset: 0; pointer-events: none; }
.am-cta-glow-orb { position: absolute; top: 50%; left: 50%; width: 400px; height: 400px; transform: translate(-50%,-50%); background: radial-gradient(ellipse, rgba(201,168,76,0.08), transparent 70%); }
.am-cta-lines { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.6; }
.am-partners-cta-content { position: relative; z-index: 2; }
.am-partners-cta-badge { display: inline-block; padding: 6px 18px; border-radius: 40px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); color: #C9A84C; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px; }
.am-partners-cta-content h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; margin-bottom: 16px; }
.am-partners-cta-content p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.am-partners-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.am-partners-cta-footnote { font-size: 13px; color: rgba(255,255,255,0.4); }

/* ── 36. ABOUT PAGE ─────────────────────────────────────────────────── */
.am-about-hero { position: relative; padding: 88px 0 64px; overflow: hidden; }
.am-about-hero-bg { position: absolute; inset: 0; z-index: 0; }
.am-about-hero-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; text-align: center; }
.am-about-hero-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.4px; margin: 12px 0 20px; }
.am-about-hero-desc { font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.7; }
.am-mission-vision { background: rgba(255,255,255,0.01); }
.am-mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.am-mv-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 20px; padding: 40px; }
.am-mv-icon { color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.am-mv-icon-gold { color: #C9A84C; }
.am-mv-card h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.6rem; font-weight: 800; margin-bottom: 14px; }
.am-mv-card p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.7; }
.am-about-stats { background: rgba(201,168,76,0.03); border-top: 1px solid rgba(201,168,76,0.08); border-bottom: 1px solid rgba(201,168,76,0.08); }
.am-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.am-stat-card { text-align: center; padding: 40px 20px; }
.am-stat-number { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.6rem; font-weight: 800; color: #C9A84C; }
.am-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 6px; }
.am-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.am-value-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 28px; position: relative; transition: border-color 0.3s; }
.am-value-card:hover { border-color: rgba(201,168,76,0.2); }
.am-value-number { position: absolute; top: 16px; right: 20px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.5rem; font-weight: 800; color: rgba(201,168,76,0.07); }
.am-value-card h3 { font-size: 16px; font-weight: 700; margin: 16px 0 10px; }
.am-value-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.65; }
.am-about-why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.am-about-why-text h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.am-about-why-text p { color: rgba(255,255,255,0.7); margin-bottom: 24px; line-height: 1.7; }
.am-about-why-list { display: flex; flex-direction: column; gap: 12px; }
.am-about-why-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.8); padding-left: 22px; position: relative; }
.am-about-why-list li::before { content: '✓'; position: absolute; left: 0; color: #C9A84C; font-weight: 700; }
.am-about-why-visual svg { width: 100%; height: auto; }
.am-compliance-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.am-compliance-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 28px; }
.am-compliance-card h3 { font-size: 15px; font-weight: 700; margin: 14px 0 10px; }
.am-compliance-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ── 37. TRADING PRODUCTS PAGE ──────────────────────────────────────── */
.am-tp-hero { position: relative; padding: 80px 0 0; overflow: hidden; }
.am-tp-hero-bg { position: absolute; inset: 0; z-index: 0; }
.am-tp-hero-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; text-align: center; }
.am-tp-hero-content h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.5px; margin: 12px 0 20px; }
.am-tp-hero-content p { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 28px; }
.am-tp-hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.am-tp-ticker-wrap { position: relative; z-index: 2; margin-top: 48px; border-top: 1px solid rgba(201,168,76,0.1); }
.am-tp-cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.am-tp-cat-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 28px; transition: border-color 0.3s, transform 0.3s; }
.am-tp-cat-card:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-4px); }
.am-tp-cat-icon { color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.am-tp-cat-icon-gold { color: #C9A84C; }
.am-tp-cat-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.am-tp-cat-count { font-size: 12px; color: #C9A84C; margin-bottom: 12px; font-weight: 600; }
.am-tp-cat-card > p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 16px; }
.am-tp-cat-specs { display: flex; flex-direction: column; gap: 6px; }
.am-tp-cat-specs span { font-size: 12px; color: rgba(201,168,76,0.8); background: rgba(201,168,76,0.07); padding: 3px 8px; border-radius: 4px; display: inline-block; width: fit-content; }
.am-conditions-table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid rgba(255,255,255,0.07); }
.am-conditions-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.am-conditions-table th { background: rgba(201,168,76,0.08); color: rgba(255,255,255,0.7); font-weight: 600; font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase; padding: 14px 16px; text-align: left; white-space: nowrap; }
.am-conditions-table td { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.04); color: rgba(255,255,255,0.85); vertical-align: middle; }
.am-conditions-table tbody tr:hover td { background: rgba(201,168,76,0.03); }
.am-conditions-table tbody tr:last-child td { border-bottom: none; }
.am-instr-name { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.am-instr-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.am-dot-forex { background: #C9A84C; }
.am-dot-metals { background: #F5D485; }
.am-dot-crypto { background: #A89B70; }
.am-dot-indices { background: #B8892C; }
.am-cat-badge { font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 4px; }
.am-cat-forex { background: rgba(201,168,76,0.15); color: #C9A84C; }
.am-cat-metals { background: rgba(245,212,133,0.15); color: #F5D485; }
.am-cat-crypto { background: rgba(168,155,112,0.15); color: #A89B70; }
.am-cat-indices { background: rgba(184,137,44,0.15); color: #B8892C; }
.am-conditions-note { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 16px; font-style: italic; }
.am-tv-market-wrap { border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.07); }

/* ── 38. ACCOUNT TYPES PAGE ─────────────────────────────────────────── */
.am-acct-hero { position: relative; padding: 80px 0 48px; overflow: hidden; text-align: center; }
.am-acct-hero-bg { position: absolute; inset: 0; z-index: 0; }
.am-acct-hero-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.am-acct-hero-content h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.5px; margin: 12px 0 20px; }
.am-acct-hero-content p { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.7; }
.am-acct-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.am-acct-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 20px; padding: 32px 24px; position: relative; transition: border-color 0.3s, transform 0.3s; display: flex; flex-direction: column; }
.am-acct-card:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-4px); }
.am-acct-featured { border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.04); }
.am-acct-popular-tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #C9A84C, #8B6914); color: #000; font-size: 10px; font-weight: 800; letter-spacing: 1.5px; padding: 4px 14px; border-radius: 40px; white-space: nowrap; }
.am-acct-card-header { text-align: center; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.am-acct-badge { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.am-acct-badge-gold { color: #C9A84C; }
.am-acct-tag { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.am-acct-dep-label { display: block; font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.am-acct-dep-value { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2rem; font-weight: 800; color: #FFFFFF; }
.am-acct-features { flex: 1; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.am-acct-features li { display: flex; justify-content: space-between; align-items: center; font-size: 13px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.am-acct-features li:last-child { border-bottom: none; padding-bottom: 0; }
.am-acct-feature-label { color: rgba(255,255,255,0.5); }
.am-acct-features strong { color: #FFFFFF; font-weight: 600; }
.am-comparison-table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid rgba(255,255,255,0.07); }
.am-comparison-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.am-comparison-table th { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.7); font-weight: 600; font-size: 13px; padding: 16px 20px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.08); }
.am-comparison-table td { padding: 13px 20px; border-bottom: 1px solid rgba(255,255,255,0.04); text-align: center; color: rgba(255,255,255,0.8); }
.am-comparison-table td:first-child { text-align: left; color: rgba(255,255,255,0.5); font-size: 13px; }
.am-col-featured { background: rgba(201,168,76,0.04); }
.am-comparison-table .am-col-featured { font-weight: 600; color: #FFFFFF; }
.am-check { color: #C9A84C; font-size: 16px; }
.am-dash { color: rgba(255,255,255,0.2); }
.am-comparison-cta-row td { padding: 16px 20px; border-bottom: none; }
.am-swap-free-card { background: rgba(201,168,76,0.04); border: 1px solid rgba(201,168,76,0.18); border-radius: 16px; padding: 32px; display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.am-swap-free-icon { color: #C9A84C; flex-shrink: 0; }
.am-swap-free-text { flex: 1; }
.am-swap-free-text h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.am-swap-free-text p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.65; }

/* ── 39. PLATFORMS PAGE ─────────────────────────────────────────────── */
.am-plat-hero { position: relative; padding: 80px 0 60px; overflow: hidden; }
.am-plat-hero-bg { position: absolute; inset: 0; z-index: 0; }
.am-plat-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.am-plat-hero-text h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.4px; margin: 12px 0 20px; }
.am-plat-hero-text p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 32px; }
.am-plat-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Device mockup container */
.am-plat-hero-device {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.am-plat-device-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}
.am-plat-device-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 580px;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    filter: drop-shadow(0 32px 64px rgba(0,0,0,0.6)) drop-shadow(0 0 40px rgba(201,168,76,0.08));
}
.am-plat-window-bar { display: flex; align-items: center; gap: 12px; padding: 10px 16px; background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.06); }
.am-plat-window-dots { display: flex; gap: 6px; }
.am-plat-window-dots span { width: 10px; height: 10px; border-radius: 50%; }
.am-plat-window-dots span:nth-child(1) { background: #ff5f57; }
.am-plat-window-dots span:nth-child(2) { background: #febc2e; }
.am-plat-window-dots span:nth-child(3) { background: #28c840; }
.am-plat-window-title { font-size: 11px; color: rgba(255,255,255,0.4); margin-left: 8px; }
.am-plat-download-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.am-plat-download-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 32px 24px; text-align: center; transition: border-color 0.3s, transform 0.3s; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.am-plat-download-card:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-4px); }
.am-plat-dl-icon { margin-bottom: 4px; }
.am-plat-download-card h3 { font-size: 17px; font-weight: 700; }
.am-plat-download-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; flex: 1; }
.am-plat-dl-specs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.am-plat-dl-specs span { font-size: 11px; color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.04); padding: 3px 8px; border-radius: 4px; }
.am-plat-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.am-plat-feat-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 24px; }
.am-plat-feat-card h3 { font-size: 15px; font-weight: 700; margin: 14px 0 8px; }
.am-plat-feat-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ── 40. FUNDING PAGE ───────────────────────────────────────────────── */
.am-funding-hero { position: relative; padding: 80px 0 48px; overflow: hidden; text-align: center; }
.am-funding-hero-bg { position: absolute; inset: 0; z-index: 0; }
.am-funding-hero-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.am-funding-hero-content h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.5px; margin: 12px 0 20px; }
.am-funding-hero-content p { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.7; }
.am-notice-strip-success { background: rgba(201,168,76,0.07); border-color: rgba(201,168,76,0.25); color: rgba(255,255,255,0.8); }
.am-notice-strip-success svg { color: #C9A84C; }
.am-payment-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.am-payment-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 28px 16px 20px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}
.am-payment-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.04) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.am-payment-card:hover {
    border-color: rgba(201,168,76,0.3);
    background: rgba(255,255,255,0.04);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.am-payment-card:hover::before { opacity: 1; }
.am-payment-logo { height: 48px; width: 100%; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.am-payment-logo svg { max-height: 40px; max-width: 96px; display: block; }
.am-payment-card h3 { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.88); }
.am-payment-meta { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.am-payment-time { font-size: 11px; background: rgba(201,168,76,0.1); color: #C9A84C; padding: 2px 8px; border-radius: 4px; font-weight: 600; }
.am-payment-fee { font-size: 11px; background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.5); padding: 2px 8px; border-radius: 4px; }
.am-payment-limits span { font-size: 11px; color: rgba(255,255,255,0.35); }
.am-steps-horizontal { flex-direction: row; }
.am-funding-security { background: #0B0C15; }
.am-funding-security-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.am-funding-sec-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 28px; transition: border-color 0.3s, transform 0.3s, background 0.3s; }
.am-funding-sec-card:hover { border-color: rgba(201,168,76,0.22); background: rgba(255,255,255,0.035); transform: translateY(-3px); }
.am-funding-sec-card h3 { font-size: 15px; font-weight: 700; margin: 14px 0 10px; }
.am-funding-sec-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ── 41. CONTACT PAGE ───────────────────────────────────────────────── */
.am-contact-hero { position: relative; padding: 80px 0 48px; overflow: hidden; text-align: center; }
.am-contact-hero-bg { position: absolute; inset: 0; z-index: 0; }
.am-contact-hero-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.am-contact-hero-content h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.5px; margin: 12px 0 20px; }
.am-contact-hero-content p { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.7; }
.am-contact-methods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.am-contact-method-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 20px; padding: 36px 28px; text-align: center; transition: border-color 0.3s; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.am-contact-method-card:hover { border-color: rgba(201,168,76,0.25); }
.am-contact-method-card h3 { font-size: 18px; font-weight: 700; }
.am-contact-method-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; flex: 1; }
.am-contact-availability { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.5); }
.am-online-dot { width: 8px; height: 8px; border-radius: 50%; background: #38c172; flex-shrink: 0; animation: onlinePulse 2s ease-in-out infinite; }
@keyframes onlinePulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.am-contact-form-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.am-contact-form-info h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.am-contact-form-info p { color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 32px; }
.am-contact-office h4, .am-contact-social h4 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #C9A84C; margin-bottom: 12px; }
.am-contact-office address { font-style: normal; font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 28px; }
.am-contact-social-links { display: flex; gap: 12px; }
.am-contact-social-link { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: background 0.2s, color 0.2s, border-color 0.2s; }
.am-contact-social-link:hover { background: rgba(201,168,76,0.1); color: #C9A84C; border-color: rgba(201,168,76,0.3); }
.am-contact-form-wrap { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07); border-radius: 20px; padding: 36px; }
.am-contact-form .am-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.am-form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.am-form-group label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); }
.am-form-group input, .am-form-group select, .am-form-group textarea {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; padding: 12px 16px; color: #fff; font-size: 14px; font-family: inherit;
    transition: border-color 0.2s, background 0.2s; outline: none; width: 100%;
}
.am-form-group select option { background: #1a1a2e; color: #fff; }
.am-form-group input:focus, .am-form-group select:focus, .am-form-group textarea:focus { border-color: rgba(201,168,76,0.5); background: rgba(255,255,255,0.07); }
.am-form-group textarea { resize: vertical; min-height: 120px; }
.am-form-consent { margin-bottom: 20px; }
.am-checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.6); cursor: pointer; line-height: 1.5; }
.am-checkbox-label input { flex-shrink: 0; margin-top: 2px; accent-color: #C9A84C; }
.am-form-message { padding: 12px 16px; border-radius: 8px; font-size: 14px; font-weight: 600; margin-top: 12px; }
.am-contact-faq-header { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; margin-bottom: 32px; }
.am-contact-faq-header h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.8rem; font-weight: 800; }
.am-contact-faq-header p { color: rgba(255,255,255,0.6); flex: 1; }
.am-contact-faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.am-contact-faq-item { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 24px; }
.am-contact-faq-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.am-contact-faq-item p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ── 42. FAQ PAGE ───────────────────────────────────────────────────── */
.am-faq-hero { position: relative; padding: 80px 0 48px; overflow: hidden; text-align: center; }
.am-faq-hero-bg { position: absolute; inset: 0; z-index: 0; }
.am-faq-hero-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.am-faq-hero-content h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.5px; margin: 12px 0 20px; }
.am-faq-hero-content p { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 28px; }
.am-faq-search-wrap { display: inline-flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 50px; padding: 12px 24px; width: 100%; max-width: 480px; }
.am-faq-search-wrap svg { color: rgba(255,255,255,0.3); flex-shrink: 0; }
#am-faq-search { background: none; border: none; color: #fff; font-size: 15px; outline: none; flex: 1; font-family: inherit; }
#am-faq-search::placeholder { color: rgba(255,255,255,0.3); }
.am-faq-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.am-faq-filter { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 50px; padding: 8px 18px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6); cursor: pointer; transition: all 0.2s; font-family: inherit; }
.am-faq-filter.active, .am-faq-filter:hover { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.4); color: #C9A84C; }
.am-faq-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 48px; }
.am-faq-item { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; overflow: hidden; transition: border-color 0.3s; }
.am-faq-item:hover { border-color: rgba(201,168,76,0.2); }
.am-faq-item.open { border-color: rgba(201,168,76,0.3); }
.am-faq-question { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; cursor: pointer; background: none; border: none; width: 100%; text-align: left; color: #fff; font-size: 15px; font-weight: 600; font-family: inherit; }
.am-faq-icon { flex-shrink: 0; color: rgba(201,168,76,0.6); transition: transform 0.3s; }
.am-faq-item.open .am-faq-icon { transform: rotate(180deg); }
.am-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.am-faq-item.open .am-faq-answer { max-height: 400px; }
.am-faq-answer p { padding: 0 24px 20px; font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; }
.am-faq-cta { text-align: center; padding: 48px 20px; background: rgba(255,255,255,0.02); border-radius: 20px; border: 1px solid rgba(255,255,255,0.06); }
.am-faq-cta h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.6rem; font-weight: 800; margin-bottom: 10px; }
.am-faq-cta p { color: rgba(255,255,255,0.6); margin-bottom: 24px; }

/* ── 43. LEGAL PAGE ─────────────────────────────────────────────────── */
.am-legal-hero { position: relative; padding: 80px 0 48px; text-align: center; overflow: hidden; }
.am-legal-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center top, rgba(201,168,76,0.06) 0%, transparent 60%); pointer-events: none; }
.am-legal-hero h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.5px; margin: 10px 0 14px; }
.am-legal-hero p { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 540px; margin: 0 auto 10px; }
.am-legal-updated { font-size: 12px; color: rgba(255,255,255,0.35); }
.am-legal-layout { display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: start; }
.am-legal-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 4px; }
.am-legal-nav-item { display: block; padding: 10px 14px; border-radius: 8px; font-size: 13px; color: rgba(255,255,255,0.5); border-left: 2px solid transparent; transition: all 0.2s; }
.am-legal-nav-item:hover { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.03); }
.am-legal-nav-item.active { color: #C9A84C; border-left-color: #C9A84C; background: rgba(201,168,76,0.05); }
.am-legal-content { min-width: 0; }
.am-legal-section { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.am-legal-section:last-of-type { border-bottom: none; }
.am-legal-section h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.4rem; font-weight: 800; margin-bottom: 16px; color: #FFFFFF; }
.am-legal-section p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 14px; }
.am-legal-section ul { display: flex; flex-direction: column; gap: 10px; padding-left: 20px; }
.am-legal-section ul li { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.65; list-style: disc; }
.am-legal-risk-banner { background: rgba(229,62,62,0.08); border: 1px solid rgba(229,62,62,0.25); border-radius: 12px; padding: 16px 20px; display: flex; gap: 14px; align-items: flex-start; margin-bottom: 36px; }
.am-legal-risk-banner svg { color: #E53E3E; flex-shrink: 0; margin-top: 2px; }
.am-legal-risk-banner p { margin: 0; font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.65; font-weight: 500; }
.am-legal-related { margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06); }
.am-legal-related h4 { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 14px; }
.am-legal-related-links { display: flex; flex-wrap: wrap; gap: 10px; }
.am-legal-related-links a { font-size: 13px; color: rgba(201,168,76,0.7); border: 1px solid rgba(201,168,76,0.2); padding: 5px 12px; border-radius: 6px; transition: all 0.2s; }
.am-legal-related-links a:hover { color: #C9A84C; border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.05); }

/* ── 44. CAREERS PAGE ───────────────────────────────────────────────── */
.am-page-careers { background: #050508; }
.am-careers-hero { position: relative; min-height: min(72vh, 640px); display: flex; align-items: center; overflow: hidden; padding: 72px 0 56px; }
.am-starfield { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.am-careers-bg { position: absolute; inset: 0; pointer-events: none; }
.am-careers-orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.am-careers-orb-1 { width: 500px; height: 500px; top: -100px; left: -100px; background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%); }
.am-careers-orb-2 { width: 400px; height: 400px; bottom: -80px; right: -80px; background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%); }
.am-careers-grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.02) 1px, transparent 1px); background-size: 56px 56px; }
.am-careers-content { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto; }
.am-careers-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 18px; border-radius: 40px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); color: #C9A84C; font-size: 13px; font-weight: 700; margin-bottom: 24px; }
.am-careers-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #C9A84C; animation: onlinePulse 2s ease-in-out infinite; }
.am-careers-logo-anim { margin-bottom: 28px; animation: careersLogoPulse 3s ease-in-out infinite; }
@keyframes careersLogoPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.04)} }
.am-careers-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(3rem, 7vw, 5rem); font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.am-careers-subtitle { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 48px; max-width: 520px; margin-left: auto; margin-right: auto; }
.am-careers-notify { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 36px; max-width: 480px; margin: 0 auto; }
.am-careers-notify h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.am-notify-form { }
.am-notify-input-group { display: flex; gap: 10px; margin-bottom: 12px; }
.am-notify-input-group input { flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 12px 16px; color: #fff; font-size: 14px; font-family: inherit; outline: none; }
.am-notify-input-group input:focus { border-color: rgba(201,168,76,0.4); }
.am-notify-msg { font-size: 13px; min-height: 20px; }
.am-notify-privacy { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 10px; }
.am-culture-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.am-culture-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 28px; transition: border-color 0.3s; }
.am-culture-card:hover { border-color: rgba(201,168,76,0.2); }
.am-culture-card h3 { font-size: 16px; font-weight: 700; margin: 14px 0 10px; }
.am-culture-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.65; }
.am-careers-contact { text-align: center; margin-top: 40px; }
.am-careers-contact p { color: rgba(255,255,255,0.6); margin-bottom: 16px; }

/* ── 45. OPEN ACCOUNT PAGE ──────────────────────────────────────────── */
.am-open-account-section { position: relative; padding: 80px 0 64px; overflow: hidden; }
.am-open-account-bg { position: absolute; inset: 0; z-index: 0; }
.am-open-account-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.am-open-account-benefits h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.2; margin: 12px 0 18px; }
.am-open-account-benefits > p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 28px; }
.am-open-account-perks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.am-open-account-perks li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.8); }
.am-open-account-perks li svg { color: #C9A84C; flex-shrink: 0; }
.am-open-account-steps { display: flex; align-items: center; gap: 0; margin-bottom: 28px; }
.am-oastep { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; }
.am-oastep-num { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.4); }
.am-oastep.active .am-oastep-num { background: rgba(201,168,76,0.15); border-color: #C9A84C; color: #C9A84C; }
.am-oastep span { font-size: 10px; color: rgba(255,255,255,0.4); text-align: center; }
.am-oastep-line { flex: 1; height: 1.5px; background: rgba(255,255,255,0.08); }
.am-open-account-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.am-open-account-form-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 36px; }
.am-open-account-form-card h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem; font-weight: 800; margin-bottom: 4px; }
.am-open-account-form-card > p { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
.am-open-account-login-link { text-align: center; font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 16px; }
.am-open-account-login-link a { color: #C9A84C; text-decoration: underline; }

/* ── 46. CLIENT PORTAL PAGE ─────────────────────────────────────────── */
.am-portal-section { padding: 80px 0 64px; }
.am-portal-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.am-portal-header h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 6px; }
.am-portal-header p { color: rgba(255,255,255,0.6); font-size: 14px; }
.am-portal-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.am-portal-stat-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; padding: 20px; display: flex; align-items: center; gap: 14px; }
.am-portal-stat-icon { color: rgba(201,168,76,0.6); flex-shrink: 0; }
.am-portal-stat-label { display: block; font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.am-portal-stat-value { font-size: 16px; font-weight: 700; color: rgba(255,255,255,0.6); }
.am-portal-stat-active { color: #C9A84C; }
.am-portal-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.am-portal-action-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 28px; display: flex; flex-direction: column; gap: 10px; transition: border-color 0.3s; }
.am-portal-action-card:hover { border-color: rgba(201,168,76,0.2); }
.am-portal-action-icon { color: rgba(201,168,76,0.5); }
.am-portal-action-card h3 { font-size: 15px; font-weight: 700; }
.am-portal-action-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.55; flex: 1; }
.am-portal-ib-notice { background: rgba(201,168,76,0.05); border: 1px solid rgba(201,168,76,0.15); border-radius: 12px; padding: 14px 20px; display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.6); }
.am-portal-ib-notice a { color: #C9A84C; font-weight: 600; }
.am-portal-login-section { position: relative; padding: 80px 0 64px; overflow: hidden; }
.am-portal-login-bg { position: absolute; inset: 0; z-index: 0; }
.am-portal-login-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.am-portal-login-info h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.2; margin: 12px 0 18px; }
.am-portal-login-info p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 28px; }
.am-portal-login-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.am-portal-login-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 36px; }
.am-portal-login-card h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem; font-weight: 800; margin-bottom: 20px; }
.am-portal-login-links { display: flex; gap: 12px; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 16px; }
.am-portal-login-links a { color: #C9A84C; }
.am-btn-full { width: 100%; text-align: center; justify-content: center; }
.am-btn-gold { border-color: rgba(201,168,76,0.5); color: #C9A84C; }
.am-btn-gold:hover { background: rgba(201,168,76,0.1); border-color: #C9A84C; }

/* ── 47. SHARED HERO BACKGROUND HELPERS ─────────────────────────────── */
.am-hero-glow {
    position: absolute; top: -20%; left: 50%; width: 800px; height: 600px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.07) 0%, transparent 60%);
    pointer-events: none;
}
.am-hero-grid-lines {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
}

/* ── 48. RESPONSIVE — NEW PAGES ─────────────────────────────────────── */
@media (max-width: 1200px) {
    .am-tier-cards { grid-template-columns: repeat(3, 1fr); }
    .am-partner-benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .am-ib-who-grid { grid-template-columns: repeat(2, 1fr); }
    .am-acct-cards { grid-template-columns: repeat(2, 1fr); }
    .am-tp-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .am-plat-download-grid { grid-template-columns: repeat(3, 1fr); }
    .am-payment-grid { grid-template-columns: repeat(5, 1fr); }
    .am-portal-stats { grid-template-columns: repeat(2, 1fr); }
    .am-portal-actions { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
    .am-plat-hero-inner { grid-template-columns: 1fr; }
    .am-plat-hero-device { max-width: 420px; margin: 0 auto; }
    .am-plat-device-img { max-width: 420px; }
    .am-about-why-inner { grid-template-columns: 1fr; }
    .am-about-why-visual { display: none; }
    .am-mv-grid { grid-template-columns: 1fr; }
    .am-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .am-values-grid { grid-template-columns: repeat(2, 1fr); }
    .am-compliance-grid { grid-template-columns: repeat(2, 1fr); }
    .am-plat-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .am-contact-form-inner { grid-template-columns: 1fr; }
    .am-legal-layout { grid-template-columns: 1fr; }
    .am-legal-sidebar { position: static; display: none; }
    .am-open-account-inner { grid-template-columns: 1fr; }
    .am-portal-login-inner { grid-template-columns: 1fr; }
    .am-partners-hero-chart { display: none; }
    .am-steps { flex-direction: column; }
    .am-step-connector { display: none; }
}
@media (max-width: 768px) {
    .am-tier-cards { grid-template-columns: 1fr; }
    .am-tier-featured { transform: none; box-shadow: 0 0 40px rgba(201,168,76,0.15); }
    .am-tier-featured:hover { transform: translateY(-4px); }
    .am-partner-benefits-grid { grid-template-columns: 1fr; }
    .am-ib-who-grid { grid-template-columns: 1fr; }
    .am-acct-cards { grid-template-columns: 1fr; }
    .am-tp-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .am-plat-download-grid { grid-template-columns: repeat(2, 1fr); }
    .am-payment-grid { grid-template-columns: repeat(2, 1fr); }
    .am-funding-security-grid { grid-template-columns: 1fr; }
    .am-contact-methods-grid { grid-template-columns: 1fr; }
    .am-contact-faq-grid { grid-template-columns: 1fr; }
    .am-portal-stats { grid-template-columns: repeat(2, 1fr); }
    .am-portal-actions { grid-template-columns: repeat(2, 1fr); }
    .am-partners-stat-strip { overflow-x: auto; }
    .am-partners-stats { gap: 0; justify-content: flex-start; }
    .am-partners-hero-ctas { flex-direction: column; }
    .am-partners-cta-inner { padding: 48px 28px; }
    .am-culture-grid { grid-template-columns: 1fr; }
    .am-notify-input-group { flex-direction: column; }
    .am-contact-form .am-form-row { grid-template-columns: 1fr; }
    .am-swap-free-card { flex-direction: column; text-align: center; }
    .am-plat-feature-grid { grid-template-columns: 1fr; }
    .am-values-grid { grid-template-columns: 1fr; }
    .am-compliance-grid { grid-template-columns: 1fr; }
    .am-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .am-tp-cat-grid { grid-template-columns: 1fr; }
    .am-payment-grid { grid-template-columns: repeat(2, 1fr); }
    .am-plat-download-grid { grid-template-columns: 1fr; }
    .am-portal-actions { grid-template-columns: 1fr; }
    .am-portal-stats { grid-template-columns: 1fr; }
    .am-careers-title { font-size: 2.8rem; }
    .am-partners-stat { padding: 0 20px; }
    .am-partners-stat-divider { display: none; }
}

/* ── 49. RTL — NEW PAGES ─────────────────────────────────────────────── */
[dir="rtl"] .am-partners-hero-chart { right: auto; left: 5%; transform: scaleX(-1); }
[dir="rtl"] .am-about-why-inner { direction: rtl; }
[dir="rtl"] .am-legal-nav-item { border-left: none; border-right: 2px solid transparent; padding-left: 14px; padding-right: 14px; }
[dir="rtl"] .am-legal-nav-item.active { border-right-color: #C9A84C; }
[dir="rtl"] .am-tier-perks li { padding-left: 0; padding-right: 18px; }
[dir="rtl"] .am-tier-perks li::before { left: auto; right: 0; }
[dir="rtl"] .am-about-why-list li { padding-left: 0; padding-right: 22px; }
[dir="rtl"] .am-about-why-list li::before { left: auto; right: 0; }
[dir="rtl"] .am-open-account-perks li { flex-direction: row-reverse; }
[dir="rtl"] .am-value-number { right: auto; left: 20px; }
[dir="rtl"] .am-faq-question { flex-direction: row-reverse; }
[dir="rtl"] .am-acct-features li { flex-direction: row-reverse; }

/* ── END ─────────────────────────────────────────────────────────── */

/* ── 50. PREMIUM POLISH — Typography, Risk Warning, Visual ───────── */

/* Hero H1 — premium refinement for Plus Jakarta Sans */
.am-hero-h1 {
    font-size: clamp(36px, 4.8vw, 66px);
    line-height: 1.06;
    letter-spacing: -0.7px;
}
.am-hero-h1 .gold {
    line-height: 1.1;
    margin-top: 2px;
}

/* Section titles — refined tracking for Plus Jakarta Sans */
.am-section-title {
    letter-spacing: -0.3px;
}

/* Feature cards — larger icon, more breathing room */
.am-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
}

/* Counter values — financial display style */
.am-counter-value {
    letter-spacing: -0.5px;
}

/* Hero subtitle refinement */
.am-hero-sub {
    font-size: 16.5px;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}

/* Trust strip items — more visible */
.am-trust-item span {
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* Section eyebrow — stronger presence */
.am-eyebrow, .am-section-eyebrow, .am-hero-eyebrow {
    font-size: 11px;
    letter-spacing: 3.5px;
    font-weight: 700;
}

/* Feature title — slightly larger */
.am-feature-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.2px;
}
.am-feature-desc {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255,255,255,0.38);
}

/* Account card min dep — stronger */
.am-account-min-dep {
    font-size: clamp(28px, 3vw, 36px);
}

/* ── 51. OPERA MOBILE DESKTOP MODE — OVERFLOW FIX ───────────────── */
html { overflow-x: hidden; }

/* Ensure testimonials track cannot expand document width */
.am-testimonials-section,
[id="testimonials-section"] { overflow: hidden; max-width: 100%; }

/* Hero glow — explicit containment */
.am-hero-bg { overflow: hidden; }

/* ── 52. RISK ACKNOWLEDGEMENT MODAL ─────────────────────────────── */
.am-risk-modal {
    position: fixed;
    inset: 0;
    z-index: 999998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: opacity 0.5s ease;
}
.am-risk-modal.am-risk-modal--hidden {
    opacity: 0;
    pointer-events: none;
}
.am-risk-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2,3,8,0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.am-risk-modal-card {
    position: relative;
    z-index: 1;
    background: #0B0C17;
    border: 1px solid rgba(201,168,76,0.30);
    border-radius: 20px;
    padding: 44px 44px 40px;
    max-width: 640px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow:
        0 0 0 1px rgba(201,168,76,0.06) inset,
        0 40px 80px rgba(0,0,0,0.70),
        0 0 100px rgba(201,168,76,0.06);
}
.am-risk-modal-card::-webkit-scrollbar { width: 4px; }
.am-risk-modal-card::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); border-radius: 4px; }
.am-risk-modal-card::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.30); border-radius: 4px; }
.am-risk-modal-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}
.am-risk-modal-logo img { height: 36px; width: auto; display: block; }
.am-risk-modal-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    color: #C9A84C;
}
.am-risk-modal-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    color: #FFFFFF;
    text-align: center;
    margin: 0 0 24px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}
.am-risk-modal-text {
    background: rgba(201,168,76,0.04);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 12px;
    padding: 20px 22px;
    margin-bottom: 28px;
}
.am-risk-modal-text p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin: 0;
}
.am-risk-modal-check-label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    margin-bottom: 28px;
    padding: 16px 18px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    transition: border-color 0.2s, background 0.2s;
}
.am-risk-modal-check-label:hover {
    border-color: rgba(201,168,76,0.25);
    background: rgba(201,168,76,0.03);
}
.am-risk-modal-check { display: none; }
.am-risk-modal-check-box {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 1.5px solid rgba(201,168,76,0.45);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    transition: background 0.2s, border-color 0.2s;
    color: transparent;
}
.am-risk-modal-check:checked + .am-risk-modal-check-box {
    background: #C9A84C;
    border-color: #C9A84C;
    color: #07080E;
}
.am-risk-modal-check-text {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}
.am-risk-modal-btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #B8892C, #D4A840, #ECC94A);
    color: #07080E;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: opacity 0.25s, transform 0.2s;
    text-align: center;
}
.am-risk-modal-btn:not([disabled]):hover {
    opacity: 0.90;
    transform: translateY(-1px);
}
.am-risk-modal-btn[disabled] {
    opacity: 0.35;
    cursor: not-allowed;
    filter: grayscale(0.5);
}

/* ── 53. FOOTER RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1100px) {
    .am-footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        gap: 32px;
    }
    .am-footer-col:last-child { display: none; }
}
@media (max-width: 900px) {
    .am-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .am-footer-brand { grid-column: 1 / -1; padding-right: 0; }
    .am-footer-col:last-child { display: block; }
    .am-footer-desc { max-width: 100%; }
    .am-footer-risk-card { padding: 28px 24px; }
    .am-footer-risk-body { padding-left: 0; margin-top: 16px; }
    .am-footer-risk-card-header { margin-bottom: 0; }
}
@media (max-width: 600px) {
    .am-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .am-footer-risk-card { padding: 24px 18px; border-radius: 14px; }
    .am-footer-risk-icon { width: 42px; height: 42px; }
    .am-footer-risk-heading { font-size: 14px; letter-spacing: 2px; }
    .am-footer-legal-nav { gap: 4px 2px; }
    .am-footer-legal-sep { display: none; }
    .am-footer-legal-link { padding: 4px 8px; }
}
@media (max-width: 480px) {
    .am-footer-grid { grid-template-columns: 1fr; }
    .am-footer-main { padding: 48px 0 36px; }
    .am-risk-modal-card { padding: 28px 20px 24px; border-radius: 16px; }
    .am-footer-bottom-section { padding: 24px 0 28px; }
}

/* ── 53. FOOTER RTL ──────────────────────────────────────────────── */
[dir="rtl"] .am-footer-risk-body { padding-left: 0; padding-right: 66px; }
[dir="rtl"] .am-footer-brand { padding-right: 0; padding-left: 12px; }
@media (max-width: 900px) {
    [dir="rtl"] .am-footer-risk-body { padding-right: 0; }
}

/* ══════════════════════════════════════════════════════════════════
   54. MASTER POLISH PASS — Typography, Cards, Heroes, Interactions
   ══════════════════════════════════════════════════════════════════ */

/* ── Typography system refinement ────────────────────────────────── */

/* Inner page H1 — consistent with homepage quality */
.am-about-hero-title,
.am-acct-hero-content h1,
.am-tp-hero-content h1,
.am-plat-hero-text h1,
.am-open-account-benefits h1,
.am-portal-login-info h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.4px;
    line-height: 1.1;
    margin: 12px 0 18px;
}

/* Inner page hero subtitle */
.am-about-hero-desc,
.am-tp-hero-content p,
.am-acct-hero-content p,
.am-plat-hero-text p {
    font-size: 16.5px;
    color: rgba(255,255,255,0.58);
    line-height: 1.72;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Section titles tighter tracking */
.am-section-title {
    letter-spacing: -0.9px;
    line-height: 1.12;
}

/* Section eyebrow — consolidated in base CSS (display: inline-flex, leading line) */

/* Feature card titles — bring to 16px */
.am-feature-title { font-size: 16px; }
.am-feature-desc  { font-size: 13.5px; color: rgba(255,255,255,0.40); }

/* Testimonial names — more visible */
.am-testimonial-name { font-size: 14.5px; }
.am-testimonial-text { font-size: 14px; color: rgba(255,255,255,0.72); }

/* ── Inner page hero backgrounds — full premium treatment ─────────── */
.am-about-hero,
.am-acct-hero,
.am-tp-hero,
.am-plat-hero {
    background: #07080E;
}
.am-about-hero-bg,
.am-acct-hero-bg,
.am-tp-hero-bg,
.am-plat-hero-bg {
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 60%);
}

/* ── Card system polish ───────────────────────────────────────────── */

/* Value cards */
.am-value-card {
    background: rgba(11,12,21,0.80);
    border: 1px solid rgba(201,168,76,0.10);
    border-radius: 18px;
    padding: 32px 28px 28px;
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
}
.am-value-card:hover {
    border-color: rgba(201,168,76,0.28);
    transform: translateY(-3px);
}
.am-value-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 14px 0 10px;
    letter-spacing: -0.2px;
}
.am-value-card p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.42);
    line-height: 1.68;
    margin: 0;
}
.am-value-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: rgba(201,168,76,0.06);
    line-height: 1;
    pointer-events: none;
}

/* Mission/Vision cards */
.am-mv-card {
    background: rgba(11,12,21,0.80);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 20px;
    padding: 36px 32px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.am-mv-card:hover {
    border-color: rgba(201,168,76,0.30);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.am-mv-card h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 16px 0 12px;
    letter-spacing: -0.4px;
}
.am-mv-card p {
    font-size: 14.5px;
    color: rgba(255,255,255,0.50);
    line-height: 1.75;
    margin: 0;
}
.am-mv-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(201,168,76,0.07);
    border: 1px solid rgba(201,168,76,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.45);
}
.am-mv-icon-gold { color: #C9A84C; background: rgba(201,168,76,0.10); border-color: rgba(201,168,76,0.35); }

/* Compliance cards */
.am-compliance-card {
    background: rgba(11,12,21,0.80);
    border: 1px solid rgba(201,168,76,0.10);
    border-radius: 18px;
    padding: 32px 28px;
    transition: border-color 0.3s, transform 0.3s;
}
.am-compliance-card:hover {
    border-color: rgba(201,168,76,0.28);
    transform: translateY(-2px);
}
.am-compliance-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 14px 0 10px;
    letter-spacing: -0.2px;
}
.am-compliance-card p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.42);
    line-height: 1.68;
    margin: 0;
}

/* About Why section */
.am-about-why-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
    align-items: center;
}
.am-about-why-text h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.6px;
    line-height: 1.12;
    margin: 12px 0 18px;
}
.am-about-why-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.48);
    line-height: 1.75;
    margin-bottom: 28px;
}
.am-about-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.am-about-why-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.62);
    line-height: 1.6;
    padding: 12px 16px;
    background: rgba(201,168,76,0.03);
    border: 1px solid rgba(201,168,76,0.08);
    border-radius: 10px;
    transition: border-color 0.2s, background 0.2s;
}
.am-about-why-list li:hover {
    border-color: rgba(201,168,76,0.20);
    background: rgba(201,168,76,0.06);
    color: rgba(255,255,255,0.80);
}
.am-about-why-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C9A84C;
    flex-shrink: 0;
    margin-top: 6px;
}

/* ── Comparison table — premium ECN column highlight ─────────────── */
.am-comparison-table .am-col-featured {
    background: rgba(201,168,76,0.07);
    color: #FFFFFF;
    font-weight: 600;
    border-left: 1px solid rgba(201,168,76,0.15);
    border-right: 1px solid rgba(201,168,76,0.15);
}
.am-comparison-table thead th.am-col-featured {
    background: rgba(201,168,76,0.14);
    color: #C9A84C;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.5px;
}
.am-comparison-table-wrap {
    border-radius: 16px;
    border: 1px solid rgba(201,168,76,0.12);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.am-comparison-table th {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 20px 24px;
}
.am-comparison-table td { padding: 14px 24px; }
.am-comparison-cta-row td { border-bottom: none; padding: 20px 24px; }

/* Swap-free card */
.am-swap-free-card {
    display: flex;
    align-items: center;
    gap: 28px;
    background: rgba(201,168,76,0.04);
    border: 1px solid rgba(201,168,76,0.20);
    border-radius: 18px;
    padding: 32px 36px;
}
.am-swap-free-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(201,168,76,0.10);
    border: 1px solid rgba(201,168,76,0.30);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A84C;
}
.am-swap-free-text { flex: 1; }
.am-swap-free-text h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.3px;
    margin: 0 0 8px;
}
.am-swap-free-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.48);
    line-height: 1.7;
    margin: 0;
}

/* Account type cards — tighter hover */
.am-acct-card {
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.am-acct-card:hover {
    border-color: rgba(201,168,76,0.35);
    transform: translateY(-4px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.am-acct-featured {
    box-shadow: 0 0 0 1px rgba(201,168,76,0.3), 0 32px 80px rgba(201,168,76,0.08);
}
.am-acct-featured:hover {
    box-shadow: 0 0 0 1px rgba(201,168,76,0.5), 0 32px 80px rgba(201,168,76,0.12);
}

/* ── Market/Trading category cards ───────────────────────────────── */
.am-tp-cat-card {
    transition: border-color 0.3s, transform 0.3s;
}
.am-tp-cat-card:hover {
    border-color: rgba(201,168,76,0.35);
    transform: translateY(-3px);
}

/* Platform download cards */
.am-plat-download-card {
    transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.am-plat-download-card:hover {
    border-color: rgba(201,168,76,0.35);
    transform: translateY(-3px);
    background: rgba(201,168,76,0.05);
}

/* ── CTA block refinements ────────────────────────────────────────── */
.am-cta-block {
    background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, rgba(201,168,76,0.02) 100%);
    border: 1px solid rgba(201,168,76,0.18);
}
.am-cta-block h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    letter-spacing: -0.6px;
    line-height: 1.15;
}

/* ── Stat counters — more premium ────────────────────────────────── */
.am-stat-number,
.am-counter-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    background: linear-gradient(135deg, #ECC94A 0%, #C9A84C 60%, #B8892C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.am-stat-card {
    transition: border-color 0.3s, transform 0.3s;
}
.am-stat-card:hover {
    border-color: rgba(201,168,76,0.28);
    transform: translateY(-2px);
}

/* ── Icon badges ─────────────────────────────────────────────────── */
.am-icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(201,168,76,0.07);
    border: 1px solid rgba(201,168,76,0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.45);
    flex-shrink: 0;
}
.am-icon-badge-gold { color: #C9A84C; background: rgba(201,168,76,0.10); }
.am-icon-badge-sm { width: 42px; height: 42px; border-radius: 11px; }

/* ── Feature items — homepage featured cards polish ──────────────── */
.am-feature-item {
    transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.am-feature-item:hover {
    border-color: rgba(201,168,76,0.28);
    transform: translateY(-3px);
    background: rgba(201,168,76,0.04);
}

/* ── Forms — premium inputs ──────────────────────────────────────── */
.am-form-input:focus,
.am-form-select:focus,
.am-form-textarea:focus {
    border-color: rgba(201,168,76,0.50);
    outline: none;
    box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}

/* ── Stat label typography ───────────────────────────────────────── */
.am-stat-label {
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.38);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ── Hero mobile responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
    .am-about-hero     { padding: 64px 0 48px; }
    .am-tp-hero        { padding: 60px 0 0; }
    .am-acct-hero      { padding: 60px 0 40px; }
    .am-plat-hero      { padding: 60px 0 40px; }
    .am-funding-hero   { padding: 64px 0 40px; }
    .am-contact-hero   { padding: 64px 0 40px; }
    .am-faq-hero       { padding: 64px 0 40px; }
    .am-legal-hero     { padding: 64px 0 40px; }
    .am-about-hero-title,
    .am-acct-hero-content h1,
    .am-tp-hero-content h1,
    .am-plat-hero-text h1 { font-size: clamp(1.8rem, 8vw, 2.8rem); }
    .am-about-why-inner { grid-template-columns: 1fr; gap: 40px; }
    .am-swap-free-card  { flex-direction: column; align-items: flex-start; gap: 20px; padding: 24px; }
    .am-mv-card         { padding: 28px 22px; }
    .am-cta-block:has(.am-cta-btns) { padding: 36px 28px; }
}
@media (max-width: 480px) {
    .am-about-hero { padding: 52px 0 40px; }
    .am-tp-hero    { padding: 48px 0 0; }
}

/* ── RTL typography ──────────────────────────────────────────────── */
[dir="rtl"] .am-section-eyebrow::before { margin-right: 0; margin-left: 8px; }
[dir="rtl"] .am-about-why-list li { padding-left: 16px; padding-right: 28px; }
[dir="rtl"] .am-about-why-list li::before { margin-right: 0; margin-left: 12px; }
[dir="rtl"] .am-swap-free-card { flex-direction: row-reverse; }

/* ── Inner-page CTA blocks — centered column layout ─────────────── */
.am-cta-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.am-cta-block:has(.am-cta-btns) {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.am-cta-block:has(.am-cta-btns) h2 {
    max-width: 600px;
}
.am-cta-block:has(.am-cta-btns) p {
    max-width: 520px;
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    line-height: 1.65;
}

/* ── Value/compliance cards hover ───────────────────────────────── */
.am-value-card,
.am-compliance-card,
.am-contact-method-card,
.am-plat-feat-card,
.am-culture-card,
.am-ib-who-card,
.am-partner-benefit-card {
    transition: border-color 0.3s, transform 0.3s;
}
.am-value-card:hover,
.am-compliance-card:hover,
.am-plat-feat-card:hover,
.am-culture-card:hover,
.am-ib-who-card:hover,
.am-partner-benefit-card:hover {
    border-color: rgba(201,168,76,0.22);
    transform: translateY(-3px);
}

/* ── 55. PLATFORM STATS STRIP ──────────────────────────────────────── */
.am-plat-stats-strip {
    padding: 0;
    background: #07080E;
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
}
.am-plat-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.am-plat-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 32px 20px;
    border-right: 1px solid rgba(201,168,76,0.08);
    text-align: center;
}
.am-plat-stat:last-child { border-right: none; }
.am-plat-stat-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    background: linear-gradient(135deg, #B8892C, #ECC94A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.am-plat-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
    letter-spacing: 0.3px;
}
@media (max-width: 768px) {
    .am-plat-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .am-plat-stat:nth-child(2) { border-right: none; }
    .am-plat-stat:nth-child(3), .am-plat-stat:nth-child(4) {
        border-top: 1px solid rgba(201,168,76,0.08);
    }
    .am-plat-stat { padding: 24px 16px; }
}

/* ── 56. TRADING JOURNEY ─────────────────────────────────────────── */
/* ── TRADING JOURNEY — HORIZONTAL TIMELINE ───────────────────────── */
.am-journey {
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}
.am-journey::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.05) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 50% 100%, rgba(201,168,76,0.03) 0%, transparent 60%);
    pointer-events: none;
}

.am-journey-header {
    text-align: center;
    margin-bottom: 72px;
}
.am-journey-header .am-eyebrow {
    justify-content: center;
    margin-bottom: 16px;
}
.am-journey-header .am-section-title {
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.am-journey-header .am-section-sub {
    max-width: 520px;
    margin: 0 auto;
}

/* Timeline container */
.am-journey-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
}

/* Horizontal gold connecting line through circle centers */
.am-jtl-line {
    position: absolute;
    top: 31px; /* center of 62px circles */
    left: calc(100% / 14);
    right: calc(100% / 14);
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201,168,76,0.2) 3%,
        rgba(201,168,76,0.45) 15%,
        rgba(201,168,76,0.55) 50%,
        rgba(201,168,76,0.45) 85%,
        rgba(201,168,76,0.2) 97%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 0;
}

/* Individual node */
.am-jtl-node {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 6px;
}

/* Gold outlined circle with icon */
.am-jtl-circle {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 1.5px solid rgba(201,168,76,0.4);
    background: #07080E;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(201,168,76,0.65);
    margin-bottom: 16px;
    box-shadow: 0 0 0 5px rgba(7,8,14,0.9), 0 0 0 6px rgba(201,168,76,0.06);
    transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}
.am-jtl-node:hover .am-jtl-circle {
    border-color: #C9A84C;
    color: #C9A84C;
    box-shadow: 0 0 0 5px rgba(7,8,14,0.9), 0 0 0 6px rgba(201,168,76,0.12), 0 0 28px rgba(201,168,76,0.2);
}

/* Text block (badge + title + desc) */
.am-jtl-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Numbered badge pill */
.am-jtl-badge {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    font-weight: 800;
    color: #C9A84C;
    letter-spacing: 1.5px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.22);
    border-radius: 20px;
    padding: 2px 9px;
    margin-bottom: 10px;
    line-height: 1.7;
    transition: background 0.3s, border-color 0.3s;
}
.am-jtl-node:hover .am-jtl-badge {
    background: rgba(201,168,76,0.13);
    border-color: rgba(201,168,76,0.4);
}

/* Title */
.am-jtl-text h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 6px;
    line-height: 1.3;
    letter-spacing: 0;
}

/* Description */
.am-jtl-text p {
    font-size: 11.5px;
    color: rgba(255,255,255,0.4);
    line-height: 1.65;
    margin: 0;
}

/* ── Responsive: tablet (4-across grid) ──── */
@media (max-width: 1100px) {
    .am-journey-timeline {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }
    .am-jtl-node {
        width: 25%;
        flex: none;
        padding: 0 10px 52px;
    }
    .am-jtl-line { display: none; }
}

/* ── Responsive: mobile (vertical timeline) ──── */
@media (max-width: 640px) {
    .am-journey { padding: 64px 0; }
    .am-journey-header { margin-bottom: 48px; }
    .am-journey-timeline {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        padding-left: 8px;
    }
    .am-jtl-node {
        width: 100%;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 18px;
        padding: 0 0 40px;
        position: relative;
    }
    /* Vertical connecting line */
    .am-jtl-node::after {
        content: '';
        position: absolute;
        left: 30px; /* center of 62px circle */
        top: 62px;
        bottom: 0;
        width: 1px;
        background: linear-gradient(180deg, rgba(201,168,76,0.35) 0%, rgba(201,168,76,0.1) 100%);
    }
    .am-jtl-node:last-child::after { display: none; }
    .am-jtl-circle {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .am-jtl-text {
        align-items: flex-start;
        padding-top: 10px;
    }
    .am-jtl-badge { align-self: flex-start; }
    .am-jtl-line { display: none; }
}
@media (max-width: 480px) {
    .am-jtl-node { width: 100%; padding-bottom: 36px; }
}

/* ── 57. TRUST PILLARS SECTION ───────────────────────────────────── */
.am-trust-pillars-section {
    padding: 96px 0;
    background: #0B0C15;
    position: relative;
    overflow: hidden;
}
.am-trust-pillars-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(201,168,76,0.03) 0%, transparent 65%);
    pointer-events: none;
}
.am-trust-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.am-trust-pillar {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 28px 22px;
    transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.am-trust-pillar:hover {
    border-color: rgba(201,168,76,0.22);
    background: rgba(255,255,255,0.035);
    transform: translateY(-3px);
}
.am-trust-pillar-icon {
    width: 44px;
    height: 44px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A84C;
    margin-bottom: 18px;
    transition: background 0.3s, border-color 0.3s;
}
.am-trust-pillar:hover .am-trust-pillar-icon {
    background: rgba(201,168,76,0.14);
    border-color: rgba(201,168,76,0.4);
}
.am-trust-pillar-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1.3;
}
.am-trust-pillar-desc {
    font-size: 12.5px;
    color: rgba(255,255,255,0.42);
    line-height: 1.65;
}
@media (max-width: 1024px) {
    .am-trust-pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .am-trust-pillars-section { padding: 64px 0; }
    .am-trust-pillars-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ── 58. SECTION BACKGROUND RHYTHM ──────────────────────────────── */
/* Alternating dark sections create visual rhythm across inner pages */
.am-values            { background: #0B0C15; }
.am-about-compliance  { background: #0B0C15; }
.am-conditions-section{ background: #0B0C15; }
.am-tp-categories     { background: #0B0C15; }
.am-acct-comparison   { background: #0B0C15; }
.am-funding-steps     { background: #0B0C15; }
.am-why-partner       { background: #0B0C15; }

/* ── 59. INSTR DOT + CATEGORY BADGE COLORS ───────────────────────── */
.am-dot-indices  { background: #8B7A5A; }
.am-cat-badge    { display: inline-flex; }
.am-cat-forex    { background: rgba(201,168,76,0.12); color: #C9A84C; }
.am-cat-metals   { background: rgba(245,212,133,0.12); color: #F5D485; }
.am-cat-crypto   { background: rgba(168,155,112,0.12); color: #A89B70; }
.am-cat-indices  { background: rgba(139,122,90,0.12); color: #8B7A5A; }

/* ── 60. MISSING CLASS ALIASES ───────────────────────────────────── */
/* am-btn--full: BEM double-dash variant, same as am-btn-full */
.am-btn--full { width: 100%; text-align: center; justify-content: center; }
/* am-btn-download: download button micro style — icon gap */
.am-btn-download { gap: 10px; }
/* am-icon-badge-lg: 56px badge for contact page method cards */
.am-icon-badge-lg { width: 56px; height: 56px; border-radius: 16px; }
/* am-acct-min-dep: deposit range container in account cards */
.am-acct-min-dep { text-align: center; }

/* ── END MASTER POLISH PASS ─────────────────────────────────────── */
