/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   RTL (Right-to-Left) SUPPORT FOR ARABIC
   ============================================ */

body.lang-ar {
    direction: rtl;
    text-align: right;
}

/* RTL Navigation */
.lang-ar .nav-content {
    flex-direction: row-reverse;
}

.lang-ar .nav-links {
    flex-direction: row-reverse;
}

.lang-ar .nav-actions {
    flex-direction: row-reverse;
}

/* RTL Button arrows - flip direction */
.lang-ar .btn-arrow {
    transform: scaleX(-1);
}

.lang-ar .btn:hover .btn-arrow {
    transform: scaleX(-1) translateX(-5px);
}

/* RTL Step items */
.lang-ar .step-item {
    grid-template-columns: 1fr 56px;
}

.lang-ar .step-content {
    text-align: right;
}

/* RTL Reason items */
.lang-ar .reason-item {
    flex-direction: row-reverse;
    text-align: right;
}

/* RTL Promo details */
.lang-ar .promo-detail-item {
    flex-direction: row-reverse;
}

/* RTL Tables */
.lang-ar .rebate-table th,
.lang-ar .rebate-table td {
    text-align: center;
}

/* RTL Calculation box arrow */
.lang-ar .calculation-example::before {
    content: '←';
}

/* RTL Footer */
.lang-ar .footer-nav {
    direction: rtl;
}

/* RTL Links */
.lang-ar .step-link::after {
    margin-left: 0;
    margin-right: 0.25rem;
    content: '←';
}

@media (max-width: 768px) {
    .lang-ar .step-item {
        grid-template-columns: 1fr 48px;
    }
}

@media (max-width: 480px) {
    .lang-ar .step-item {
        grid-template-columns: 1fr 42px;
    }
}

:root {
    /* Colors - Light + Gold Theme */
    --color-primary: #B68C00;
    --color-primary-dark: #8C6C00;
    --color-primary-light: #E3B200;
    --color-secondary: #0E9F6E;
    --color-accent: #FFB84D;
    --color-gold: #FFD700;

    --color-bg: #FFFFFF;
    --color-bg-secondary: #FAFAFA;
    --color-bg-tertiary: #F5F5F5;
    --color-surface: rgba(0, 0, 0, 0.03);
    --color-surface-hover: rgba(0, 0, 0, 0.06);

    --color-text: #1A1A1A;
    --color-text-secondary: #4B5563;
    --color-text-tertiary: #6B7280;

    --color-border: rgba(0, 0, 0, 0.12);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #E3B200 50%, #B68C00 100%);
    --gradient-secondary: linear-gradient(135deg, #FFF3C4 0%, #FFE08A 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-blue: linear-gradient(135deg, #FFF7E6 0%, #FFE8B3 46%, #FFDA80 100%);
    --gradient-text: linear-gradient(135deg, #B68C00 0%, #E3B200 50%, #FFBF3F 100%);
    --gold-shimmer: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,215,0,0.35) 50%, rgba(255,255,255,0) 100%);

    /* Shadows - Gold Glow */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.14);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.28);
    --shadow-glow: 0 0 60px rgba(182, 140, 0, 0.35), 0 0 30px rgba(227, 178, 0, 0.25);
    --shadow-glow-lg: 0 0 80px rgba(182, 140, 0, 0.45), 0 0 40px rgba(227, 178, 0, 0.35), 0 0 20px rgba(255, 215, 0, 0.25);
    --shadow-glow-hover: 0 0 100px rgba(182, 140, 0, 0.5), 0 0 50px rgba(227, 178, 0, 0.4), 0 0 25px rgba(255, 215, 0, 0.3);

    /* Typography */
    --font-primary: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions - Premium Easing Functions */
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    --transition-elastic: 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-premium: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ============================================
   INLINE STYLES MOVED FROM HTML
   ============================================ */

/* Hero gold badge styling */
.hero .gold-hero-badge {
    background: rgba(255,215,0,0.08);
    border: 1px solid rgba(255,215,0,0.3);
}

/* Text gold gradient */
.text-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Feature icons sizing */
.feature-icon {
    width: 28px;
    height: 28px;
}

/* Progress card border */
.hero-cards .progress-card {
    border-color: rgba(255,215,0,0.35);
}

/* Button outline style */
.btn-outline {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.btn-outline:hover {
    border-color: var(--color-primary);
}

/* Navigation spacing */
.nav-links {
    gap: 1rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Hero description spacing and styling */
.hero-desc-spacing {
    margin-top: 1rem;
}

.hero-desc-highlight {
    font-weight: 600;
    color: var(--color-text);
}

/* Calculation box styling (Enhanced) */
.calculation-box {
    background: linear-gradient(135deg, #FFFBF0 0%, #FFF4D6 100%);
    border: 2px solid rgba(182, 140, 0, 0.25);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin: 2.5rem 0;
    box-shadow: 0 20px 60px rgba(182, 140, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.calculation-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.calc-intro {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
    line-height: 1.6;
}

.calc-summary {
    text-align: center;
    font-size: 1.35rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 2rem;
    padding: 1.25rem;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    border: 2px dashed rgba(182, 140, 0, 0.3);
}

.hero-cta-spacing {
    margin-top: 2.5rem;
}

.hero-cta-centered {
    margin-top: 3rem;
    justify-content: center;
}

.calculation-example {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
}

.calculation-example::before {
    content: '→';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-primary);
    z-index: 1;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(182, 140, 0, 0.25);
}

.calc-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    border: 2px solid rgba(182, 140, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.calc-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(182, 140, 0, 0.15);
}

.calc-item.old {
    opacity: 0.75;
}

.calc-item.old::before {
    content: 'BEFORE';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--color-text-secondary);
    background: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.calc-item.new {
    border-color: var(--color-primary);
    border-width: 3px;
    box-shadow: 0 8px 32px rgba(182, 140, 0, 0.25);
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFEF8 100%);
}

.calc-item.new::before {
    content: 'NOW';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: white;
    background: var(--gradient-primary);
    padding: 0.35rem 1rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(182, 140, 0, 0.3);
}

.calc-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-primary);
    margin: 1rem 0;
    line-height: 1;
}

.calc-item.new .calc-value {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calc-label {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-top: 0.75rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .calculation-box {
        padding: 2rem 1.5rem;
    }

    .calculation-example {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .calculation-example::before {
        content: '↓';
        top: 50%;
        font-size: 2.5rem;
        width: 50px;
        height: 50px;
    }

    .calc-value {
        font-size: 2rem;
    }
}

/* Hero specs section spacing */
.hero-specs-title {
    margin-top: 2rem;
}

.hero-specs-table {
    margin-top: 1rem;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image: radial-gradient(600px 300px at 20% 0%, rgba(255,215,0,0.06), transparent 60%), radial-gradient(800px 400px at 80% 10%, rgba(182,140,0,0.05), transparent 60%);
}

#smooth-scroll-container {
    width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */

.cursor,
.cursor-follower {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.2s ease, opacity 0.3s ease;
}

.cursor {
    background: white;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    transform: translate(-50%, -50%) scale(1);
    transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
    .cursor,
    .cursor-follower {
        display: none;
    }
}

/* ============================================
   GRADIENT BACKGROUND
   ============================================ */

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.grain-overlay::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="140" height="140" viewBox="0 0 140 140"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)" opacity="0.05"/></svg>');
    mix-blend-mode: multiply;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    animation: float 25s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    will-change: transform, opacity;
}

.gradient-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.45) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.gradient-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(227, 178, 0, 0.35) 0%, transparent 70%);
    top: 50%;
    right: -150px;
    animation-delay: -7s;
}

.gradient-orb-3 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(182, 140, 0, 0.3) 0%, transparent 70%);
    bottom: -250px;
    left: 50%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.45;
    }
    25% {
        transform: translate(40px, -40px) scale(1.15);
        opacity: 0.5;
    }
    50% {
        transform: translate(-30px, 30px) scale(0.85);
        opacity: 0.4;
    }
    75% {
        transform: translate(20px, -20px) scale(1.05);
        opacity: 0.48;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    transition: background 0.3s ease, transform 0.3s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition-premium);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-premium);
    box-shadow: 0 0 10px rgba(182, 140, 0, 0.35);
}

.nav-link:hover {
    color: var(--color-text);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-btn {
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1.5;
    font-size: 0.95rem;
}

.nav-link-btn::after {
    display: none;
}

.nav-link-login { background: #FFFFFF; color: var(--color-text); border: 1px solid var(--color-border); }

.nav-link-login:hover {
    background: var(--color-surface-hover);
    transform: translateY(-2px);
}

.nav-link-primary { background: var(--gradient-primary); color: #1A1A1A; }

.nav-link-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.lang-switch {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0px solid var(--color-border);
    padding: 0.6rem 2.2rem 0.6rem 0.8rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: all 0.3s ease;
    height: auto;
    box-sizing: border-box;
}

.lang-select:hover {
    background: var(--color-surface-hover);
    border-color: var(--color-primary);
}

.lang-switch .ti {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-secondary);
    pointer-events: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.lang-switch-desktop {
    display: flex;
}

.lang-switch-mobile {
    display: none;
    margin-bottom: 1rem;
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-content {
        padding: 1.25rem 0;
        justify-content: space-between;
        gap: 0;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    .logo-img {
        height: 36px;
    }
    
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 0;
        flex-shrink: 0;
        margin-left: auto;
    }
    
    .nav-link-btn {
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .mobile-menu-toggle {
        flex-shrink: 0;
        margin-left: 1rem;
        padding: 0.5rem;
    }
    
    .lang-switch-desktop {
        display: none;
    }
    
    .lang-switch-mobile {
        display: flex;
    }
}

@media (max-width: 768px) {
    .nav-content {
        padding: 1rem 0;
        justify-content: space-between;
        gap: 0;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 0;
        flex-shrink: 0;
        margin-left: auto;
    }
    
    .nav-link-btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
        line-height: 1.5;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .lang-select {
        padding: 0.5rem 1.8rem 0.5rem 0.7rem;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .mobile-menu-toggle {
        flex-shrink: 0;
        padding: 0.5rem;
        margin-left: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 28px;
    }
    
    .lang-select {
        padding: 0.45rem 1.6rem 0.45rem 0.6rem;
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .nav-link-btn {
        padding: 0.45rem 1rem;
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.mobile-menu-link {
    color: var(--color-text);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-menu-link:hover {
    color: var(--color-primary-light);
    transform: translateX(10px);
}

.mobile-menu-btn {
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.mobile-menu-login {
    background: var(--color-surface);
    color: var(--color-text);
}

.mobile-menu-primary {
    background: var(--gradient-primary);
    color: white;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 160px;
    padding-bottom: 80px;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    width: 900px;
    height: 900px;
    top: -200px;
    right: -150px;
    background: radial-gradient(circle, rgba(255,215,0,0.10) 0%, transparent 60%);
    filter: blur(60px);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
    justify-items: center;
}

.hero-content {
    z-index: 2;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

/* Ensure consistent order regardless of content length */
.hero-title {
    order: 1;
}

.hero-subtitle {
    order: 2;
}

.hero-description {
    order: 3;
}

.calculation-box {
    order: 4;
}

.hero-cta {
    order: 5;
}

#specs {
    order: 6;
}

.hero-content .section-title {
    order: 7;
}

.hero-content .table-wrapper {
    order: 8;
}

.hero-subtitle,
.hero-description {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #FFF8E1;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-secondary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}
.shimmer-text { position: relative; display: inline-block; }
.shimmer-text::after { content: ''; position: absolute; inset: 0; background: var(--gold-shimmer); transform: translateX(-100%); animation: shimmer 4s infinite; }
@keyframes shimmer { 0% { transform: translateX(-100%);} 60% { transform: translateX(100%);} 100% { transform: translateX(100%);} }

.hero-title-line {
    display: block;
    animation: fadeInUp 0.6s ease backwards;
}

.hero-title-line:nth-child(1) {
    animation-delay: 0.3s;
    margin-bottom: 24px;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 1.5rem);
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease 0.5s backwards;
}

.highlight-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease 0.6s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    margin-bottom: 4rem;
    animation: fadeInUp 0.6s ease 0.7s backwards;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-premium);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width var(--transition-smooth), height var(--transition-smooth);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform var(--transition-smooth);
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn:hover::after {
    transform: translateX(100%);
}

/* Primary CTA - Main action buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: #1A1A1A;
    box-shadow: 0 8px 24px rgba(182, 140, 0, 0.3);
    font-weight: 700;
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 48px rgba(182, 140, 0, 0.4);
    filter: brightness(1.1);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.01);
}

/* Secondary CTA - Supporting actions */
.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-weight: 600;
}

.btn { will-change: transform; }
.btn.magnet-hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 30px rgba(182,140,0,0.2); }

.btn-secondary:hover {
    background: rgba(182, 140, 0, 0.05);
    transform: translateY(-4px) scale(1.02);
    border-color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(182, 140, 0, 0.15);
    color: var(--color-primary);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(1);
}

/* Tertiary CTA - Subtle actions */
.btn-tertiary {
    background: transparent;
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
    font-weight: 500;
}

.btn-tertiary:hover {
    background: var(--color-surface-hover);
    color: var(--color-text);
    border-color: var(--color-border);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.35rem 2.75rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid var(--color-border);
    animation: fadeInUp 0.6s ease 0.8s backwards;
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-tertiary);
    line-height: 1.4;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--color-border);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-cards {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.progress-card {
    background: #FFFFFF;
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all var(--transition-premium);
    animation: fadeInRight 0.6s ease backwards;
    position: relative;
    overflow: hidden;
}

.progress-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left var(--transition-smooth);
}

.progress-card:hover { transform: translateX(12px) scale(1.02); background: #FFF9E6; box-shadow: 0 8px 30px rgba(182, 140, 0, 0.15); border-color: rgba(182, 140, 0, 0.35); }

.progress-card:hover::before {
    left: 100%;
}

.progress-card:nth-child(1) {
    animation-delay: 0.5s;
}

.progress-card:nth-child(2) {
    animation-delay: 0.6s;
}

.progress-card:nth-child(3) {
    animation-delay: 0.7s;
}

.progress-card:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.card-icon {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.875rem;
}

.card-icon-fx {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
}

.card-icon-metal {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.card-icon-cfd {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
}

.card-icon-oil {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
}

.card-level {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    font-weight: 600;
}

.progress-bar-container {
    margin-top: 0.75rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 1s ease;
    animation: progressAnimation 2s ease-in-out infinite;
}

@keyframes progressAnimation {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.card-fx .progress-fill { background: linear-gradient(90deg, #FFD700 0%, #E3B200 100%); }
.card-metal .progress-fill { background: linear-gradient(90deg, #0EA5A5 0%, #0E9F6E 100%); }
.card-cfd .progress-fill { background: linear-gradient(90deg, #FFB84D 0%, #FFA31A 100%); }
.card-oil .progress-fill { background: linear-gradient(90deg, #B68C00 0%, #8C6C00 100%); }

.progress-label {
    font-size: 0.75rem;
    color: var(--color-text-tertiary);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-tertiary);
    font-size: 0.875rem;
    animation: fadeIn 0.6s ease 1s backwards;
    z-index: 10;
    pointer-events: none;
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 1.5rem;
        font-size: 0.8rem;
        gap: 0.4rem;
    }
}

@media (max-width: 480px) {
    .scroll-indicator {
        bottom: 1rem;
        font-size: 0.75rem;
        gap: 0.35rem;
    }
}

@media (max-width: 375px) {
    .scroll-indicator {
        bottom: 0.75rem;
        font-size: 0.7rem;
    }
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--color-primary));
    animation: scrollAnimation 2s ease-in-out infinite;
}

@media (max-width: 768px) {
    .scroll-line {
        height: 32px;
    }
}

@media (max-width: 480px) {
    .scroll-line {
        height: 28px;
    }
}

@media (max-width: 375px) {
    .scroll-line {
        height: 24px;
    }
}

@keyframes scrollAnimation {
    0%, 100% {
        opacity: 0;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-divider {
        height: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 4rem;
        min-height: auto;
        width: 100%;
        overflow-x: hidden;
    }
    
    .hero .container {
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
        padding: 0;
        text-align: left;
        box-sizing: border-box;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
    }

    .hero-title {
        font-size: clamp(1.6rem, 7vw, 2rem);
        line-height: 1.2;
        margin-bottom: 1rem;
        text-align: center;
        padding: 0;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-title-line {
        display: block;
        margin-bottom: 0.25rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: clamp(0.875rem, 3.5vw, 1.1rem);
        line-height: 1.6;
        margin-bottom: 1.5rem;
        text-align: center;
        color: var(--color-text-secondary);
        padding: 0;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        text-align: center;
        padding: 0;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
        justify-content: center;
        align-items: stretch;
        padding: 0;
        max-width: 100%;
        box-sizing: border-box;
    }

    .btn-large {
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-content .section-title {
        font-size: clamp(1.3rem, 4.5vw, 1.6rem);
        margin-top: 2rem;
        margin-bottom: 1rem;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-content .table-wrapper {
        margin-top: 1rem;
        margin-bottom: 0;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
    }
    
    .hero-content .table-scroll {
        width: 100%;
        min-width: 100%;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .stat-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 80px;
        padding-bottom: 3.5rem;
        width: 100%;
        overflow-x: hidden;
    }
    
    .hero .container {
        padding: 0 0.75rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-content {
        padding: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 6vw, 1.8rem);
        margin-bottom: 0.75rem;
        padding: 0;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: clamp(0.8rem, 3vw, 1rem);
        margin-bottom: 1.25rem;
        padding: 0;
        max-width: 100%;
        line-height: 1.5;
    }
    
    .hero-cta {
        margin-bottom: 1.5rem;
        padding: 0;
        max-width: 100%;
    }
    
    .hero-content .section-title {
        font-size: clamp(1.2rem, 4vw, 1.4rem);
        margin-top: 1.5rem;
        padding: 0;
        max-width: 100%;
    }
    
    .hero-content .table-wrapper {
        margin-left: -0.75rem;
        margin-right: -0.75rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        width: calc(100% + 1.5rem);
        max-width: calc(100% + 1.5rem);
    }
}

@media (max-width: 375px) {
    .hero .container {
        padding: 0 0.625rem;
    }
    
    .hero-title {
        font-size: clamp(1.4rem, 5.5vw, 1.6rem);
    }
    
    .hero-subtitle {
        font-size: clamp(0.75rem, 2.8vw, 0.95rem);
        line-height: 1.5;
    }
    
    .hero-content .table-wrapper {
        margin-left: -0.625rem;
        margin-right: -0.625rem;
        padding-left: 0.625rem;
        padding-right: 0.625rem;
        width: calc(100% + 1.25rem);
        max-width: calc(100% + 1.25rem);
    }
}

/* ============================================
   INTRO SECTION
   ============================================ */

.intro-section { padding: 6rem 0; background: linear-gradient(180deg, #FFFFFF 0%, #FFFDF5 100%); }

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 2;
    color: var(--color-text-secondary);
}

.intro-text strong {
    color: var(--color-text);
    font-weight: 700;
}

.promo-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.promo-highlight {
    font-weight: 600;
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .intro-section {
        padding: 4rem 0;
    }

    .intro-text {
        font-size: 1.1rem;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .intro-text {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* ============================================
   SECTION STYLES
   ============================================ */

section {
    position: relative;
    padding: 6rem 0;
}

/* Section spacing variations for better visual hierarchy */
section.hero {
    padding: 8rem 0 7rem;
}

section.commission {
    padding: 5rem 0;
}

section.benefits,
section.how-it-works {
    padding: 5.5rem 0;
}

section.faq,
section.showcase {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    margin: 0 auto;
    max-width: 1100px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    section { padding: 3.5rem 0; }
    .section-header { margin-bottom: 2.25rem; }
    .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }

    .rebate-table { 
        min-width: 700px; 
        font-size: 0.875rem;
    }
    .rebate-table th,
    .rebate-table td {
        padding: 1rem 0.75rem;
    }
    .benefits-grid { grid-template-columns: 1fr; }
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works { background: linear-gradient(180deg, #FFFFFF 0%, #FFF9E6 100%); }

.table-wrapper {
    margin: 2rem auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    max-width: 1100px;
    box-shadow: 0 20px 60px rgba(182, 140, 0, 0.08);
}

.table-scroll {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) var(--color-surface);
}

.table-scroll::-webkit-scrollbar {
    height: 8px;
}

.table-scroll::-webkit-scrollbar-track {
    background: var(--color-surface);
}

.table-scroll::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}

.rebate-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1100px;
}

.rebate-table thead {
    background: rgba(255, 255, 255, 0.05);
}

.rebate-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 700;
    color: var(--color-text);
    border-bottom: 2px solid var(--color-border);
    white-space: nowrap;
}

.rebate-table td {
    padding: 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.rebate-table tr:hover td {
    background: rgba(182, 140, 0, 0.03);
    color: var(--color-text);
}

.rebate-table tbody tr:hover {
    box-shadow: -4px 0 0 0 var(--color-primary);
    transform: translateX(2px);
}

.rebate-table .asset-name {
    font-weight: 700;
    color: var(--color-text);
    font-size: 1.05rem;
}

/* Highlight the extra rebate column */
.rebate-table th:last-child {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(255, 165, 0, 0.12) 100%);
    font-size: 1.05rem;
    position: relative;
}

.rebate-table th:last-child::after {
    content: '🔥';
    margin-left: 0.5rem;
    font-size: 1.1rem;
}

.rebate-table td:last-child {
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--color-primary);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.06) 0%, rgba(255, 165, 0, 0.06) 100%);
    position: relative;
}

.rebate-table td:last-child::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
}

.rebate-table .cumulative {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-tertiary);
    margin-top: 0.25rem;
}

.table-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-sm);
}

.table-note p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.table-note strong {
    color: var(--color-text);
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits { background: linear-gradient(180deg, #FFFFFF 0%, #FFFDF5 100%); }

.benefits-alt-bg {
    background: linear-gradient(180deg, #FFFDF5 0%, #FFFFFF 100%);
}

.section-header-wide {
    max-width: 1100px;
    margin: 0 auto;
}

.product-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 1rem auto 0;
}

/* Showcase text inline with commission section - Enhanced */
.showcase-text-wrapper {
    max-width: 1100px;
    margin: 3.5rem auto 0;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 252, 240, 0.95) 100%);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(182, 140, 0, 0.2);
    box-shadow: 0 12px 48px rgba(182, 140, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.showcase-text-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.showcase-text-wrapper::after {
    content: '✨';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    opacity: 0.3;
}

.showcase-desc-inline {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 1.25rem;
    text-align: center;
    position: relative;
}

.showcase-desc-inline:last-child {
    margin-bottom: 0;
}

.showcase-desc-highlight-inline {
    font-weight: 700;
    color: var(--color-text);
    font-size: 1.25rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin-top: 0.5rem;
}

/* Promo card - Enhanced visual design */
.promo-card {
    max-width: 980px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFEF8 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 60px rgba(182, 140, 0, 0.12), 0 0 0 1px rgba(182, 140, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 70px rgba(182, 140, 0, 0.18), 0 0 0 1px rgba(182, 140, 0, 0.2);
}

.promo-content {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.promo-title {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.35;
    margin: 0;
    position: relative;
    padding-left: 1.5rem;
}

.promo-title::before {
    content: '💰';
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.promo-title strong {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(182, 140, 0, 0.03);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-primary);
}

.promo-detail-item {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.promo-detail-item::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: 900;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.promo-detail-item strong {
    color: var(--color-text);
    font-weight: 700;
}

.promo-badge {
    text-align: center;
    padding: 1.25rem 2rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(182, 140, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.promo-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.promo-badge strong {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1A1A1A;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .showcase-text-wrapper {
        padding: 1.5rem;
        margin: 2rem auto 0;
    }

    .showcase-desc-inline {
        font-size: 1.05rem;
        text-align: left;
    }

    .promo-card {
        padding: 2rem 1.5rem;
    }

    .promo-title {
        font-size: 1.5rem;
    }

    .promo-detail-item {
        font-size: 1rem;
    }

    .promo-badge strong {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .showcase-text-wrapper {
        padding: 1.25rem;
    }

    .showcase-desc-inline {
        font-size: 0.95rem;
    }

    .promo-card {
        padding: 1.5rem 1rem;
    }

    .promo-content {
        gap: 1.25rem;
    }

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

    .promo-detail-item {
        font-size: 0.95rem;
    }

    .promo-badge {
        padding-top: 1.25rem;
    }

    .promo-badge strong {
        font-size: 1.1rem;
    }
}

.benefits-grid {
    max-width: 1100px;
    display: grid;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-premium);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-smooth), transform var(--transition-smooth);
    pointer-events: none;
}

.benefit-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow-lg);
}

.benefit-card:hover::before {
    opacity: 0.08;
}

.benefit-card:hover::after {
    opacity: 1;
    transform: translate(10%, 10%);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: transform var(--transition-premium), box-shadow var(--transition-premium);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.benefit-description {
    color: var(--color-text-secondary);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Progress Tracker */
.progress-tracker-section {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.progress-tracker-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.progress-tracker-description {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.tracker-demo {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
}

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

.tracker-asset {
    font-weight: 700;
    color: var(--color-text);
}

.tracker-level {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.tracker-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.tracker-fill {
    height: 100%;
    width: 60%;
    background: var(--gradient-primary);
    border-radius: 10px;
    animation: trackerFill 3s ease-in-out infinite;
}

@keyframes trackerFill {
    0%, 100% {
        width: 60%;
    }
    50% {
        width: 65%;
    }
}

.tracker-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

.tracker-current {
    color: var(--color-text);
    font-weight: 600;
}

.tracker-target {
    color: var(--color-text-tertiary);
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .benefit-title {
        font-size: 1.15rem;
    }
    
    .benefit-description {
        font-size: 0.95rem;
    }

    .progress-tracker-section {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 44px;
        height: 44px;
    }
    
    .benefit-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .benefit-title {
        font-size: 1.05rem;
    }
    
    .benefit-description {
        font-size: 0.9rem;
    }
    
    .progress-tracker-section {
        padding: 1.5rem;
    }
}

/* ============================================
   WHY ACY SECTION
   ============================================ */

.why-acy {
    background-image: url('../../images/common/bg_desktop.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 5rem 0;
    position: relative;
}

/* Optional: Add overlay for better text readability */
.why-acy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

.why-acy .container {
    position: relative;
    z-index: 1;
}

.reason-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 1rem 1rem;
    box-shadow: 0 20px 60px rgba(182, 140, 0, 0.12);
    border: 1px solid rgba(182, 140, 0, 0.15);
}

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(182, 140, 0, 0.1);
}

.reason-item:last-of-type {
    border-bottom: none;
}

.reason-check {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(182, 140, 0, 0.25);
}

.reason-check svg {
    width: 20px;
    height: 20px;
    color: #FFFFFF;
    stroke-width: 3;
}

.reason-content {
    flex: 1;
}

.reason-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.reason-description {
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.reason-cta-wrapper {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .why-acy {
        padding: 3.5rem 0;
        background-image: url('../../images/common/bg_mobile.png');
    }

    .reason-wrapper {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .reason-item {
        padding: 1.25rem 0;
        gap: 1rem;
    }
    
    .reason-check {
        width: 36px;
        height: 36px;
    }
    
    .reason-check svg {
        width: 18px;
        height: 18px;
    }
    
    .reason-title {
        font-size: 1.1rem;
    }
    
    .reason-description {
        font-size: 0.95rem;
    }
    
    .reason-cta-wrapper {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .reason-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .reason-check {
        width: 32px;
        height: 32px;
    }
    
    .reason-check svg {
        width: 16px;
        height: 16px;
    }
    
    .reason-title {
        font-size: 1rem;
    }
    
    .reason-description {
        font-size: 0.9rem;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section { padding: 8rem 0; background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 215, 0, 0.08) 50%, #FFFFFF 100%); position: relative; overflow: hidden; }

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.18) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(100px);
}

.cta-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.cta-terms-link {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    text-align: center;
}

.cta-terms-link:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.cta-buttons-spacing {
    margin-top: 2rem;
}

.cta-terms-disclaimer {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.cta-tagline {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 0;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta-button-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .cta-terms-link {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq { background: linear-gradient(180deg, #FFFFFF 0%, #FFFDF5 100%); }
.steps {
    max-width: 980px;
    margin: 2rem auto 2rem auto;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
    position: relative;
}

/* Connection line between steps */
.steps::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: linear-gradient(180deg, var(--color-primary) 0%, rgba(182, 140, 0, 0.3) 50%, var(--color-primary) 100%);
    opacity: 0.3;
    z-index: 0;
}

.step-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: start;
    gap: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFEF8 100%);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem 2rem 2rem 1.5rem;
    box-shadow: 0 10px 30px rgba(182, 140, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-item:hover {
    transform: translateY(-6px) translateX(4px);
    box-shadow: 0 20px 50px rgba(182, 140, 0, 0.15);
    border-color: var(--color-primary);
}

.step-item:hover::before {
    opacity: 1;
}

.step-num {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: #1A1A1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 0 8px 24px rgba(182, 140, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.step-num::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-item:hover .step-num {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(182, 140, 0, 0.4);
}

.step-item:hover .step-num::after {
    opacity: 0.5;
}

.step-content {
    padding-top: 0.25rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.step-item:hover .step-title {
    color: var(--color-primary);
}

.step-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.step-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.step-link:hover {
    color: var(--color-text);
    border-bottom-color: var(--color-primary);
}

.step-link::after {
    content: '→';
    margin-left: 0.25rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.3s ease;
    display: inline-block;
}

.step-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .steps {
        gap: 1.25rem;
    }

    .steps::before {
        left: 21px;
    }

    .step-item {
        grid-template-columns: 48px 1fr;
        padding: 1.5rem 1.5rem 1.5rem 1.25rem;
        gap: 1.25rem;
    }

    .step-item:hover {
        transform: translateY(-4px) translateX(2px);
    }

    .step-num {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .step-title {
        font-size: 1.125rem;
    }

    .step-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .steps::before {
        left: 18px;
        width: 1.5px;
    }

    .step-item {
        grid-template-columns: 42px 1fr;
        padding: 1.25rem 1rem 1.25rem 1rem;
        gap: 1rem;
    }

    .step-item:hover {
        transform: translateY(-3px) translateX(1px);
    }

    .step-num {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .step-title {
        font-size: 1.05rem;
    }

    .step-text {
        font-size: 0.95rem;
    }
}
.step-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}
.step-title { font-weight: 700; color: var(--color-text); margin-bottom: 0.25rem; }
.step-text { color: var(--color-text-secondary); }
.step-divider { height: 2px; background: rgba(182, 140, 0, 0.15); width: 60%; justify-self: center; }

.promo-banners {
    max-width: 1100px;
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
}
.promo-banner {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 20px 60px rgba(182, 140, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #FFFFFF;
}
.promo-banner:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 70px rgba(182, 140, 0, 0.18);
}
.promo-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.promo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.promo-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.25rem;
    text-align: center;
}

.promo-cta {
    display: inline-block;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    text-align: center;
}

.promo-cta:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .promo-banners {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ============================================
   SHOWCASE SECTION (glass cards + marquee)
   ============================================ */
.showcase { background: linear-gradient(180deg, #FFFDF5 0%, #FFFFFF 100%); padding-top: 4rem; }

.showcase-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.showcase-desc-highlight {
    margin: 1rem auto 0;
    font-weight: 600;
}
.showcase-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.glass {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(182,140,0,0.2);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(182,140,0,0.12);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.glass svg {
    width: 48px;
    height: 48px;
    color: #1A1A1A;
    margin-bottom: 1rem;
    flex-shrink: 0;
}
.glass h3 {
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0 0 0.75rem 0;
    color: var(--color-text);
}
.glass p {
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}
.marquee { width: 100%; overflow: hidden; padding: 1rem 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); margin-top: 2rem; }
.marquee-track { display: flex; gap: 3rem; animation: scrollX 20s linear infinite; white-space: nowrap; color: var(--color-text-secondary); font-weight: 600; }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 1024px) { 
    .showcase-grid { 
        grid-template-columns: 1fr; 
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .showcase {
        padding-top: 3rem;
    }
    
    .glass {
        padding: 1.5rem;
    }
    
    .glass svg {
        width: 40px;
        height: 40px;
    }
    
    .glass h3 {
        font-size: 1rem;
    }
    
    .glass p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .glass {
        padding: 1.25rem;
    }
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-primary);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--color-primary-light);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--color-text-secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* ============================================
   TERMS SECTION
   ============================================ */

.terms {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.terms-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.terms-content {
    max-width: 900px;
}

.terms-content p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ============================================
   FOOTER - ACY Securities Style
   ============================================ */

.footer {
    background: #ffffff;
    color: #1a1a1a;
    padding: 0;
    margin: 0;
}

.footer-wrapper {
    width: 100%;
    background: white;
}

.section-container-wrapper {
    width: 100%;
    padding: 60px 0;
}

.wider-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Banner - Logo and Social Icons */
.footer-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 40px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo img {
    height: 48px;
    width: auto;
}

.divide-line {
    width: 1px;
    height: 40px;
    background: #d1d1d1;
}

.anniversary img {
    height: 40px;
    width: auto;
}

.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-link a {
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-link a:hover {
    transform: translateY(-3px);
    opacity: 0.7;
}

.social-link-img-default {
    width: 36px;
    height: 36px;
}

/* Footer Navigation */
.footer-nav {
    margin-bottom: 50px;
}

.footer-nav-desktop {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 30px;
}

.footer-nav-box {
    min-width: 0;
}

.footer-nav-box .body-bold {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-decoration: none;
    display: inline-block;
}

.footer-nav-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-box ul li {
    margin-bottom: 12px;
}

.footer-nav-normal {
    font-size: 14px;
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav-normal:hover {
    color: #2563EB;
}

/* Footer Companies */
.footer-compaines {
    display: flex;
    gap: 40px;
    padding: 30px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-compaines-item {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-compaines-item span {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.footer-compaines-item:hover span {
    color: #2563EB;
}

/* Footer Contacts */
.footer-contacts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 40px 0;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 50px;
}

.contact-box {
    text-align: center;
}

.contact-box .title {
    display: block;
    font-size: 13px;
    color: #888888;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact-text {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-box a:hover .footer-contact-text {
    color: #2563EB;
}

/* Footer Awards */
.footer-awards {
    display: grid;
    grid-template-columns: 200px 1fr 150px;
    gap: 40px;
    padding: 50px 0;
    align-items: flex-start;
}

.image-wrapper {
    position: relative;
    text-decoration: none;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.signature {
    margin-top: 15px;
}

.signature img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.signature p {
    font-size: 11px;
    color: #666666;
    line-height: 1.4;
    margin: 0;
}

.prize-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
    align-items: start;
}

.footer-awards-box {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    align-items: flex-start;
}

.footer-awards-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.award-icon img {
    width: 26px;
    height: 34px;
}

.award-org-layout {
    flex: 1;
}

.award-org {
    font-size: 11px;
    color: #888888;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.award-name {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.tim-cahill-cartoon {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Footer Disclaimer */
.footer-disclaimer {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-top: 50px;
}

.disclaimer-text {
    font-size: 13px;
    color: #666666;
    line-height: 1.8;
}

.disclaimer-text .ck-content {
    margin-bottom: 15px;
}

.disclaimer-content {
    margin-top: 20px;
}

.disclaimer-content > div {
    margin-bottom: 15px;
}

.disclaimer-text a {
    color: #2563EB;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.disclaimer-text a:hover {
    color: #1E40AF;
}

.footer-info-wrapper {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #d1d1d1;
}

.copyright {
    font-size: 13px;
    color: #666666;
}

.copyright-disclaimer {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.disclaimer-link {
    font-size: 13px;
}

.copyright-border-right {
    padding-right: 20px;
    border-right: 1px solid #d1d1d1;
}

.disclaimer-link a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.disclaimer-link a:hover {
    color: #2563EB;
}

.disclaimer-link p {
    margin: 0;
}

.vlink-classname {
    text-decoration: none;
}

.raw-html-wrapper {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-nav-desktop {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-awards {
        grid-template-columns: 1fr;
    }

    .tim-cahill-cartoon {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .divide-line {
        display: none;
    }

    .social-icons {
        width: 100%;
        justify-content: flex-start;
    }

    .footer-nav-desktop {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-compaines {
        flex-direction: column;
        gap: 20px;
    }

    .footer-contacts {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-awards {
        grid-template-columns: 1fr;
    }

    .prize-wrapper {
        grid-template-columns: 1fr;
    }

    .copyright-disclaimer {
        flex-direction: column;
        gap: 10px;
    }

    .copyright-border-right {
        padding-right: 0;
        border-right: none;
    }
}

@media (max-width: 480px) {
    .footer-nav-desktop {
        grid-template-columns: 1fr;
    }

    .section-container-wrapper {
        padding: 40px 0;
    }

    .wider-section-container {
        padding: 0 15px;
    }

    .footer-disclaimer {
        padding: 20px;
    }
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Selection */
::selection {
    background: var(--color-primary);
    color: white;
}

::-moz-selection {
    background: var(--color-primary);
    color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-light);
}
