/* ==========================================================================
   Rodrigo Kaefer - Style Guide & CSS Code (Luxury Dark/Gold Aesthetic)
   ========================================================================== */

/* Variables & Base Reset */
:root {
    --bg-primary: #070708;
    --bg-secondary: #0c0c0d;
    --bg-tertiary: #19191b;
    --color-text-primary: #ffffff;
    --color-text-secondary: #e2e2e7;
    --color-text-dark: #8e8e93;
    
    --color-gold: #c5a059;
    --color-gold-hover: #e5c079;
    --color-gold-dark: #8e6c2d;
    --color-gold-gradient: linear-gradient(135deg, #d4af37 0%, #aa883b 100%);
    --color-gold-glow: rgba(197, 160, 89, 0.25);
    
    --color-red: #da3e52;
    --color-red-gradient: linear-gradient(135deg, #da3e52 0%, #a21a2c 100%);
    --color-red-glow: rgba(218, 62, 82, 0.25);
    
    --color-green: #2e7d32;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', 'Montserrat', sans-serif;
    
    --header-height: 100px;
    --header-height-shrink: 80px;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    background-color: var(--bg-primary);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    background-color: var(--bg-primary);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-hover);
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

p {
    line-height: 1.75;
    color: var(--color-text-secondary);
    font-weight: 300;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Common Section Layouts */
section {
    padding: 140px 0;
    position: relative;
    width: 100%;
}

.section-tag {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    display: inline-block;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--color-gold-glow);
    padding-bottom: 5px;
}

.section-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--color-text-primary);
}

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

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

/* Premium Buttons */
.btn-primary-luxury {
    display: inline-block;
    padding: 18px 40px;
    background: var(--color-gold-gradient);
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    border-radius: 2px;
    border: 1px solid var(--color-gold);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 20px var(--color-gold-glow);
    transition: var(--transition-smooth);
}

.btn-primary-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.6s ease;
    z-index: -1;
}

.btn-primary-luxury:hover::before {
    left: 100%;
}

.btn-primary-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.4);
    color: #000;
}

.btn-secondary-luxury {
    display: inline-block;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--color-text-primary);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 15px;
    transition: var(--transition-smooth);
}

.btn-secondary-luxury:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.04);
}

/* ==========================================================================
   Header & Navigation (Sleek Image Logo)
   ========================================================================== */
.luxury-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
    background: rgba(7, 7, 8, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.luxury-header.shrink {
    height: var(--header-height-shrink);
    background: rgba(7, 7, 8, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.header-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.luxury-logo-link {
    display: flex;
    align-items: center;
}

.luxury-logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.luxury-header.shrink .luxury-logo-img {
    height: 55px;
}

.luxury-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

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

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

.btn-luxury-nav {
    padding: 10px 20px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold) !important;
    border-radius: 2px;
    font-size: 0.75rem;
}

.btn-luxury-nav:hover {
    background: var(--color-gold-gradient);
    color: #000 !important;
}

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

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-primary);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   Text Selection/Highlight Animation styles
   ========================================================================== */
.text-highlight {
    position: relative;
    color: #ffffff;
    font-weight: 600;
    z-index: 1;
    display: inline;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 0;
    height: 38%; /* Height of the drawing line */
    background: rgba(197, 160, 89, 0.35); /* Elegant gold highlight stroke */
    z-index: -1;
    transition: width 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.text-highlight.active::after {
    width: 100%;
}

/* ==========================================================================
   Hero Section (Cutout Photo Aligned & Centered - Fixed cut legs)
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 0 0;
    background-color: var(--bg-primary);
    overflow: hidden;
    position: relative;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 75% 50%, rgba(197, 160, 89, 0.05) 0%, var(--bg-primary) 75%);
    z-index: 1;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 680px;
    padding-bottom: 40px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(197, 160, 89, 0.06);
    border: 1px solid rgba(197, 160, 89, 0.2);
    color: var(--color-gold);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    border-radius: 4px;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text-primary);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.6rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-text-secondary);
    margin-bottom: 45px;
    border-left: 2px solid var(--color-gold);
    padding-left: 20px;
    line-height: 1.5;
}

.hero-cta-wrapper {
    display: flex;
    align-items: center;
}

/* Centered photo wrapper with radial golden fog */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center; /* Centered vertically as requested */
    justify-content: center; /* Centered horizontally */
    background: radial-gradient(circle, rgba(197, 160, 89, 0.18) 0%, transparent 70%);
    overflow: visible;
}

.hero-img {
    max-width: 95%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.85));
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center bottom;
    z-index: 2;
    /* Soft border-mask that dissolves the bottom and side crops smoothly in golden fog */
    mask-image: linear-gradient(to bottom, black 70%, transparent 98%);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 98%);
}

.hero-image-wrapper:hover .hero-img {
    transform: scale(1.03) translateY(-10px);
}

.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 5;
    opacity: 0.8;
}

.scroll-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-text-dark);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-gold) 50%, transparent 50%);
    background-size: 100% 200%;
    animation: scrollMove 2.5s infinite;
}

@keyframes scrollMove {
    0% { background-position: 0 0; }
    50% { background-position: 0 -100%; }
    100% { background-position: 0 0; }
}

/* ==========================================================================
   Quote Section (Redesigned Editorial Style)
   ========================================================================== */
.quote-section {
    background-color: #000;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.015);
    border-bottom: 1px solid rgba(255, 255, 255, 0.015);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.quote-bg-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.04) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.quote-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.quote-mark {
    font-size: 4.5rem;
    color: rgba(197, 160, 89, 0.25);
    margin-bottom: 25px;
    line-height: 1;
}

.quote-lead {
    font-size: 1.25rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-gold);
    letter-spacing: 0.15em;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.quote-main {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 45px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: #ffffff;
}

.quote-line {
    display: block;
    width: 100%;
}

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

.phrase-risk {
    color: #ffffff;
    opacity: 0.95;
    position: relative;
    display: inline-block;
}

.phrase-risk::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 20%;
    width: 60%;
    height: 1px;
    background: var(--color-red-gradient);
    opacity: 0.7;
}

.quote-verdict {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    color: var(--color-gold);
    letter-spacing: 0.02em;
    margin-top: 25px;
}

/* ==========================================================================
   Split Concept Section (Traditional vs Prevention)
   ========================================================================== */
.split-concept-section {
    background-image: linear-gradient(to bottom, rgba(12, 12, 13, 0.95) 0%, rgba(12, 12, 13, 0.98) 100%), url('assets/images/luxury_bg_office.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.concept-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.concept-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.concept-header .text-highlight {
    display: inline-block;
    color: var(--color-gold) !important;
    -webkit-text-fill-color: var(--color-gold) !important;
    margin-top: 15px;
}

.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.concept-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.concept-card {
    background: #19191b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 50px 60px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.concept-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.danger-card::before {
    background: var(--color-red-gradient);
}

.success-card::before {
    background: var(--color-gold-gradient);
}

.concept-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}

.danger-card:hover {
    border-color: rgba(218, 62, 82, 0.35);
    box-shadow: 0 20px 45px rgba(218, 62, 82, 0.1);
}

.success-card:hover {
    border-color: rgba(197, 160, 89, 0.35);
    box-shadow: 0 20px 45px rgba(197, 160, 89, 0.15);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.danger-card .card-icon {
    color: var(--color-red);
}

.success-card .card-icon {
    color: var(--color-gold);
}

.card-title {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #ffffff !important;
}

.card-desc {
    font-size: 1rem;
    margin-bottom: 35px;
    color: var(--color-text-secondary) !important;
}

.card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: #ffffff !important;
}

.card-list li i {
    width: 20px;
    text-align: center;
}

.text-red {
    color: var(--color-red);
}

.text-gold {
    color: var(--color-gold);
}

.concept-footer {
    text-align: center;
    max-width: 900px;
    margin: 60px auto 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
}

.impact-quote {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--color-text-primary);
}

/* ==========================================================================
   Bio & Stats Section (3 Columns: Text, Cutout Rodrigo, Stats)
   ========================================================================== */
.bio-stats-section {
    background-image: linear-gradient(to right, rgba(7, 7, 8, 0.96) 30%, rgba(7, 7, 8, 0.8) 100%), url('assets/images/luxury_bg_office.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.015);
}

.bio-stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.bio-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.85fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.bio-content {
    max-width: 100%;
}

.bio-text {
    margin-top: 25px;
    margin-bottom: 40px;
}

.bio-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--color-text-secondary);
}

.bio-text p strong {
    color: var(--color-text-primary);
    font-weight: 500;
}

.bio-btn-wrapper {
    display: flex;
}

.bio-image-center {
    position: relative;
    width: 100%;
    height: 520px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
}

.bio-img-glow {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.bio-cutout-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.8));
    z-index: 2;
    transition: var(--transition-smooth);
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

.bio-image-center:hover .bio-cutout-img {
    transform: scale(1.02);
}

.stats-sidebar {
    background: rgba(17, 17, 18, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.stat-card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 20px;
}

.stat-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-gold);
    display: inline-block;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-left: 2px;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-secondary);
    margin-top: 5px;
}

/* ==========================================================================
   Interactive Balance Section
   ========================================================================== */
.balance-section {
    background-color: var(--bg-secondary);
}

.balance-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.balance-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.balance-subtitle {
    color: var(--color-text-secondary);
    margin-top: 15px;
    font-size: 1.1rem;
}

.balance-interactive-wrapper {
    position: relative;
    height: 680px;
    margin: 0 auto 60px auto;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.scale-visualizer {
    position: relative;
    width: 100%;
    height: 640px;
}

.scale-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 15px;
    background: var(--color-gold-gradient);
    border-radius: 2px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.6);
}

.scale-pillar {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 500px;
    background: linear-gradient(to right, #2a2a2c, #4a4a4d, #1a1a1c);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.scale-pillar::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--color-gold-gradient);
    border-radius: 50%;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
}

.scale-beam-wrapper {
    position: absolute;
    top: 130px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.scale-beam {
    position: relative;
    width: 800px;
    height: 10px;
    background: linear-gradient(to right, var(--color-gold), #aa883b, var(--color-gold));
    border-radius: 5px;
    transform-origin: center center;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    justify-content: space-between;
}

.scale-beam::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: #000;
    border: 3px solid var(--color-gold);
    border-radius: 50%;
}

.scale-pan {
    position: absolute;
    top: 5px;
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center top;
}

.left-pan {
    left: 0;
    transform: translate(-30px, 0);
}

.right-pan {
    right: 0;
    transform: translate(30px, 0);
}

.pan-strings {
    width: 200px;
    height: 110px;
    position: relative;
}

.pan-strings::before, .pan-strings::after {
    content: '';
    position: absolute;
    top: 0;
    width: 1px;
    height: 110px;
    background-color: var(--color-gold);
    opacity: 0.7;
}

.pan-strings::before {
    left: 0;
    transform: rotate(35deg);
    transform-origin: left top;
}

.pan-strings::after {
    right: 0;
    transform: rotate(-35deg);
    transform-origin: right top;
}

.pan-plate {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    width: 100%;
    padding: 25px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
    border-top: 3px solid transparent;
}

.left-pan .pan-plate {
    border-top-color: var(--color-gold);
}

.right-pan .pan-plate {
    border-top-color: var(--color-red);
}

.pan-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.pan-content-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pan-content-details p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.pan-cost-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.investment-badge {
    background: rgba(46, 125, 50, 0.15);
    color: #81c784;
    border: 1px solid rgba(46, 125, 50, 0.25);
}

.danger-badge {
    background: rgba(218, 62, 82, 0.15);
    color: #e57373;
    border: 1px solid rgba(218, 62, 82, 0.25);
}

.scale-beam.tilt-left {
    transform: rotate(-7deg);
}

.scale-beam.tilt-left .left-pan {
    transform: translate(-30px, 15px) rotate(7deg);
}

.scale-beam.tilt-left .right-pan {
    transform: translate(30px, -15px) rotate(7deg);
}

.scale-beam.tilt-right {
    transform: rotate(8deg);
}

.scale-beam.tilt-right .left-pan {
    transform: translate(-30px, -15px) rotate(-8deg);
}

.scale-beam.tilt-right .right-pan {
    transform: translate(30px, 15px) rotate(-8deg);
}

.balance-footer {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.balance-card-summary {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0,0,0,0.3);
}

.balance-verdict {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--color-text-primary);
}

/* ==========================================================================
   Timeline Section
   ========================================================================== */
.timeline-section {
    background-color: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.015);
}

.timeline-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.timeline-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.timeline-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
}

.timeline-layout-wrapper {
    display: grid;
    grid-template-columns: 2.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.timeline-track-wrapper {
    position: relative;
    padding: 40px 0;
    width: 100%;
}

.timeline-progress-bar {
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
    border-radius: 2px;
}

.timeline-progress-fill {
    height: 100%;
    width: 12.5%;
    background: var(--color-gold-gradient);
    border-radius: 2px;
    transition: width 0.5s ease-out;
}

.timeline-nodes-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
    position: relative;
    z-index: 2;
}

.timeline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.node-dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.timeline-node:hover .node-dot {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: scale(1.1);
}

.timeline-node.active .node-dot {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #000;
    box-shadow: 0 0 15px var(--color-gold-glow);
}

.node-content {
    opacity: 0.5;
    transition: var(--transition-smooth);
    padding: 0 2px;
}

.timeline-node.active .node-content {
    opacity: 1;
}

.node-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.node-desc {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--color-text-secondary) !important;
}

/* Timeline Photo Column */
.timeline-image-col {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
}

.timeline-img-glow {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.timeline-cutout-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.85));
    z-index: 2;
    transition: var(--transition-smooth);
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

.timeline-image-col:hover .timeline-cutout-img {
    transform: scale(1.02);
}

/* ==========================================================================
   Method Section (Slide 7 / Differentiators)
   ========================================================================== */
.method-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.015);
}

.method-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.method-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.method-layout-wrapper {
    display: grid;
    grid-template-columns: 0.85fr 2.15fr;
    gap: 50px;
    align-items: center;
}

/* Method Photo Column */
.method-image-col {
    position: relative;
    width: 100%;
    height: 520px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
}

.method-img-glow {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.method-cutout-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.85));
    z-index: 2;
    transition: var(--transition-smooth);
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

.method-image-col:hover .method-cutout-img {
    transform: scale(1.02);
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

.method-card {
    background: #19191b;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    padding: 45px 40px;
    transition: var(--transition-smooth);
    position: relative;
    border-top: 2px solid transparent;
    opacity: 1;
}

.method-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--color-gold);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.method-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(197, 160, 89, 0.2);
    margin-bottom: 20px;
    line-height: 1;
    transition: var(--transition-smooth);
}

.method-card:hover .method-num {
    color: var(--color-gold);
    transform: translateX(3px);
}

.method-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff !important;
}

.method-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--color-text-secondary) !important;
}

/* ==========================================================================
   Chess Strategy Section (Slide 12)
   ========================================================================== */
.chess-strategy-section {
    background-color: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.015);
}

.chess-strategy-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.chess-content-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.chess-image-box {
    width: 100%;
    height: 520px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.chess-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(85%) contrast(110%);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.chess-image-box:hover .chess-img {
    transform: scale(1.03);
}

.chess-text-box {
    max-width: 650px;
}

.chess-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.8rem;
    line-height: 1.5;
    color: var(--color-text-primary);
    margin-top: 15px;
    margin-bottom: 30px;
    border-left: 2px solid var(--color-gold);
    padding-left: 20px;
}

.chess-details p {
    font-size: 1.15rem;
    line-height: 1.75;
}

/* ==========================================================================
   Case Study Section (Slide Success Case - Centered Dell Anno Logo)
   ========================================================================== */
.case-study-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.015);
}

.case-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.case-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.case-card-luxury {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.case-info {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-client {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.2em;
    margin-bottom: 15px;
    display: block;
}

.case-title {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--color-text-primary);
}

.case-text {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.case-stats-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 35px;
}

.panel-stat {
    text-align: left;
}

.panel-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    display: block;
}

.text-red {
    color: var(--color-red);
}

.text-green {
    color: #4cab50;
}

.panel-lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-dark);
    margin-top: 5px;
    display: block;
}

.case-logo-display {
    background: #111112;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    border-left: 1px solid rgba(255, 255, 255, 0.03);
    min-height: 450px;
}

.case-logo-img {
    width: 85%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(255, 255, 255, 0.06));
    transition: transform 0.6s ease;
}

.case-logo-display:hover .case-logo-img {
    transform: scale(1.04);
}

/* ==========================================================================
   Clients & Testimonials Section (Logos Made Larger)
   ========================================================================== */
.clients-section {
    background-color: var(--bg-primary);
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.015);
    overflow: hidden;
}

.clients-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.clients-title-section {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--color-text-dark);
    text-transform: uppercase;
    margin-bottom: 50px;
}

/* Infinity Logo Ticker */
.logo-ticker-wrapper {
    width: 100vw;
    margin-left: -40px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    padding: 25px 0;
    background: rgba(255,255,255,0.01);
    border-top: 1px solid rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.02);
    margin-bottom: 80px;
}

.logo-ticker {
    display: flex;
    width: max-content;
    animation: tickerInfinite 25s linear infinite;
}

.logo-slide {
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85px;
}

.logo-slide img {
    height: 100%;
    max-height: 70px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(140%) contrast(70%) opacity(45%);
    transition: var(--transition-smooth);
}

.logo-slide img:hover {
    filter: grayscale(0%) brightness(100%) contrast(100%) opacity(95%);
}

@keyframes tickerInfinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Testimonials Carousel */
.testimonials-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 40px 60px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-slide {
    display: none;
    animation: fadeInTestimonial 0.8s forwards ease;
}

.testimonial-slide.active {
    display: block;
}

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

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-text-primary);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
}

.control-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-secondary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.control-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(197, 160, 89, 0.05);
}

/* ==========================================================================
   Contact Section & Form (Slide 15)
   ========================================================================== */
.contact-section {
    background-image: linear-gradient(to top, rgba(7, 7, 8, 0.98) 0%, rgba(7, 7, 8, 0.94) 100%), url('assets/images/luxury_bg_office.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-top: 1px solid rgba(255, 255, 255, 0.015);
    padding: 140px 0;
}

.contact-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 80%, rgba(197,160,89,0.02) 0%, transparent 60%);
    z-index: 1;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-info-panel {
    max-width: 550px;
}

.contact-title {
    font-size: 3.2rem;
    margin-bottom: 25px;
}

.contact-pitch {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-gold);
    line-height: 1.5;
    margin-bottom: 50px;
    border-left: 2px solid var(--color-gold);
    padding-left: 20px;
    font-style: italic;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.method-details {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-dark);
}

.method-link {
    font-size: 1.15rem;
    color: var(--color-text-primary);
    margin-top: 5px;
}

.method-link[href]:hover {
    color: var(--color-gold);
}

.contact-form-panel {
    background: rgba(17, 17, 18, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    padding: 50px 60px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--color-text-primary);
}

.form-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 35px;
}

.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.form-input, .form-textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    padding: 14px 18px;
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.1);
}

.btn-submit-luxury {
    background: var(--color-gold-gradient);
    border: 1px solid var(--color-gold);
    color: #000;
    padding: 16px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    cursor: pointer;
    border-radius: 2px;
    margin-top: 10px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.15);
}

.btn-submit-luxury:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.3);
}

.or-separator {
    text-align: center;
    margin: 20px 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-dark);
    position: relative;
}

.or-separator::before, .or-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.or-separator::before { left: 0; }
.or-separator::after { right: 0; }

.btn-whatsapp-luxury {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
    border: 1px solid #25d366;
    color: #25d366;
    padding: 16px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.btn-whatsapp-luxury:hover {
    background: rgba(37, 211, 102, 0.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.15);
    transform: translateY(-1px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.luxury-footer {
    background-color: #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding: 80px 0 0 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 60px 40px;
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand-desc {
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links-grid {
    display: flex;
    gap: 80px;
}

.footer-link-group {
    display: flex;
    flex-direction: column;
}

.footer-group-title {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 25px;
}

.footer-link-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link-group ul a {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.footer-link-group ul a:hover {
    color: var(--color-text-primary);
    padding-left: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding: 30px 0;
    background: #000;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright, .credentials {
    font-size: 0.75rem;
    color: var(--color-text-dark);
}

.credentials {
    text-align: right;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-container {
        gap: 30px;
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 30px;
    }

    .hero-content {
        max-width: 100%;
        order: 2;
        padding-bottom: 40px;
    }
    
    .hero-image-wrapper {
        order: 1;
        height: 480px;
        max-width: 450px;
        margin: 0 auto;
    }

    .hero-img {
        position: relative;
        bottom: 0;
        height: 100%;
        max-height: 100%;
        width: auto;
    }
    
    .hero-subtitle {
        border-left: none;
        padding-left: 0;
    }

    .hero-cta-wrapper {
        justify-content: center;
    }

    .concept-card {
        padding: 40px;
    }
    
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .bio-image-center {
        order: 2;
        max-width: 400px;
        margin: 0 auto;
        height: 450px;
    }
    
    .bio-content {
        order: 1;
        max-width: 100%;
    }
    
    .bio-btn-wrapper {
        justify-content: center;
    }
    
    .stats-sidebar {
        order: 3;
    }
    
    .method-layout-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .method-image-col {
        order: 2;
        max-width: 350px;
        margin: 0 auto;
        height: 400px;
    }
    
    .method-grid {
        order: 1;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-layout-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .timeline-image-col {
        order: 2;
        max-width: 320px;
        margin: 0 auto;
        height: 380px;
    }
    
    .timeline-track-wrapper {
        order: 1;
    }

    .case-card-luxury {
        grid-template-columns: 1fr;
    }
    
    .case-logo-display {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.03);
        min-height: 320px;
        padding: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-info-panel {
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    section {
        padding: 80px 0;
    }
    
    .luxury-header {
        height: var(--header-height-shrink);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .luxury-nav {
        position: fixed;
        top: var(--header-height-shrink);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height-shrink));
        background: var(--bg-primary);
        z-index: 999;
        transition: var(--transition-smooth);
        padding: 50px 40px;
        display: block;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .luxury-nav.open {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 35px;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .btn-luxury-nav {
        font-size: 1rem;
        padding: 12px 25px;
        width: 100%;
        text-align: center;
    }
    
    .hero-cta-wrapper {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .btn-secondary-luxury {
        margin-left: 0;
    }
    
    .quote-main {
        font-size: 2.2rem;
    }
    
    .quote-verdict {
        font-size: 1.6rem;
    }
    
    .concept-grid, .concept-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .stats-sidebar {
        padding: 30px;
    }
    
    .scale-beam-wrapper {
        position: static;
        margin-top: 30px;
    }
    
    .scale-beam {
        width: 100%;
        flex-direction: column;
        gap: 40px;
        background: none;
        height: auto;
    }
    
    .scale-beam::after, .scale-base, .scale-pillar, .pan-strings {
        display: none;
    }
    
    .scale-pan {
        position: static;
        width: 100%;
        transform: none !important;
    }
    
    .balance-interactive-wrapper {
        height: auto;
        display: block;
    }
    
    .scale-visualizer {
        height: auto;
    }
    
    .balance-subtitle {
        display: none;
    }
    
    .timeline-progress-bar {
        left: 20px;
        top: 0;
        width: 4px;
        height: 100%;
    }
    
    .timeline-progress-fill {
        width: 100%;
        height: 12.5%;
        transition: height 0.5s ease-out;
    }
    
    .timeline-nodes-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-left: 45px;
        text-align: left;
    }
    
    .timeline-node {
        flex-direction: row;
        text-align: left;
        gap: 20px;
        align-items: start;
    }
    
    .node-dot {
        margin-bottom: 0;
        flex-shrink: 0;
        width: 38px;
        height: 38px;
    }
    
    .method-grid {
        grid-template-columns: 1fr;
    }
    
    .chess-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .chess-image-box {
        height: 350px;
    }
    
    .chess-quote {
        font-size: 1.4rem;
    }
    
    .case-info {
        padding: 40px 25px;
    }
    
    .case-stats-panel {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-panel {
        padding: 40px 25px;
    }
    
    .contact-title {
        font-size: 2.3rem;
    }
    
    .footer-links-grid {
        gap: 40px;
        flex-wrap: wrap;
        width: 100%;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
    
    .credentials {
        text-align: center;
    }
}
