/*
Theme Name: Master - Events That Cannot Fail
Theme URI: http://example.com/master-events
Author: Antigravity
Description: A premium WordPress theme for the Master - Events That Cannot Fail program.
Version: 1.0
Text Domain: master-events
*/

:root {
    --primary-color: #d4af37;
    /* Gold */
    --secondary-color: #f1f5f9;
    /* Light Blue Grey */
    --accent-color: #064e3b;
    /* Emerald */
    --text-light: #1e293b;
    /* Dark Slate */
    --text-muted: #64748b;
    /* Muted Slate */
    --bg-dark: #ffffff;
    /* White Background */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphism Classes */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Header & Navigation */
header {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(0px);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
    background: #1e293b;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: 0.3s ease;
}

.logo-accent {
    background: var(--accent-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    margin-top: 8px;
}

header.scrolled .logo-text {
    font-size: 1rem;
}

nav ul li a {
    color: rgba(30, 41, 59, 0.7);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 5px 0;
    transition: 0.3s ease;
}

nav ul li a:hover {
    color: #000;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Premium Button */
.btn-premium {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--primary-color), #b8860b);
    color: #000;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Sections */
section {
    padding: 100px 0;
}

/* --- Advanced UI Enhancements --- */
:root {
    --accent-gold: linear-gradient(135deg, #d4af37 0%, #f7e08a 50%, #d4af37 100%);
    --accent-emerald: linear-gradient(135deg, #064e3b 0%, #10b981 50%, #064e3b 100%);
    --accent-sapphire: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e3a8a 100%);
    --accent-ruby: linear-gradient(135deg, #7f1d1d 0%, #ef4444 50%, #7f1d1d 100%);
    --glass-border: rgba(0, 0, 0, 0.08);
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/p6.png');
    /* Subtle Noise */
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
}

/* Background Spotlights */
.spotlight {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    border-radius: 50%;
    z-index: 0;
}

/* Section Differentiation */
.reason-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.reason-section:nth-child(odd) {
    background: #ffffff;
}

.reason-section:nth-child(even) {
    background: #f8fafc;
}

.reason-variant-2 {
    background: radial-gradient(circle at 10% 20%, rgba(6, 78, 59, 0.05) 0%, transparent 40%) !important;
}

.reason-variant-3 {
    background: radial-gradient(circle at 90% 80%, rgba(30, 58, 138, 0.05) 0%, transparent 40%) !important;
}

/* Giant Decorative Number */
.bg-number {
    position: absolute;
    font-size: 25rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    font-family: 'Outfit';
}

.reason-row:nth-child(even) .bg-number {
    left: auto;
    right: 10%;
}

/* High-Impact Reason Cards */
.reason-card {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 80px;
}

.reason-card.inverted {
    flex-direction: row-reverse;
}

.reason-card.centered {
    flex-direction: column;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.reason-card.centered .reason-image {
    width: 100%;
    max-height: 400px;
}

/* Metallic Accent Border */
.accent-border {
    position: relative;
    padding-left: 30px;
}

.accent-border::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 4px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.reason-variant-2 .accent-border::before {
    background: var(--accent-emerald);
}

.reason-variant-3 .accent-border::before {
    background: var(--accent-sapphire);
}

/* --- Hero Section & Animations --- */
@keyframes meshGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #f8fafc, #f1f5f9, #ffffff, #e2e8f0);
    background-size: 400% 400%;
    animation: meshGradient 15s ease infinite;
    z-index: -1;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -2px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 40px;
    border-radius: 40px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.hero-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 50%);
    pointer-events: none;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-bg-text {
    position: absolute;
    font-size: 20vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    white-space: nowrap;
    z-index: -1;
    font-family: 'Outfit';
}

.text-gold-gradient {
    background: var(--accent-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- End Enhancements --- */

/* Side-by-Side Reasons Layout */
.reason-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
}

.reason-row:nth-child(even) {
    flex-direction: row-reverse;
}

.reason-content {
    flex: 1;
}

.reason-image {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.reason-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.reason-row:hover .reason-image img {
    transform: scale(1.05);
}

.reason-number {
    font-size: 5rem;
    font-family: 'Outfit';
    font-weight: 900;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
    margin-bottom: -20px;
}

/* Investment Section Styles */
.investment-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.investment-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), transparent, rgba(16, 185, 129, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.price-metallic {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -4px;
    margin: 30px 0;
    background: var(--accent-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 20px rgba(212, 175, 55, 0.2));
}

.value-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: left;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.value-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Emerald Pulse Urgency */
.pulse-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.trust-icons {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 2rem;
    opacity: 0.3;
    filter: grayscale(1);
}

/* --- Footer Redesign --- */
.site-footer {
    background: #f8fafc;
    padding: 100px 0 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.footer-nav-title {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-list li {
    margin-bottom: 12px;
}

.footer-link-list a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-link-list a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: 0.3s ease;
}

.footer-link-list a:hover {
    color: #000;
}

.footer-link-list a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.social-btn:hover {
    transform: scale(1.1) translateY(-5px);
    background: var(--accent-gold);
    color: #000;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.legal-bar {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    opacity: 0.6;
}

.footer-meta {
    display: flex;
    gap: 30px;
}

.footer-meta a {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-decoration: none;
    transition: 0.3s;
}

.footer-meta a:hover {
    color: #000;
}

/* --- End Footer Redesign --- */

/* Mobile Navigation Toggle */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2000;
}

.burger-bar {
    width: 30px;
    height: 2px;
    background: #1e293b;
    transition: 0.3s ease;
}

/* Reasons Typography Restoration */
.reason-content ul {
    list-style: none;
    margin-top: 20px;
}

.reason-content ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.reason-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 800;
}

.reason-content h3 {
    color: var(--text-light);
    margin-top: 30px;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
}

/* Mobile Menu Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-overlay ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-nav-overlay li {
    margin: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s ease;
}

.mobile-nav-overlay.active li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-overlay a {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    text-decoration: none;
    text-transform: uppercase;
}

.mobile-nav-overlay .btn-premium {
    margin-top: 20px;
}

.mobile-nav-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: #1e293b;
    cursor: pointer;
    line-height: 1;
    transition: 0.3s ease;
    z-index: 10;
}

.mobile-nav-close:hover {
    color: #d4af37;
    /* Primary Gold */
    transform: rotate(90deg);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .burger-menu {
        display: flex;
    }

    /* Hide standard nav on mobile/tablet */
    header nav>ul {
        display: none !important;
    }

    section {
        padding: 60px 0 !important;
    }

    h1 {
        font-size: 3rem !important;
    }

    /* Enforce Image TOP stacking on mobile (Column Reverse) */
    .reason-card,
    .reason-card.inverted {
        flex-direction: column-reverse !important;
        gap: 30px;
        margin-bottom: 80px;
        display: flex;
    }

    .reason-card>div {
        width: 100%;
    }

    .reason-image {
        width: 100%;
        max-height: 400px;
    }

    /* Hero Responsive */
    .hero-card>div {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .hero-card>div>div:first-child {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-right: 0 !important;
        padding-bottom: 30px;
        margin-bottom: 30px;
        text-align: center !important;
    }
}

@media (max-width: 768px) {

    /* Header Responsive */
    header .container {
        flex-direction: row;
        /* Keep logo and burger side-by-side */
        justify-content: space-between;
        align-items: center;
    }

    /* Ensure desktop nav is properly hidden */
    header nav>ul {
        display: none !important;
    }


    .logo-text {
        font-size: 1.4rem;
    }

    /* Investment Responsive */
    .investment-card {
        padding: 40px 20px;
        border-radius: 30px;
    }

    .price-metallic {
        font-size: 3.5rem;
    }

    .value-list {
        grid-template-columns: 1fr;
    }

    .trust-icons {
        flex-wrap: wrap;
        gap: 20px;
        font-size: 1.5rem;
    }

    /* Footer Responsive */
    .site-footer {
        padding: 60px 0 30px;
    }

    .footer-meta {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        margin-top: 20px;
    }

    .legal-bar {
        flex-direction: column;
        text-align: center;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .btn-premium {
        width: 100%;
        padding: 15px !important;
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

/* ==========================================================================
   PREMIUM UI OVERHAUL - Il Metodo
   ========================================================================== */

:root {
    --lux-primary: #d4af37;
    --lux-secondary: #c5a028;
    --lux-accent: #064e3b;
    --lux-bg: #fdfdfb;
    --lux-text: #1e293b;
    --lux-glass: rgba(255, 255, 255, 0.9);
    --lux-glass-border: rgba(212, 175, 55, 0.1);
    --lux-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.04);
}

.il-metodo-page {
    background-color: var(--lux-bg);
    color: var(--lux-text);
    overflow-x: hidden;
    /* Subtle Grain Texture */
    background-image: url('C:/Users/malik/.gemini/antigravity/brain/5aae24a4-383c-428b-bd4e-1c728c158597/luxury_textures_metodo_1769080130403.png');
    background-size: cover;
    background-attachment: fixed;
    background-blend-mode: overlay;
}

/* Soft Premium Animated Background */
.hero-bg-accent {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.04), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 78, 59, 0.03), transparent 40%);
    z-index: 0;
    filter: blur(120px);
    animation: meshRotate 40s linear infinite;
    pointer-events: none;
}

@keyframes meshRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-20px, 20px) scale(1.1);
    }
}

.lux-accent-shape-1 {
    position: fixed;
    top: 20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03), transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: float 15s ease-in-out infinite;
}

.lux-accent-shape-2 {
    position: fixed;
    bottom: 10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 78, 59, 0.02), transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: float 20s ease-in-out infinite reverse;
}

.lux-accent-shape-3 {
    position: fixed;
    top: 50%;
    right: 15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.02), transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: float 12s ease-in-out infinite;
}

.metodo-hero {
    padding: 220px 0 140px;
    background: transparent;
    position: relative;
    z-index: 100;
}

.hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 950;
    color: rgba(212, 175, 55, 0.03);
    z-index: -1;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    font-family: 'Outfit';
}

.badge-premium {
    display: inline-block;
    padding: 10px 24px;
    background: #fff;
    border: 1px solid var(--lux-primary);
    color: var(--lux-primary);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.text-glow {
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    letter-spacing: -2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

/* Glassmorphism Cards */
.glass-card {
    background: #fff;
    border: 1px solid var(--lux-glass-border);
    border-radius: 32px;
    padding: 40px 30px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    text-align: center;
    box-shadow: var(--lux-shadow);
    position: relative;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1px;
    background: linear-gradient(135deg, var(--lux-primary), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
}

.glass-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 40px 80px -20px rgba(212, 175, 55, 0.15);
}

.stat-icon-wrapper {
    font-size: 2rem;
    margin-bottom: 15px;
}

.stat-icon-wrapper i {
    background: linear-gradient(135deg, var(--lux-primary), var(--lux-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
}

.stat-text {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--lux-text);
    text-transform: uppercase;
}

/* Intro Section LUX */
.intro-glass {
    background: #fff;
    padding: 80px !important;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.04);
    position: relative;
    border-radius: 40px !important;
    border: 1px solid var(--lux-glass-border) !important;
}

.intro-glass h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

/* ========================================
   PROGRAMMA E MODALITÀ SECTION
   ======================================== */

.metodo-program {
    padding: 140px 0;
    position: relative;
    z-index: 100;
    background: linear-gradient(180deg,
            rgba(212, 175, 55, 0.04) 0%,
            transparent 30%,
            rgba(6, 78, 59, 0.03) 70%,
            transparent 100%);
    overflow: hidden;
}

/* Decorative Background Shapes */
.metodo-program::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

.metodo-program::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 78, 59, 0.08), transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 25s ease-in-out infinite reverse;
    z-index: 0;
}

.metodo-program .container {
    position: relative;
    z-index: 10;
}

.metodo-program .section-header {
    margin-bottom: 80px;
}

.metodo-program .display-4 {
    font-weight: 950;
    letter-spacing: -3px;
    color: var(--lux-text);
    text-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
}

/* Program Cards */
.program-card {
    background: #ffffff;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 32px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px -12px rgba(0, 0, 0, 0.12),
        0 8px 16px -8px rgba(0, 0, 0, 0.08);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px -12px rgba(0, 0, 0, 0.18),
        0 16px 32px -8px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Accent Borders */
.border-left-accent {
    border-left: 6px solid var(--lux-primary);
    background: linear-gradient(to right, rgba(212, 175, 55, 0.08), transparent 50%);
    box-shadow: inset 6px 0 20px rgba(212, 175, 55, 0.15);
}

.border-left-danger {
    border-left: 6px solid #ef4444;
    background: linear-gradient(to right, rgba(239, 68, 68, 0.08), transparent 50%);
    box-shadow: inset 6px 0 20px rgba(239, 68, 68, 0.15);
}

.border-left-danger .text-danger {
    color: #dc2626 !important;
}

/* Detail Items */
.detail-item {
    padding: 28px;
    background: #ffffff;
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.08);
}

.detail-item:hover {
    background: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.2);
}

.detail-item h4 {
    color: var(--lux-primary);
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
}

.detail-item ul {
    margin: 0;
    padding: 0;
}

.detail-item li {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--lux-text);
    font-weight: 500;
}

.detail-item i {
    font-size: 1.1rem;
    color: var(--lux-primary);
}

/* Target Box */
.target-box {
    padding-top: 32px;
    margin-top: 32px;
}

.badge-target {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--lux-text);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 24px;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.1);
}

.badge-target:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(212, 175, 55, 0.25);
    background: linear-gradient(135deg, var(--lux-primary), var(--lux-secondary));
    color: #000;
    border-color: var(--lux-primary);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .metodo-program {
        padding: 80px 0;
    }

    .metodo-program .row {
        gap: 40px !important;
    }

    .program-card {
        margin-bottom: 24px;
    }

    .detail-item {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .metodo-program {
        padding: 60px 0;
    }

    .metodo-program .display-4 {
        font-size: 2.5rem;
    }

    .program-card {
        padding: 24px !important;
        border-radius: 24px;
    }

    .detail-item {
        padding: 16px;
        margin-bottom: 16px;
    }

    .target-box .badge {
        font-size: 0.85rem;
        padding: 10px 18px;
    }
}


/* ROADMAP VANGUARD EXPERIENTIAL GRID */
.metodo-roadmap {
    padding: 180px 0;
    position: relative;
    background: radial-gradient(circle at 90% 10%, rgba(212, 175, 55, 0.05), transparent 40%);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.timeline-line {
    display: none;
    /* Removed for grid layout */
}

.timeline-item {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.timeline-item.left,
.timeline-item.right {
    padding: 0;
    text-align: left;
    justify-content: stretch;
}

.timeline-item .module-glass-card {
    max-width: 100%;
    margin: 0;
}

.timeline-dot {
    display: none;
    /* Removed for grid layout */
}

.module-glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(40px);
    border: 1px solid var(--lux-glass-border);
    border-radius: 80px 20px;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.06);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
    padding: 0;
    /* Let children handle padding */
}

.timeline-item.right .module-glass-card {
    border-radius: 20px 80px;
}

.module-header-lux {
    padding: 40px;
    background: rgba(255, 255, 255, 0.3);
    border-bottom: 1px dashed var(--lux-glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.module-body-lux {
    padding: 40px;
}

.module-number {
    font-size: 14vw;
    font-weight: 950;
    opacity: 0.03;
    position: absolute;
    right: -2vw;
    top: -2vw;
    font-family: 'Outfit';
    color: var(--lux-primary);
    line-height: 0.7;
    pointer-events: none;
}

.module-index-visible {
    font-size: 5rem;
    font-weight: 900;
    font-family: 'Outfit';
    color: var(--lux-text);
    opacity: 0.1;
    line-height: 1;
}

.module-icon-lux {
    font-size: 3rem;
    color: #fff;
    background: var(--lux-primary);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 70%;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
    margin: 0;
    /* Align perfectly in flex container */
}

.lux-objective {
    background: rgba(212, 175, 55, 0.04);
    padding: 18px 25px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    display: block;
    margin-bottom: 25px;
}

.module-details-lux ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-details-lux li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    font-size: 1.15rem;
    line-height: 1.5;
    color: var(--lux-text);
    opacity: 0.8;
}

.module-details-lux li::before {
    content: '→';
    font-weight: 900;
    color: var(--lux-primary);
    margin-right: 15px;
    font-size: 1.3rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.lux-objective i {
    color: var(--lux-primary);
    margin-right: 12px;
}

/* Vanguard Decorations */
.il-metodo-page::after {
    content: '01';
    position: fixed;
    bottom: 5%;
    left: 2%;
    font-size: 15vw;
    font-weight: 950;
    color: rgba(212, 175, 55, 0.02);
    z-index: -1;
    font-family: 'Outfit';
    pointer-events: none;
}

@media (max-width: 991px) {
    .timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline-item {
        margin-bottom: 30px;
    }

    .module-glass-card {
        border-radius: 40px !important;
    }

    .module-number {
        font-size: 8rem;
    }

    .module-header-lux {
        padding: 30px !important;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .display-1 {
        font-size: 3rem;
    }

    .badge-premium {
        margin-top: 4rem;
    }

    .intro-glass h2 {
        font-size: 2.5rem;
        line-height: 1.1;
        letter-spacing: -2px;
    }

    .p11-5 {
        padding: 2rem !important;
    }

    .final-statement-card p.fs-3 {
        font-weight: 900;
        line-height: 1;
        font-size: 1rem !important;
        letter-spacing: -0.05em;
    }
}


/* ========================================
   CHI TI PARLA PAGE STYLES
   ======================================== */

/* ========================================
/* ========================================
   CHI TI PARLA PAGE STYLES - VANGUARD ELITE
   ======================================== */

.chi-ti-parla-page {
    position: relative;
    overflow-x: hidden;
    background-color: #fdfdfb;
    color: #1a1a1a;
}

.chi-ti-parla-page::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.04;
    pointer-events: none;
    z-index: 9999;
}

/* Metadata Labels & Accents */
.meta-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--lux-primary);
    display: inline-block;
    padding: 6px 14px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.meta-coord {
    position: absolute;
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    color: rgba(0, 0, 0, 0.15);
    letter-spacing: 3px;
    pointer-events: none;
    font-weight: 600;
}

/* Glassmorphism 2.0 */
.glass-card-vanguard {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 48px;
    box-shadow:
        0 30px 60px -12px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.glass-card-vanguard:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.7);
}

/* Hero Section Enhancement */
.chi-hero {
    padding: 280px 0 160px;
    background: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 40%);
}

.hero-watermark {
    position: absolute;
    top: 5%;
    left: 0;
    font-size: 15vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    writing-mode: vertical-rl;
    z-index: 0;
    pointer-events: none;
}

.chi-hero .display-1 {
    font-weight: 950;
    font-size: clamp(4.5rem, 11vw, 9rem);
    line-height: 0.8;
    letter-spacing: -0.06em;
    color: #111;
}

.chi-hero .badge-premium {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.75rem;
    padding: 12px 30px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 100px;
    display: inline-block;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

/* Unique Bullets & Professional List Icons */
.custom-list,
.custom-list-large,
.custom-list-why,
.brands-requirements-list {
    list-style: none;
    padding-left: 0;
}

/* Operational Focus Icons */
.custom-list li {
    padding-left: 45px;
    position: relative;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.custom-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background: var(--lux-primary);
    transition: all 0.4s ease;
}

.custom-list li:hover::before {
    width: 45px;
    background: #000;
}

/* Journey "Slash" Markers */
.custom-list-large li {
    padding: 30px 40px 30px 80px;
    position: relative;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    line-height: 1.1;
    transition: all 0.4s ease;
}

.custom-list-large li:hover {
    background: #fff;
    transform: translateX(15px);
}

.custom-list-large li::before {
    content: "/";
    position: absolute;
    left: 30px;
    color: var(--lux-primary);
    font-weight: 200;
    font-size: 3rem;
    line-height: 1;
    opacity: 0.4;
    top: 50%;
    transform: translateY(-50%);
}

/* Philosophy Section "Alert" Icons */
.custom-list-why li {
    padding: 25px 30px 25px 70px;
    position: relative;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    margin-bottom: 1.2rem;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.4s ease;
}

.custom-list-why li:hover {
    border-color: var(--lux-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.custom-list-why li::before {
    content: "!";
    position: absolute;
    left: 20px;
    width: 32px;
    height: 32px;
    background: #111;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Client Category Refinement */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.client-category {
    padding: 80px 60px !important;
    border: 1px solid rgba(212, 175, 55, 0.1) !important;
}

.category-header {
    margin-bottom: 3rem !important;
}

.category-number {
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    line-height: 1;
    font-weight: 100;
    color: var(--lux-primary);
    opacity: 0.12;
    margin-bottom: -1.5rem;
    display: block;
    letter-spacing: -5px;
}

.client-item {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    color: #444;
}

.client-item:last-child {
    border-bottom: none;
}

/* Closing Statement Card */
.final-statement-card {
    background: #000;
    color: #fff;
    padding: 100px !important;
    border-radius: 48px !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 120px 180px -60px rgba(0, 0, 0, 0.5);
}

.final-statement-card p.fs-3 {
    font-weight: 900;
    line-height: 1;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.05em;
}

/* Responsive Overrides 4.0 */
@media (max-width: 1400px) {
    .chi-hero {
        padding: 240px 0 120px;
    }
}

@media (max-width: 1200px) {
    .client-category {
        padding: 50px 40px !important;
    }

    .display-1 {
        font-size: 5rem;
    }
}

@media (max-width: 991px) {
    .chi-intro .intro-glass {
        padding: 50px !important;
    }

    .custom-list-large li {
        font-size: 1.25rem;
        padding: 25px 25px 25px 60px;
    }

    .custom-list-large li::before {
        left: 20px;
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .final-statement-card {
        padding: 60px 40px !important;
    }

    .chi-hero .display-1 {
        font-size: 4rem !important;
    }

    .glass-card-vanguard {
        border-radius: 32px;
    }

    .category-number {
        font-size: 4rem;
    }
}

@media (max-width: 576px) {
    .chi-hero {
        padding: 160px 0 60px;
    }

    .glass-card-vanguard {
        padding: 40px 25px !important;
    }

    .meta-label {
        font-size: 0.6rem;
        letter-spacing: 0.3em;
    }

    .custom-list li {
        font-size: 1rem;
        padding-left: 35px;
    }

    .custom-list-why li {
        padding-left: 60px;
        font-size: 1rem;
    }
}

.p-5 {
    padding: 5rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* Glassmorphism 2.0 - "Proper" Cards */
.glass-card-vanguard {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow:
        0 8px 32px 0 rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.glass-card-vanguard::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.8s ease;
}

.glass-card-vanguard:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow:
        0 20px 60px 0 rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(212, 175, 55, 0.1);
}

.glass-card-vanguard:hover::before {
    opacity: 1;
}

/* Premium Bullets - "Proper" Lists */
.custom-list-vanguard {
    list-style: none;
    padding-left: 0;
}

.custom-list-vanguard li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s ease;
}

.custom-list-vanguard li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 1px;
    background: var(--lux-primary);
    transition: width 0.4s ease;
}

.custom-list-vanguard li::after {
    content: '';
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 4px;
    height: 4px;
    border-top: 1px solid var(--lux-primary);
    border-right: 1px solid var(--lux-primary);
    opacity: 0.6;
}

.custom-list-vanguard li:hover {
    color: #fff !important;
}

.custom-list-vanguard li:hover::before {
    width: 24px;
}

/* Price Section Enhancement */
.price-tag-vanguard {
    background: linear-gradient(135deg, var(--lux-primary) 0%, #c29b2d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    letter-spacing: -0.03em;
}

/* ==========================================================================
   PAGE 4: THE ALABASTER VAULT (Truly Unique & Professional)
   ========================================================================== */

:root {
    --acq-alabaster: #fcfcfc;
    --acq-onyx: #121213;
    --acq-gold-premium: #c5a044;
}

.vault-light-page {
    background-color: var(--acq-alabaster) !important;
    color: var(--acq-onyx) !important;
    font-family: "Inter", sans-serif !important;
    min-height: 100vh !important;
}

/* Proper Fluid Padding */
.vault-section {
    padding: clamp(6rem, 12vw, 12rem) 0 !important;
}

/* Unique "Proper" Card */
.vault-panel {
    background: #ffffff !important;
    border: 1px solid rgba(197, 160, 68, 0.2) !important;
    border-radius: 32px !important;
    padding: clamp(2rem, 5vw, 5rem) !important;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.04),
        0 10px 30px rgba(0, 0, 0, 0.02) !important;
    position: relative !important;
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1) !important;
    color: #1a1a1b !important;
    overflow: hidden !important;
}

.vault-panel:hover {
    transform: translateY(-12px) !important;
    border-color: var(--acq-gold-premium) !important;
    box-shadow:
        0 60px 120px rgba(197, 160, 68, 0.08),
        0 20px 40px rgba(0, 0, 0, 0.03) !important;
}

/* Proper Bullets (Architectural Style) */
.vault-list {
    list-style: none !important;
    padding-left: 0 !important;
}

.vault-list li {
    position: relative !important;
    padding-left: 45px !important;
    margin-bottom: 2.5rem !important;
    font-size: 1.25rem !important;
    line-height: 1.5 !important;
    color: #444 !important;
}

/* Unique Marker: Thin vertical gold bar + Dot */
.vault-list-check li::before {
    content: "" !important;
    position: absolute !important;
    left: 10px !important;
    top: 5px !important;
    width: 1px !important;
    height: 24px !important;
    background: var(--acq-gold-premium) !important;
    opacity: 0.4 !important;
}

.vault-list-check li::after {
    content: "" !important;
    position: absolute !important;
    left: 7px !important;
    top: 15px !important;
    width: 7px !important;
    height: 7px !important;
    background: var(--acq-gold-premium) !important;
    border-radius: 50% !important;
    box-shadow: 0 0 10px rgba(197, 160, 68, 0.4) !important;
}

.vault-list-cross li::before {
    content: "" !important;
    position: absolute !important;
    left: 8px !important;
    top: 15px !important;
    width: 12px !important;
    height: 1px !important;
    background: #ccc !important;
}

.vault-list-cross li {
    color: #999 !important;
}

/* Unique Typography */
.vault-heading {
    font-weight: 900 !important;
    letter-spacing: -0.04em !important;
    line-height: 1.1 !important;
    color: var(--acq-onyx) !important;
    margin-bottom: 2rem !important;
}

.vault-label {
    text-transform: uppercase !important;
    letter-spacing: 0.4em !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    color: var(--acq-gold-premium) !important;
    margin-bottom: 1.5rem !important;
    display: block !important;
}

/* Side Layout */
.vault-grid {
    display: grid !important;
    grid-template-columns: 1.3fr 1fr !important;
    gap: 80px !important;
}

@media (max-width: 991px) {
    .vault-grid {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }

    /* Avant-Garde Hero: The Architectural Vault */
    .vault-hero-unique {
        position: relative !important;
        padding: 260px 0 160px !important;
        background: #ffffff !important;
        overflow: hidden !important;
    }

    .vault-hero-unique::before {
        content: 'VAULT' !important;
        position: absolute !important;
        top: 50px;
        right: -100px;
        font-size: 40rem !important;
        font-weight: 900 !important;
        color: rgba(212, 175, 55, 0.03) !important;
        line-height: 1 !important;
        z-index: 1 !important;
        pointer-events: none !important;
    }

    .vault-hero-unique .architectural-divider {
        position: absolute !important;
        left: 0;
        top: 0;
        width: 100px;
        height: 100%;
        background: #f8f8f8 !important;
        border-right: 1px solid rgba(0, 0, 0, 0.05) !important;
    }

    .vault-hero-unique .gold-anchor {
        position: absolute !important;
        left: 90px;
        top: 250px;
        width: 20px;
        height: 20px;
        background: var(--acq-gold-premium) !important;
        transform: rotate(45deg) !important;
        z-index: 3 !important;
        box-shadow: 0 0 30px rgba(197, 160, 68, 0.4) !important;
    }

    .vault-hero-unique .display-1 {
        font-weight: 950 !important;
        letter-spacing: -0.06em !important;
        line-height: 0.85 !important;
        color: var(--acq-onyx) !important;
        position: relative !important;
        z-index: 2 !important;
        max-width: 850px !important;
    }

    .vault-hero-unique .hero-meta-box {
        margin-top: 5rem !important;
        display: flex !important;
        gap: 40px !important;
        align-items: flex-start !important;
        z-index: 2 !important;
        position: relative !important;
    }

    .vault-hero-unique .hero-vertical-label {
        writing-mode: vertical-rl !important;
        transform: rotate(180deg) !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5em !important;
        font-size: 0.7rem !important;
        font-weight: 700 !important;
        color: var(--acq-gold-premium) !important;
        opacity: 0.5 !important;
    }

    .vault-hero-unique .hero-description-text {
        max-width: 500px !important;
        font-size: 1.35rem !important;
        line-height: 1.6 !important;
        font-weight: 300 !important;
        color: #555 !important;
    }
}

/* Payment Modal Styling */
.payment-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;


    .payment-modal-overlay.active .payment-modal-glass {
        transform: translateY(0);
    }

    .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .modal-header h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1e293b;
        margin: 0;
        font-family: 'Outfit', sans-serif;
    }

    .close-modal-btn {
        background: none;
        border: none;
        font-size: 2rem;
        line-height: 1;
        color: #94a3b8;
        cursor: pointer;
        transition: color 0.2s;
        padding: 0;
        outline: none;
    }

    .close-modal-btn:hover {
        color: #1e293b;
    }

    .divider-text {
        display: flex;
        align-items: center;
        text-align: center;
        color: #94a3b8;
        margin: 1.5rem 0;
    }

    .divider-text::before,
    .divider-text::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #e2e8f0;
    }

    .divider-text span {
        padding: 0 10px;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
    }

    .btn-action-stripe {
        width: 100%;
        padding: 16px;
        background: #635bff;
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: 'Inter', sans-serif;
    }

    .btn-action-stripe:hover {
        background: #4b44d6;
        box-shadow: 0 4px 12px rgba(99, 91, 255, 0.3);
    }

    .btn-action-stripe i {
        font-size: 1.4rem;
    }

    /* ==========================================================================
   Checkout Page Design (Avant-Garde)
   ========================================================================== */
    .checkout-page {
        position: relative;
        background: #f8fafc;
        /* Keep simple background or use a very subtle texture */
    }

    /* Form Styles */
    .checkout-card {
        border: 1px solid rgba(0, 0, 0, 0.04) !important;
        border-radius: 24px !important;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03) !important;
        background: #ffffff;
    }

    .checkout-card h2 {
        font-family: 'Outfit', sans-serif;
        color: var(--acq-onyx);
        font-weight: 800;
    }

    .form-label {
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #64748b;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .form-control {
        background: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 12px !important;
        color: #1e293b !important;
        font-weight: 500;
        transition: all 0.3s ease !important;
    }

    .form-control:focus {
        background: #ffffff !important;
        border-color: var(--acq-gold-premium) !important;
        box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1) !important;
    }

    /* Order Summary */
    .checkout-summary {
        border: 1px solid rgba(197, 160, 68, 0.15) !important;
        border-radius: 24px !important;
        background: #fff;
        box-shadow: 0 30px 60px -10px rgba(197, 160, 68, 0.05) !important;
    }

    .checkout-summary h4 {
        color: var(--acq-onyx);
        border-bottom: 2px solid rgba(0, 0, 0, 0.03);
        padding-bottom: 15px;
        margin-bottom: 20px !important;
    }

    .checkout-summary .list-group-item {
        background: transparent;
        padding: 15px 0;
    }

    .checkout-summary h6 {
        font-weight: 700;
        font-size: 1.1rem;
        color: var(--acq-onyx);
    }

    .checkout-summary strong {
        font-size: 1.3rem;
        color: var(--acq-gold-premium);
        font-family: 'Outfit', sans-serif;
    }

    .checkout-summary .btn-dark,
    .checkout-page .btn-primary {
        border-radius: 50px !important;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

    .checkout-page .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    }



    .payment-modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .payment-modal-glass {
        background: #ffffff;
        padding: 2.5rem;
        border-radius: 20px;
        width: 100%;
        max-width: 500px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        transform: translateY(20px);
        transition: transform 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.05);
        position: relative;
    }

    .payment-modal-overlay.active .payment-modal-glass {
        transform: translateY(0);
    }

    .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .modal-header h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1e293b;
        margin: 0;
        font-family: 'Outfit', sans-serif;
    }

    .close-modal-btn {
        background: none;
        border: none;
        font-size: 2rem;
        line-height: 1;
        color: #94a3b8;
        cursor: pointer;
        transition: color 0.2s;
        padding: 0;
        outline: none;
    }

    .close-modal-btn:hover {
        color: #1e293b;
    }

    .divider-text {
        display: flex;
        align-items: center;
        text-align: center;
        color: #94a3b8;
        margin: 1.5rem 0;
    }

    .divider-text::before,
    .divider-text::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #e2e8f0;
    }

    .divider-text span {
        padding: 0 10px;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
    }

    .btn-action-stripe {
        width: 100%;
        padding: 16px;
        background: #635bff;
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: 'Inter', sans-serif;
    }

    .btn-action-stripe:hover {
        background: #4b44d6;
        box-shadow: 0 4px 12px rgba(99, 91, 255, 0.3);
    }

    .btn-action-stripe i {
        font-size: 1.4rem;
    }
}
/* Profile Image Styling */
.profile-image-wrapper {
    position: relative;
    z-index: 10;
}

.profile-image-frame {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.25),
                0 20px 50px -10px rgba(0, 0, 0, 0.15),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    border: 3px solid rgba(212, 175, 55, 0.2);
}

.profile-image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), transparent 50%, rgba(6, 78, 59, 0.1));
    z-index: 1;
    pointer-events: none;
}

.profile-image-frame:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 50px 120px -20px rgba(0, 0, 0, 0.3),
                0 30px 60px -10px rgba(0, 0, 0, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.profile-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.profile-image-frame:hover .profile-image {
    transform: scale(1.05);
}

.profile-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 991px) {
    .profile-image-wrapper {
        margin-top: 40px;
    }
    
    .profile-image-frame {
        border-radius: 32px;
    }
}

/* Business Link Section */
.chi-business-link {
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.02), transparent);
}

.business-link-card {
    position: relative;
    overflow: hidden;
}

.business-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lux-primary), transparent);
    opacity: 0.3;
}

.business-icon {
    animation: float 3s ease-in-out infinite;
}

.btn-business-link {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--lux-primary), var(--lux-secondary));
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-business-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-business-link:hover::before {
    left: 100%;
}

.btn-business-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    color: #000;
}

.btn-business-link .link-text {
    position: relative;
    z-index: 1;
}

.btn-business-link i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-business-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 576px) {
    .btn-business-link {
        padding: 15px 30px;
        font-size: 1rem;
    }
}
