:root {
    --bg-color: #0a0a0a;
    --card-bg: #141414;
    /* Pearl Gold Palette - High-end Metallic */
    --gold-base: #c5a059;
    --gold-light: #f3e5ab; /* Pearl/Champagne highlight */
    --gold-dark: #8b6d31;
    --gold-gradient: linear-gradient(135deg, 
        #8b6d31 0%, 
        #c5a059 25%, 
        #f3e5ab 50%, 
        #c5a059 75%, 
        #8b6d31 100%
    );
    --gold-glow: 0 0 20px rgba(197, 160, 89, 0.3);
    --gold-hover: #f3e5ab;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --border-color: #262626;
    --container-width: 1200px;
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.gold-text {
    background: var(--gold-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pearl-shimmer 5s linear infinite;
    filter: drop-shadow(0 0 1px rgba(243, 229, 171, 0.4));
    font-weight: 800;
}

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

/* Header & Nav */
header {
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
}

header .container {
    max-width: 1400px;
}

/* Header & Nav */
header {
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
}

header .container {
    max-width: 1400px;
}

nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 80px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    flex-shrink: 0;
    grid-column: 1;
    justify-self: start;
}

.logo-wrapper img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(197, 160, 89, 0.25));
    clip-path: inset(2% 2% 2% 2%); /* Subtle crop to hide watermark */
    transition: var(--transition);
}

.logo-text {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    margin: 0;
    padding: 0;
    height: 100%; /* Ensure it takes full height of nav for centering */
    grid-column: 2;
    justify-self: center;
}

.nav-cta-container {
    grid-column: 3;
    justify-self: end;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.nav-links a:hover {
    color: var(--gold-light);
}

.btn-gold.nav-cta {
    height: 48px !important;
    padding: 0 28px !important;
    font-size: 0.85rem !important;
    letter-spacing: 1px;
    animation: pearl-shimmer 4s linear infinite;
    color: #000 !important;
    font-weight: 900;
}

@media (max-width: 1100px) {
    .nav-links {
        gap: 15px;
    }
    .nav-links a:not(.btn-gold) {
        font-size: 0.75rem;
    }
}

/* Buttons */
.cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.btn-gold, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 35px;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
    font-size: 0.9rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: var(--gold-gradient);
    background-size: 200% auto;
    color: #1a1a1a;
    border: none;
    box-shadow: var(--gold-glow);
    animation: pearl-shimmer 4s linear infinite;
}

.btn-gold:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 35px rgba(197, 160, 89, 0.5);
    filter: brightness(1.15);
}

.btn-outline {
    border: 2px solid var(--gold-base);
    color: var(--gold-light);
    background: transparent;
}

.btn-outline:hover {
    background: var(--gold-gradient);
    background-size: 200% auto;
    color: #1a1a1a;
    box-shadow: var(--gold-glow);
    border-color: transparent;
    animation: pearl-shimmer 4s linear infinite;
}

/* Hero Section */
.hero {
    padding: 180px 0 80px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Control vertical flow */
    background: linear-gradient(rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.95)), url('assets/OBRAZ CELOWY #1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-badge {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    display: inline-block;
    padding: 0;
    font-size: 0.65rem;
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.5;
}

.hero-video-container {
    margin-top: 60px;
    width: 100%;
    max-width: 1100px; /* Increased from 800px to find a better middle ground */
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.hero-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 38px;
    z-index: 1;
    filter: brightness(0.4); /* Initially dimmed */
    transition: filter 0.5s ease;
}

.video-interactive-frame.playing .hero-video-element {
    filter: brightness(1); /* Full brightness when playing */
}

.video-click-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: var(--transition);
}

.video-interactive-frame.playing .video-click-overlay {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.play-icon-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(197, 160, 89, 0.2);
    border: 2px solid var(--gold-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-base);
    margin-bottom: 20px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.video-interactive-frame:hover .play-icon-wrapper {
    background: var(--gold-base);
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--gold-base);
}

.click-to-play-text {
    color: #fff;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.video-overlay-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
    z-index: 2;
}

.video-frame {
    aspect-ratio: 16 / 9;
    min-height: 500px; /* Increased from 350px */
    background: #000;
    border: 3px solid var(--gold-base);
    border-radius: 40px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 70px rgba(197, 160, 89, 0.4);
    cursor: default; /* Changed from pointer as it now autoplays */
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.video-frame:hover {
    box-shadow: 0 0 80px rgba(197, 160, 89, 0.6);
    transform: scale(1.01);
}

.scroll-cta-wrapper {
    margin-top: 100px;
    padding-bottom: 80px;
}
.hero-cta-under-video {
    display: inline-flex;
    opacity: 1;
    visibility: visible;
    transform: none;
    font-size: 1.1rem !important; /* Larger font */
    height: 70px !important; /* Taller button */
    padding: 0 50px !important;
}

.hero-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-cta-subtext {
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
    transition: var(--transition);
}

.video-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(197, 160, 89, 0.1), transparent);
    z-index: 1;
}

.video-frame:hover {
    box-shadow: 0 0 60px rgba(197, 160, 89, 0.6);
    transform: scale(1.02);
}

.play-button {
    font-size: 5rem;
    color: var(--gold-base);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.5));
    z-index: 2;
}

.video-frame p {
    color: var(--gold-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    z-index: 2;
}

.fade-in-delay-3 {
    opacity: 0;
    animation: fadeIn 1s ease 0.9s forwards;
}

/* Ultra-Modern Process Bar */
.process-bar {
    background-color: var(--bg-color);
    padding: 40px 0;
}

.process-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 100px; /* Pill shape */
    border: 1px solid rgba(197, 160, 89, 0.1);
    max-width: fit-content;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.process-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 10px;
    opacity: 0.4;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.process-icon {
    font-size: 20px;
    width: 36px;
    height: 36px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step.animate-glow {
    opacity: 1;
}

.process-step.animate-glow .process-icon {
    background: var(--gold-gradient);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
}

.process-title {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.2px;
    white-space: nowrap;
}

.process-label {
    display: none; /* Hide labels for ultra-clean look */
}

.process-plus {
    color: rgba(197, 160, 89, 0.4);
    font-size: 24px;
    font-weight: 300;
}

@media (max-width: 1100px) {
    .process-container {
        border-radius: 24px;
        padding: 30px;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        max-width: 95%;
        margin: 0 auto;
    }
    .process-arrow {
        display: flex;
        transform: rotate(90deg);
        margin: 5px 0;
        opacity: 0.5;
    }
    .process-step {
        width: 100%;
        justify-content: center;
        opacity: 1;
        padding: 5px 0;
        text-align: center;
    }
    .process-title {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .process-container {
        padding: 25px 15px;
    }
    .process-title {
        font-size: 15px;
    }
}

/* Audit Section - Premium Comparison */
.audit-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.audit-card {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    background: linear-gradient(145deg, #121212, #080808);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    align-items: stretch;
    transition: var(--transition);
}

.audit-card:hover {
    border-color: rgba(197, 160, 89, 0.2);
    transform: scale(1.01);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.audit-before, .audit-after {
    display: flex;
    flex-direction: column;
}

.audit-label {
    display: inline-block;
    align-self: flex-start;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.audit-label.error {
    background: rgba(255, 77, 77, 0.1);
    color: #ff4d4d;
    border: 1px solid rgba(255, 77, 77, 0.2);
}

.audit-label.success {
    background: rgba(197, 160, 89, 0.1);
    color: var(--gold-light);
    border: 1px solid var(--gold-base);
}

.audit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.audit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.audit-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.divider-line {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--border-color), transparent);
}

.divider-icon {
    position: absolute;
    background: var(--bg-color);
    border: 1px solid var(--gold-base);
    color: var(--gold-light);
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    box-shadow: var(--gold-glow);
}

.audit-cta {
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.guarantee-badge-mini {
    background: rgba(197, 160, 89, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: fit-content;
}

.guarantee-badge-mini p {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin: 0;
}

.shield-icon {
    font-size: 1.2rem;
}

.pulse-btn {
    animation: pearl-shimmer 4s linear infinite, button-pulse 3s infinite;
}

@keyframes button-pulse {
    0% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(197, 160, 89, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}

@media (max-width: 992px) {
    .audit-card {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }
    .audit-divider {
        height: 40px;
        width: 100%;
    }
    .divider-line {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--border-color), transparent);
    }
}

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

@media (max-width: 768px) {
    .problem-card-full {
        padding: 50px 25px;
    }
    .pain-points-grid {
        gap: 20px;
    }
}

/* Features */
.features {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-item {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--gold-base);
    transform: translateY(-5px);
    box-shadow: var(--gold-glow);
}

.feature-item .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-item h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 2000;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    padding: 0;
}

.mobile-nav-links li {
    margin-bottom: 30px;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.mobile-nav-links a:hover {
    color: var(--gold-base);
}

.mobile-cta {
    margin-top: 20px;
    height: 55px !important;
    padding: 0 30px !important;
    font-size: 0.9rem !important;
}

/* New Standard Section */
.standard-section {
    background-color: #0b0b0e;
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.comparison-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px; /* Tight, professional gap */
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex: 1; /* Equal width for both sides */
    text-align: center;
}

.comparison-icon {
    height: 100px; /* Increased to accommodate larger logo */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.comparison-icon svg {
    width: 65px; /* Slightly smaller for better balance */
    height: 65px;
}

.comparison-label {
    display: inline-block; /* Ensure it can contain absolute pseudo-elements correctly */
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    position: relative;
}

.comparison-item.old .comparison-icon { 
    color: #666; /* Slightly lighter than background to be visible but muted */
    opacity: 0.5;
}

.comparison-item.old .comparison-label { 
    color: #666; 
    opacity: 0.6;
}

.comparison-item.old .comparison-label::after {
    content: "";
    position: absolute;
    left: -5%;
    top: 50%;
    width: 110%;
    height: 2px; /* Thicker, more visible line */
    background: #ff4d4d; /* Red color for a clear "old/bad" indicator */
    transform: translateY(-50%) rotate(-2deg); /* Slight angle for more character */
    opacity: 0.8;
}

.comparison-item.new .comparison-icon { 
    color: var(--gold-base); 
    filter: drop-shadow(0 0 20px rgba(197, 160, 89, 0.4));
}

.comparison-item.new .comparison-label { 
    color: #fff; 
}

.new-standard-logo {
    height: 90px; /* Balanced with SVG icon size */
    width: auto;
    filter: drop-shadow(0 0 20px rgba(197, 160, 89, 0.6));
    display: block;
    margin: 0 auto;
}

.comparison-arrow {
    color: var(--gold-base);
    opacity: 0.9;
    padding-top: 20px; /* Align with larger icons */
    filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.5));
    transition: var(--transition);
}

.comparison-arrow svg {
    width: 80px; /* Longer arrow */
    height: auto;
}

.comparison-arrow:hover {
    transform: scale(1.1);
    opacity: 1;
}

.standard-header {
    margin-bottom: 50px;
}

.pre-title {
    display: block;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.standard-section h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -1px;
    color: #fff;
    margin: 0;
}

.standard-content {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.standard-content p {
    margin-bottom: 30px;
}

.highlight-box {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--gold-base);
    padding: 40px;
    border-radius: 4px 24px 24px 4px;
    margin: 40px 0;
    text-align: left;
}

.highlight-box p {
    margin-bottom: 0;
    font-size: 1.25rem;
    color: #d1d1d6;
}

.highlight-box strong {
    color: #fff;
}

.final-statement {
    font-size: 1.3rem;
    color: #fff;
}

.standard-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.standard-cta-wrapper .btn-gold {
    font-size: 1.1rem !important;
    height: 70px !important;
    padding: 0 50px !important;
    min-width: 300px;
}

@media (max-width: 768px) {
    .standard-cta-wrapper .btn-gold {
        width: 100%;
        padding: 0 20px !important;
        font-size: 1rem !important;
    }
}

/* AI Features Section (The New One) */
.ai-features-section {
    background-color: #0a0a0d;
    padding: 120px 0;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

.ai-features-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.ai-features-left {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ai-features-left .standard-cta-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 30px;
}

.ai-features-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.underline-wrapper {
    position: relative;
    display: inline-block;
}

.underline-wrapper::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg width='300' height='12' viewBox='0 0 300 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 9.5C50 4.5 150 2 298 9.5' stroke='%23333' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
    background-size: 100% 100%;
    opacity: 0.6;
}

.ai-features-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.ai-features-description p {
    margin-bottom: 25px;
}

.highlight-white {
    color: #fff;
    font-weight: 700;
}

/* Right Column - Visual */
.ai-features-right {
    display: flex;
    justify-content: center;
    position: relative;
}

.visual-placeholder-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 4/3;
    z-index: 2;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    animation: glow-pulse 6s infinite alternate;
}

@keyframes glow-pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.9; }
}

.photo-placeholder {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.placeholder-img {
    width: 50%;
    height: auto;
    opacity: 0.15;
    filter: grayscale(1) brightness(2);
}

.placeholder-overlay {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
}

.placeholder-overlay span {
    font-size: 0.75rem;
    color: var(--gold-base);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .laptop-mockup-container {
        max-width: 100%;
        padding: 0 10px;
    }
}

.ai-features-cta-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .ai-features-cta-bottom {
        margin-top: 40px;
    }
    .ai-features-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .ai-features-left {
        text-align: center;
        align-items: center;
    }
    .ai-features-left .standard-cta-wrapper {
        justify-content: center;
    }
    .underline-wrapper::after {
        bottom: -5px;
    }
    .ai-features-right {
        /* Image stays in its natural DOM order (after text) on mobile */
    }
}

@media (max-width: 768px) {
    .ai-features-section {
        padding: 80px 0;
    }
    .ai-features-title {
        font-size: 1.8rem;
    }
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links, .nav-cta-container {
        display: none;
    }

    .comparison-header {
        flex-direction: column;
        gap: 20px;
    }

    .comparison-arrow {
        transform: rotate(90deg);
    }

    .highlight-box {
        padding: 30px 20px;
        text-align: center;
        border-left: none;
        border-top: 4px solid var(--gold-base);
        border-radius: 24px;
    }
}

/* Modern Approach Section */
.modern-approach-section {
    background-color: #0a0a0a;
    padding: 100px 0;
    overflow: hidden;
}

.modern-approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.vignette-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
}

.vignette-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 100px 50px #0a0a0a;
    background: radial-gradient(circle, transparent 30%, #0a0a0a 100%);
}

.modern-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.modern-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
}

.modern-text strong {
    color: #fff;
}

.modern-approach-right {
    text-align: left;
}

.modern-cta-wrapper {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.impact-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    background: transparent;
    border: none;
    padding: 0;
    transition: var(--transition);
}

.impact-badge.center {
    justify-content: center;
}

.impact-badge:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.impact-badge i {
    font-size: 0.8rem;
    color: var(--gold-base);
    opacity: 0.7;
}

.impact-badge span {
    font-size: 0.7rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.6;
}

.modern-cta-wrapper .btn-gold.large {
    min-width: 350px;
    width: auto;
    font-size: 1.1rem !important;
    height: 70px !important;
    padding: 0 50px !important;
}

@media (max-width: 992px) {
    .modern-approach-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .modern-approach-left {
        order: 2;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .modern-approach-right {
        order: 1;
        text-align: center;
        padding: 0 10px;
    }

    .vignette-image-wrapper {
        aspect-ratio: 16/9;
    }

    .modern-cta-wrapper {
        width: 100%;
        align-items: center;
    }

    .social-proof-wrapper {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Global Mobile Adjustments */
    .container {
        padding: 0 20px;
    }

    section {
        padding: 60px 0 !important;
    }

    /* Hero Section Mobile Fixes */
    .hero {
        padding: 130px 20px 60px !important; /* Added 20px horizontal padding */
        min-height: auto;
        background-attachment: scroll;
    }

    .hero-badge {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        font-size: 0.7rem !important; /* Slightly smaller to prevent wrapping */
        letter-spacing: 1px !important;
        margin-bottom: 20px !important;
        padding: 0 15px !important;
        line-height: 1.4;
    }

    .hero h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 30px !important;
        padding: 0 10px;
    }

    .hero-video-container {
        margin-top: 25px !important;
        padding: 0 10px !important; 
        width: 100%;
        max-width: 380px; /* Better fit for most phones */
        margin-left: auto;
        margin-right: auto;
    }

    .video-frame {
        min-height: unset !important; /* Remove min-height to allow aspect-ratio to work perfectly */
        aspect-ratio: 16/9;
        height: auto !important;
        width: 100%;
        border-radius: 16px !important;
        border-width: 2px !important;
        overflow: hidden;
    }

    .hero-video-element {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important; /* Changed from contain to cover for perfect fill */
        border-radius: 14px !important; /* Slightly smaller than container to look perfect inside border */
    }

    .hero-cta-under-video {
        font-size: 0.85rem !important; /* Smaller font */
        height: 52px !important; /* Shorter button */
        padding: 0 25px !important;
        width: auto !important;
        min-width: 220px !important;
        margin-top: 15px !important;
    }

    .play-icon-wrapper {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 10px !important;
    }

    .play-icon-wrapper svg {
        width: 30px !important;
        height: 30px !important;
    }

    .click-to-play-text {
        font-size: 0.8rem !important;
        letter-spacing: 1px !important;
    }

    .video-frame p {
        font-size: 0.75rem !important;
    }

    .scroll-cta-wrapper {
        margin-top: 40px !important;
        padding-bottom: 20px !important;
    }

    /* Process Bar Mobile Optimization */
    .process-bar {
        padding: 40px 0 !important;
        background: #0a0a0a;
    }

    .process-container {
        padding: 30px 20px !important;
        gap: 20px !important;
        border-radius: 24px !important;
        flex-direction: column !important; /* Vertical stack for clarity */
        width: 90% !important;
        max-width: unset !important;
    }

    .process-step {
        width: 100% !important;
        justify-content: flex-start !important;
        padding: 10px 0 !important;
        opacity: 1 !important;
    }

    .process-arrow {
        display: flex !important;
        transform: rotate(90deg) !important;
        margin: 5px 0 !important;
        opacity: 0.3 !important;
    }

    .process-title {
        font-size: 16px !important;
    }

    .process-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 20px !important;
    }

    /* Typography */
    h2 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    /* Buttons */
    .btn-gold, .btn-outline, .btn-gold.large {
        width: 100% !important;
        min-width: unset !important;
        min-height: 60px !important;
        height: auto !important; /* Allow button to grow if text wraps */
        font-size: 0.9rem !important;
        padding: 12px 20px !important; /* More vertical padding for wrapped text */
        display: flex !important;
        margin: 0 auto 10px auto;
        white-space: normal !important; /* Allow text wrapping */
        text-align: center;
        line-height: 1.2;
    }

    /* Honesty Section Fixes */
    .honesty-section {
        padding: 60px 0 !important;
    }

    .honesty-headers {
        margin-bottom: 35px !important;
        text-align: center !important;
    }

    .honesty-title {
        font-size: 1.7rem !important;
        margin-top: 10px !important;
        line-height: 1.2 !important;
    }

    .honesty-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        margin-bottom: 40px !important;
        padding: 0 10px !important;
    }

    .honesty-item {
        padding: 20px !important;
        margin-bottom: 0 !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border-radius: 12px !important;
        text-align: left !important;
    }

    .honesty-divider-vertical {
        display: none;
    }

    .honesty-footer {
        width: 100% !important;
        padding: 0 15px !important;
        text-align: center !important;
    }

    .honesty-summary-1 {
        font-size: 1.1rem !important;
        line-height: 1.4 !important;
        margin-bottom: 15px !important;
    }

    .honesty-summary-2 {
        font-size: 0.9rem !important;
        margin-bottom: 35px !important;
    }

    .honesty-cta-wrapper {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    .honesty-cta-wrapper .btn-gold.large {
        width: 100% !important;
        min-height: 65px !important;
        height: auto !important;
        font-size: 1rem !important;
        margin-bottom: 0 !important;
        min-width: unset !important;
        padding: 15px 20px !important;
    }

    /* Pricing Section Fixes */
    .card-badge {
        font-size: 0.7rem;
        padding: 8px 15px;
        top: -15px;
        white-space: nowrap;
        width: auto;
        min-width: 180px;
    }

    .card-top {
        padding: 45px 20px 25px;
    }

    #price-value {
        font-size: 3.5rem;
    }

    .benefit-group h4 {
        font-size: 0.7rem;
        margin-bottom: 10px;
    }

    /* Modern Approach Section Fixes */
    .modern-approach-section {
        padding: 60px 0 !important;
    }

    .modern-approach-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
        text-align: center !important;
    }

    .modern-approach-right {
        order: 1 !important;
        padding: 0 10px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .modern-title {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
    }

    .modern-text {
        font-size: 0.95rem !important;
        margin-bottom: 15px !important;
        max-width: 600px;
    }

    .modern-cta-wrapper {
        width: 100% !important;
        margin-top: 30px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .modern-cta-wrapper .btn-gold.large {
        width: 100% !important;
        margin-bottom: 20px !important;
    }

    .social-proof-wrapper {
        width: 100%;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .modern-approach-left {
        order: 2 !important;
        width: 100% !important;
        max-width: 100% !important; /* Full width on mobile */
        padding: 0 !important;
    }

    .vignette-image-wrapper {
        aspect-ratio: 16/9 !important;
        border-radius: 16px !important;
        width: 100% !important;
        max-width: 450px; /* Limits size on large phones */
        margin: 0 auto !important;
    }

    .image-overlay-vignette {
        box-shadow: inset 0 0 60px 20px #0a0a0a !important; /* Reduced shadow for mobile clarity */
    }
}

/* Cooperation Steps Section - Zigzag Timeline */
.steps-section {
    background-color: #080808;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

.steps-timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(197, 160, 89, 0.1);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-traveler {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    width: 30px;
    height: 30px;
    z-index: 15;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
}

.timeline-traveler::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--gold-base);
    clip-path: polygon(50% 100%, 0% 0%, 100% 0%); /* Downward arrow */
    filter: drop-shadow(0 0 10px var(--gold-base));
}

.timeline-traveler::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.4) 0%, transparent 70%);
    filter: blur(5px);
}

@keyframes arrow-bounce {
    from { transform: translateY(-5px); }
    to { transform: translateY(5px); }
}

.timeline-traveler.active {
    opacity: 1;
}

@media (max-width: 992px) {
    .steps-timeline-line {
        left: 20px;
        transform: none;
    }
    .timeline-traveler {
        left: 50%;
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 600px) {
    .steps-timeline-line {
        left: 15px;
    }
    .timeline-traveler {
        left: 50%;
        transform: translate3d(-50%, 0, 0);
    }
}

.step-row {
    display: flex;
    align-items: center;
    margin-bottom: 120px;
    position: relative;
    z-index: 2;
}

.step-row:last-child {
    margin-bottom: 0;
}

.step-row.reverse {
    flex-direction: row-reverse;
}

.step-content {
    flex: 1;
    padding: 0 80px;
    text-align: left;
}

.step-row.reverse .step-content {
    text-align: left; /* Keep it left-aligned even when layout is reversed */
}

.step-number {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px; /* Changed from -15px to 5px to increase spacing to the title */
    letter-spacing: -2px;
}

.step-number .num-zero {
    color: #ffffff;
    opacity: 0.9;
}

.step-number .num-main {
    background: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 1;
}

.step-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.step-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.step-list {
    list-style: none;
    padding: 0;
}

.step-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #e4e4e7;
    margin-bottom: 15px;
    font-size: 1rem;
    text-align: left;
}

.step-row.reverse .step-list li {
    flex-direction: row; /* Checkmarks always on the left */
}

.step-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.step-visual {
    flex: 1;
    padding: 0 80px;
    position: relative;
    display: flex;
    justify-content: center;
}

.step-icon-center {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #080808;
    border: 2px solid rgba(197, 160, 89, 0.2);
    color: rgba(197, 160, 89, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.step-icon-center.highlight {
    border-color: var(--gold-base);
    color: #fff;
    box-shadow: 0 0 30px var(--gold-base), inset 0 0 15px var(--gold-base);
    transform: translate(-50%, -50%) scale(1.15);
}

.step-icon-center.highlight svg {
    filter: drop-shadow(0 0 5px #fff);
}

.step-row:not(.reverse) .step-icon-center {
    left: 0; /* Aligned with the center line */
}

.step-row.reverse .step-icon-center {
    right: 0;
    left: auto;
    transform: translate(50%, -50%);
}

.step-icon-center.highlight.reverse-fix {
    transform: translate(50%, -50%) scale(1.15);
}

.step-image-wrapper {
    width: 100%;
    max-width: 450px;
}

.step-image-placeholder {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.step-image-placeholder.play-animation {
    animation: fadeInUpStep 0.8s ease forwards;
}

@keyframes fadeInUpStep {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-image-placeholder:hover {
    border-color: rgba(197, 160, 89, 0.2);
    transform: translateY(-5px);
}

.video-step .step-icon-center {
    display: none;
}

.video-step .step-image-wrapper {
    max-width: 400px;
}

/* Premium Video Integration - Enhanced & Non-standard */
.video-frame-custom {
    position: relative;
    padding: 20px;
    background: rgba(197, 160, 89, 0.03);
    border-radius: 40px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    width: 100%; /* Resetting to 100% to avoid excessive width with square height */
    max-width: 500px;
    margin: 0 auto;
    transition: var(--transition);
}

.frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid var(--gold-base);
    z-index: 5;
    filter: drop-shadow(0 0 12px var(--gold-base));
}

.frame-corner.top-left { top: 0; left: 0; border-right: none; border-bottom: none; border-radius: 35px 0 0 0; }
.frame-corner.top-right { top: 0; right: 0; border-left: none; border-bottom: none; border-radius: 0 35px 0 0; }
.frame-corner.bottom-left { bottom: 0; left: 0; border-right: none; border-top: none; border-radius: 0 0 0 35px; }
/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--gold-base);
    padding: 20px 0;
    z-index: 10000;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s ease;
    box-shadow: 0 -15px 40px rgba(0,0,0,0.8);
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.cookie-banner.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-text a {
    color: var(--gold-light);
    text-decoration: underline;
}

.cookie-btn {
    white-space: nowrap;
    height: 45px !important;
    padding: 0 25px !important;
    font-size: 0.8rem !important;
}

@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .cookie-text {
        font-size: 0.8rem;
    }
    .cookie-btn {
        width: 100%;
    }
}

.tech-scanner-line {
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    z-index: 4;
    opacity: 0.4;
    animation: scanner-move 5s linear infinite;
}

@keyframes scanner-move {
    0% { top: 2%; opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { top: 98%; opacity: 0; }
}

.step-video-container {
    position: relative;
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 70px rgba(0,0,0,0.9);
    background: #000;
    aspect-ratio: 1 / 1; /* Changed to square */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-frame-custom:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(197, 160, 89, 0.06);
    border-color: rgba(197, 160, 89, 0.2);
}

.video-frame-custom:hover .frame-corner {
    width: 45px;
    height: 45px;
}

.step-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video fills the square area */
    pointer-events: none;
    filter: contrast(1.1) brightness(0.95);
}

.video-premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle, transparent 20%, rgba(10, 10, 10, 0.5) 100%);
    box-shadow: inset 0 0 100px rgba(0,0,0,0.7);
    animation: video-breath 5s ease-in-out infinite;
}

@keyframes video-breath {
    0%, 100% { 
        backdrop-filter: brightness(1.2) contrast(1.1);
    }
    50% { 
        backdrop-filter: brightness(0.6) contrast(0.9);
    }
}

.placeholder-img-faded {
    width: 60%;
    height: auto;
    opacity: 0.1;
    filter: grayscale(1);
}

.placeholder-label {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

@media (max-width: 1100px) {
    .step-content, .step-visual {
        padding: 0 40px;
    }
}

@media (max-width: 992px) {
    .steps-timeline-line {
        display: none;
    }
    
    .step-row, .step-row.reverse {
        flex-direction: column;
        align-items: center;
        text-align: left;
        padding-left: 0;
        margin-bottom: 80px;
    }
    
    .step-content {
        padding: 0;
        margin-bottom: 40px;
        width: 100%;
    }
    
    .step-row.reverse .step-content {
        text-align: left;
    }
    
    .step-row.reverse .step-list li {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }

    .step-list li {
        justify-content: flex-start;
    }
    
    .step-visual {
        padding: 0;
        width: 100%;
        justify-content: center;
        display: flex;
    }
    
    .step-icon-center {
        display: none !important;
    }

    .timeline-traveler {
        display: none !important;
    }

    .step-number {
        font-size: 3.5rem;
        margin-bottom: 5px;
    }

    .step-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .step-description {
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }
}

@media (max-width: 600px) {
    .steps-section {
        padding: 80px 0;
    }
    .step-row, .step-row.reverse {
        padding-left: 0;
    }
    .step-image-placeholder {
        padding: 20px;
    }
    .placeholder-label {
        font-size: 0.6rem;
    }
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
}

.guarantee-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid var(--border-color);
    padding: 60px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    border-left: 5px solid var(--gold-base);
}

.guarantee-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.guarantee-card h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.guarantee-card p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 20px;
}

.small-text {
    font-size: 0.9rem;
    color: var(--gold-base);
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 25px;
    border-radius: 100px;
    border: 1px solid var(--border-color);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing Section Redesign */
.pricing {
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-top: 10px;
    letter-spacing: -1px;
}

.toggle-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

.toggle-label.active {
    color: #fff;
}

.discount-badge {
    background: var(--gold-gradient);
    color: #000;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 900;
    margin-left: 10px;
    letter-spacing: 0.5px;
}

/* Switch styling */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #262626;
    transition: .4s;
    border: 1px solid var(--border-color);
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 3px;
    background: var(--gold-gradient);
    transition: .4s;
}

input:checked + .slider {
    background-color: #1a1a1a;
    border-color: var(--gold-base);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.pricing-card.premium {
    background: linear-gradient(165deg, #18181b 0%, #09090b 100%);
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 32px;
    padding: 0;
    max-width: 550px;
    width: 100%;
    margin: 40px auto;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 40px rgba(197, 160, 89, 0.1);
    overflow: visible;
    transition: var(--transition);
}

.pricing-card.premium:hover {
    transform: translateY(-10px);
    border-color: var(--gold-base);
    box-shadow: 0 50px 120px rgba(0,0,0,0.7), 0 0 60px rgba(197, 160, 89, 0.2);
}

.card-badge {
    position: absolute;
    top: 25px;
    right: 30px;
    background: rgba(197, 160, 89, 0.1);
    color: var(--gold-base);
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    z-index: 10;
    white-space: nowrap;
    text-transform: uppercase;
    left: auto;
    transform: none;
    box-shadow: none;
}

.pricing-card.premium .card-badge {
    top: 30px;
    right: 40px;
}

/* Coming Soon Section */
.coming-soon-section {
    padding: 100px 0;
    background: radial-gradient(circle at top right, rgba(197, 160, 89, 0.05) 0%, transparent 40%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.coming-soon-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.coming-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.coming-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(197, 160, 89, 0.2);
    transform: translateY(-5px);
}

.coming-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    opacity: 0.5;
}

.coming-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    display: block;
}

.coming-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 800;
}

.coming-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.coming-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(197, 160, 89, 0.1);
    color: var(--gold-base);
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.card-top {
    padding: 60px 40px 40px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.card-top h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #fff;
}

.card-tagline {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 30px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold-base);
}

#price-value {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.price-period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.card-body {
    padding: 40px;
}

.benefit-group {
    margin-bottom: 35px;
}

.benefit-group:last-child {
    margin-bottom: 0;
}

.benefit-group h4 {
    font-size: 0.75rem;
    color: var(--gold-base);
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 800;
    opacity: 0.9;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #e4e4e7;
    font-size: 0.95rem;
    margin-bottom: 12px;
    text-align: left;
}

.benefit-list li i {
    font-size: 0.85rem;
    min-width: 18px;
    margin-top: 4px;
}

.card-footer {
    padding: 0 40px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-footer .btn-gold {
    width: 100%;
    margin-bottom: 20px;
}


.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.trust-indicators span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-indicators i {
    color: var(--gold-base);
}

.pricing-footer-note {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #52525b;
}

@media (max-width: 768px) {
    .pricing-card.premium {
        border-radius: 24px;
        width: calc(100% - 30px) !important; /* Ensure 15px gap on each side */
        margin: 40px auto !important;
        max-width: unset;
    }
    .card-top {
        padding: 50px 20px 30px;
    }
    #price-value {
        font-size: 4rem;
    }
    .card-body {
        padding: 30px 20px;
    }
    .card-footer {
        padding: 0 20px 40px;
    }
}

/* FAQ Section New */
.faq-section {
    padding-top: 120px;
    padding-bottom: 120px;
    background-color: #0a0a0a;
}

.faq-header {
    text-align: center;
    margin-bottom: 70px;
}

.faq-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    margin-top: 10px;
    letter-spacing: -1px;
}

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

.faq-accordion-item {
    background: #141414;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.faq-accordion-item.active {
    border-color: var(--gold-base);
    background: #1a1a1a;
}

.faq-question {
    width: 100%;
    padding: 30px 40px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--gold-base);
    transition: var(--transition);
}

.faq-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.faq-accordion-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-accordion-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    min-height: 0;
    padding: 0 40px 40px;
}

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

@media (max-width: 768px) {
    .faq-section {
        padding-top: 80px;
        padding-bottom: 80px;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .faq-header {
        margin-bottom: 40px !important;
        padding: 0 10px;
    }
    .faq-header h2 {
        font-size: 1.8rem !important;
    }
    .faq-question {
        padding: 25px 20px;
        font-size: 1.05rem;
    }
    .faq-answer-inner {
        padding: 0 20px 30px;
    }
    .faq-answer p {
        font-size: 1rem;
    }
}

/* FAQ Section Extra */
#kontakt {
    scroll-margin-top: 25vh; /* Centers the section in the viewport */
}

.faq-cta {
    margin-top: 80px;
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 32px;
    border: 1px solid var(--border-color);
}

.faq-cta-text {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Footer Section */
footer {
    background-color: #050505;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px;
}

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

.footer-column.brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 25px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.3));
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 350px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-base);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--gold-gradient);
    color: #000;
    transform: translateY(-3px);
    border-color: transparent;
}

.footer-heading {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 5px;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

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

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 255, 0, 0.05);
    padding: 8px 15px;
    border-radius: 100px;
    border: 1px solid rgba(0, 255, 0, 0.1);
    margin-top: 5px;
    width: fit-content;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #4ade80;
    border-radius: 50%;
}

.dot.pulse {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.status-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4ade80;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.bottom-content p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.bottom-links {
    display: flex;
    gap: 25px;
}

.bottom-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.bottom-links a:hover {
    color: #fff;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-column.brand {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }
    .footer-tagline {
        max-width: 500px;
    }
}

@media (max-width: 600px) {
    footer {
        padding: 60px 0 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-contact-info li {
        justify-content: center;
    }
    .status-indicator {
        margin: 5px auto 0 auto;
    }
    .bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Honesty Section (Is This You?) */
.honesty-section {
    background-color: #0d0d0d;
    padding: 120px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.honesty-headers {
    margin-bottom: 70px;
}

.honesty-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    margin-top: 10px;
    letter-spacing: -1px;
}

.honesty-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    text-align: left;
    margin-bottom: 80px;
    align-items: start;
}

.honesty-divider-vertical {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--border-color), transparent);
    opacity: 0.6;
}

.honesty-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    border-radius: 16px;
    transition: var(--transition);
}

.honesty-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(197, 160, 89, 0.1);
    transform: translateX(5px);
}

.honesty-icon-new {
    font-size: 1.5rem;
    color: var(--gold-base);
    filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.5));
    flex-shrink: 0;
    margin-top: -2px; /* Slight adjustment for alignment */
}

.honesty-item p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.honesty-item p .highlight-white {
    color: #fff;
    font-weight: 600;
}

.honesty-footer {
    max-width: 800px;
    margin: 0 auto;
}

.honesty-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.honesty-summary-1 {
    font-size: 1.3rem;
    color: #d1d1d6;
    margin-bottom: 15px;
    font-weight: 600;
}

.honesty-summary-2 {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.honesty-cta-wrapper .btn-gold.large {
    min-width: 350px;
    font-size: 1.15rem !important;
    height: 75px !important;
    box-shadow: 0 0 40px rgba(197, 160, 89, 0.2);
}

@media (max-width: 992px) {
    .honesty-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .honesty-divider-vertical {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--border-color), transparent);
        margin: 20px 0;
    }
    
    .honesty-item:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .honesty-section {
        padding: 80px 0;
    }
    
    .honesty-title {
        font-size: 2rem;
    }
    
    .honesty-summary-1 {
        font-size: 1.1rem;
    }

    .honesty-cta-wrapper .btn-gold.large {
        width: 100%;
        min-width: unset;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease 0.3s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
}

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

/* Responsive Overrides */
@media (max-width: 1100px) {
    .header-status {
        display: none;
    }
    
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-cta-badge {
        display: none;
    }
    
    .logo-wrapper img {
        height: 45px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
    }
    .logo-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0;
    }

    header .container {
        max-width: 100%;
        padding: 0 20px;
    }

    nav {
        height: 80px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        grid-template-columns: none; /* Reset desktop grid */
    }

    .logo-wrapper {
        gap: 10px;
    }

    .logo-wrapper img {
        height: 45px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .mobile-menu-toggle {
        display: flex;
        margin-left: auto; /* Push to the right */
    }

    .nav-links, .nav-cta-container {
        display: none;
    }

    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 140px 0 60px; /* Adjusted for 80px fixed header */
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0;
        margin-bottom: 20px;
        letter-spacing: 2px;
    }

    .hero-video-container {
        margin-top: 30px;
        padding: 0;
    }

    .video-frame {
        min-height: auto; /* Remove large desktop min-height */
        border-radius: 20px;
        border-width: 2px;
    }

    .play-button {
        font-size: 3.5rem;
    }

    .video-frame p {
        font-size: 0.75rem;
        padding: 0 10px;
    }

    .scroll-cta-wrapper {
        margin-top: 50px;
        padding-bottom: 40px;
    }

    .audit-card {
        padding: 25px 20px;
        gap: 20px;
        border-radius: 16px;
    }

    .audit-card h3 {
        font-size: 1.3rem;
    }

    .audit-card p {
        font-size: 0.95rem;
    }

    .audit-label {
        font-size: 0.65rem;
        margin-bottom: 15px;
    }

    .guarantee-badge-mini {
        padding: 12px 20px;
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .feature-item {
        padding: 30px 20px;
    }

    .guarantee-card {
        padding: 40px 20px;
        border-left: none;
        border-top: 5px solid var(--gold-base);
    }

    .guarantee-card h2 {
        font-size: 1.8rem;
    }

    .pricing-card {
        padding: 40px 20px;
    }

    .pricing-card h2 {
        font-size: 1.6rem;
    }

    .pricing-toggle-container {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
        border-radius: 20px;
        width: 90%;
    }

    #price-value {
        font-size: 3.5rem !important;
    }

    .benefit-list li {
        font-size: 0.9rem;
    }


    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-item {
        padding: 20px;
    }

    .cta-group {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }

    .btn-gold, .btn-outline {
        width: 100%;
        height: 55px;
        padding: 0 20px;
        font-size: 0.85rem;
    }

    .comparison-header {
        flex-direction: column;
        gap: 20px;
    }

    .comparison-arrow {
        transform: rotate(90deg);
    }

    .highlight-box {
        padding: 30px 20px;
        text-align: center;
        border-left: none;
        border-top: 4px solid var(--gold-base);
        border-radius: 24px;
    }
}

/* --- AI CHAT DEMO STYLES --- */
.demo-chat-container {
    width: 100%;
    max-width: 480px;
    height: 650px;
    background: #0f0f0f;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 0 20px rgba(197, 160, 89, 0.05);
    overflow: hidden;
    position: relative;
    z-index: 10;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.chat-logo-container {
    width: 60px;
    height: 60px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid var(--gold-dark);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.2);
}

.chat-logo-container img {
    width: 40px;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(197, 160, 89, 0.3));
}

.chat-logo-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.4) 0%, transparent 70%);
    animation: chat-glow 3s infinite;
}

@keyframes chat-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.chat-header-info h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.chat-header-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-status-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 12px #10b981;
}

.chat-messages {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dark) #0f0f0f;
}

.chat-messages::-webkit-scrollbar {
    width: 5px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 10px;
}

.chat-msg {
    display: flex;
    gap: 12px;
    max-width: 90%;
    animation: msgFadeIn 0.4s ease-out forwards;
    flex-shrink: 0;
}

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

.chat-msg.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.msg-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.msg-avatar img {
    width: 26px;
}

.msg-bubble {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.4;
    width: fit-content; /* Only take space needed */
    max-width: 100%;
}

.chat-msg.ai .msg-bubble {
    background: #1a1a1a;
    color: #e4e4e7;
    border: 1px solid var(--border-color);
    border-bottom-left-radius: 4px; /* Distinctive chat shape */
}

.chat-msg.user .msg-bubble {
    background: var(--gold-gradient);
    color: #000;
    font-weight: 600;
    border-bottom-right-radius: 4px; /* Distinctive chat shape */
}

/* Typing Indicator */
.typing-dots {
    display: flex;
    gap: 4px;
    padding: 12px 20px !important;
    flex-shrink: 0;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: var(--gold-base);
    border-radius: 50%;
    animation: dotPulse 1.4s infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulse {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
}

/* Carousel in Chat */
.chat-carousel {
    margin-top: 15px;
    width: 100%;
    flex-shrink: 0;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--gold-dark);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-card {
    min-width: 100%;
    background: #141414;
}

.card-img {
    height: 140px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold-gradient);
    color: #000;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 4px;
}

.card-info {
    padding: 15px;
}

.card-info h4 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1rem;
}

.card-price {
    color: var(--gold-light);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.card-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.spec-item {
    background: rgba(255,255,255,0.03);
    padding: 6px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.spec-val {
    display: block;
    color: var(--gold-base);
    font-weight: 800;
    font-size: 0.75rem;
}

.spec-lab {
    font-size: 0.55rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.card-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}

.tag {
    font-size: 0.65rem;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
}

.card-btn {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--gold-base);
    color: var(--gold-light);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    transition: 0.3s;
}

.card-btn:hover {
    background: var(--gold-gradient);
    color: #000;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 12px;
}

.nav-btn {
    background: none;
    border: none;
    color: var(--gold-base);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-dots {
    display: flex;
    gap: 6px;
}

.nav-dots .dot {
    width: 6px;
    height: 6px;
    background: rgba(197, 160, 89, 0.2);
    border-radius: 50%;
    cursor: pointer;
}

.nav-dots .dot.active {
    width: 18px;
    border-radius: 3px;
    background: var(--gold-base);
}

/* Stats & Restart */
.chat-stats {
    padding: 15px 25px;
    background: #0a0a0a;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-around;
    flex-shrink: 0;
}

.chat-stat-box {
    text-align: center;
}

.stat-num {
    color: var(--gold-light);
    font-weight: 800;
    font-size: 1rem;
}

.stat-desc {
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.chat-restart-btn {
    width: calc(100% - 40px);
    margin: 15px 20px 20px;
    padding: 14px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 12px;
    color: #000;
    font-weight: 800;
    font-size: 0.75rem;
    cursor: pointer;
    transition: 0.3s;
    flex-shrink: 0;
}

.chat-restart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

@media (max-width: 480px) {
    .demo-chat-container {
        max-width: 100%;
        border-radius: 0;
    }
}

/* --- CALENDAR STYLES --- */
.booking-calendar {
    margin-top: 15px;
    background: #141414;
    border: 1px solid var(--gold-dark);
    border-radius: 12px;
    padding: 15px;
    width: 100%;
    flex-shrink: 0;
}

.calendar-header {
    text-align: center;
    font-weight: 800;
    color: var(--gold-light);
    font-size: 0.8rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
    margin-bottom: 15px;
}

.day-name {
    font-size: 0.6rem;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 600;
}

.day-num {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #fff;
    background: #1a1a1a;
    border-radius: 6px;
    position: relative;
    border: 1px solid transparent;
}

.day-num.active {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--gold-base);
    color: var(--gold-light);
    font-weight: 800;
}

.day-num.disabled {
    opacity: 0.2;
    background: transparent;
}

.free-slot {
    position: absolute;
    bottom: 2px;
    font-size: 0.45rem;
    color: #10b981;
    font-weight: 900;
}

.calendar-confirm-btn {
    width: 100%;
    padding: 10px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: 800;
    font-size: 0.7rem;
    cursor: pointer;
    transition: 0.3s;
}

.calendar-confirm-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}


/* --- CALL BUTTON IN CHAT --- */
.chat-call-btn {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px;
    background: transparent;
    border: 2px solid var(--gold-base);
    border-radius: 12px;
    color: var(--gold-light);
    font-weight: 800;
    font-size: 0.75rem;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-call-btn:hover {
    background: rgba(197, 160, 89, 0.1);
    transform: translateY(-2px);
}

/* --- KROK 01 TRAINING ANIMATION - REFINED PROFESSIONAL VERSION --- */
.training-animation-container {
    width: 100%;
    max-width: 500px;
    height: 520px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    overflow: visible;
}

/* Background Data Effects */
.bg-data-grid {
    position: absolute;
    width: 140%;
    height: 140%;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(197, 160, 89, 0.05) 1px, transparent 0);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 0;
}

.bg-scrolling-text {
    position: absolute;
    width: 200%;
    top: 15%;
    left: -50%;
    transform: rotate(-5deg);
    white-space: nowrap;
    opacity: 0.05;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold-light);
    pointer-events: none;
    z-index: 0;
}

.training-animation-container.play-animation .bg-scrolling-text span {
    display: inline-block;
    animation: scroll-text 30s linear infinite;
}

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

.training-phone {
    width: 260px;
    height: 500px;
    background: #050505;
    border: 14px solid #1a1a1a; /* Thicker border */
    border-radius: 40px;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.9), 0 0 30px rgba(197, 160, 89, 0.15);
    z-index: 5;
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 32px; /* Slightly taller notch for thicker border */
    background: #1a1a1a;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 10;
}

.phone-display {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, #1a1a1a 0%, #050505 100%);
    display: flex;
    flex-direction: column;
    padding: 55px 20px 35px;
    position: relative;
}

.training-header {
    text-align: center;
    margin-bottom: 5px;
}

.ai-core-glow {
    width: 80px;
    height: 80px;
    background: var(--gold-base);
    filter: blur(50px);
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
}

.training-animation-container.play-animation .ai-core-glow {
    animation: core-flicker 4s infinite alternate;
}

@keyframes core-flicker {
    0% { opacity: 0.1; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.3); }
}

.training-title {
    font-size: 0.8rem;
    font-weight: 900; /* Bolder */
    color: var(--gold-light);
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.9;
}

.ai-brain-wrapper {
    position: relative;
    width: 110px; /* Slightly smaller to save space */
    height: 110px; /* Slightly smaller to save space */
    margin: 0 auto 40px; /* Increased to move elements below down */
    display: flex;
    align-items: center;
    justify-content: center;
}

.brain-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(197, 160, 89, 0.2); /* Thicker */
    border-radius: 50%;
}

.training-animation-container.play-animation .brain-ring {
    animation: rotate-ring 10s linear infinite;
}

.brain-ring.inner {
    width: 80%;
    height: 80%;
    border: 2px dashed rgba(197, 160, 89, 0.4); /* Thicker */
}

.training-animation-container.play-animation .brain-ring.inner {
    animation: rotate-ring-rev 6s linear infinite;
}

@keyframes rotate-ring {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotate-ring-rev {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

.brain-icon {
    font-size: 3.5rem; /* Slightly smaller icons */
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(197, 160, 89, 0.6));
}

.training-animation-container.play-animation .brain-icon {
    animation: brain-bounce 2s ease-in-out infinite;
}

@keyframes brain-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.05); }
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid var(--gold-base); /* Thicker */
    border-radius: 50%;
    opacity: 0;
}

.training-animation-container.play-animation .pulse-ring {
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.6); opacity: 0; }
    50% { opacity: 0.4; }
    100% { transform: scale(1.6); opacity: 0; }
}

.training-status-box {
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(197, 160, 89, 0.2); /* Thicker and slightly more visible */
    padding: 12px 18px; /* Reduced padding from 15px 20px */
    border-radius: 14px;
    margin-bottom: 15px; /* Reduced margin from 25px */
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.status-indicator-dot {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 8px; /* Slightly larger */
    height: 8px;
    background: var(--gold-base);
    border-radius: 50%;
}

.training-animation-container.play-animation .status-indicator-dot {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.status-label {
    font-size: 0.6rem;
    color: var(--gold-light);
    font-weight: 800; /* Bolder */
    margin-bottom: 3px;
    opacity: 0.7;
}

.status-value {
    font-size: 0.8rem;
    font-weight: 800; /* Bolder */
    color: #fff;
    font-family: 'Inter', monospace;
    height: 1.1rem;
}

.status-value::after {
    content: "INITIALIZING...";
}

.training-animation-container.play-animation .status-value::after {
    animation: status-text-change 12s infinite;
}

@keyframes status-text-change {
    0%, 10% { content: "PARSING CENNIK..."; }
    11%, 23% { content: "MAPPING FAQ..."; }
    24%, 36% { content: "LEARNING STYLE..."; }
    37%, 49% { content: "OPTIMIZING LOGIC..."; }
    50%, 62% { content: "FINE-TUNING..."; }
    63%, 72% { content: "FINALIZING..."; }
    73%, 100% { content: "SYSTEM READY!"; }
}

.training-progress-container {
    width: 100%;
    height: 12px; /* Thicker */
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    position: relative;
    margin-bottom: 20px; /* Reduced from 30px */
}

.training-progress-bar {
    width: 0%;
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.training-animation-container.play-animation .training-progress-bar {
    animation: training-progress 12s infinite;
}

.progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--gold-base);
    filter: blur(10px); /* More glow */
    opacity: 0.6; /* More glow */
    z-index: 1;
}

.training-animation-container.play-animation .progress-glow {
    animation: training-progress 12s infinite;
}

@keyframes training-progress {
    0% { width: 0%; }
    12% { width: 25%; }
    35% { width: 45%; }
    55% { width: 75%; }
    70% { width: 95%; }
    73%, 100% { width: 100%; }
}

.training-metrics {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 10px;
    border-radius: 14px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    position: relative;
}

.metric {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Vertical Divider */
.metric:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(197, 160, 89, 0.3), transparent);
}

.metric span {
    font-size: 0.55rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
    font-weight: 700;
}

.metric-val {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 900;
}

/* Standard Elite Gold Style */
.metric:last-child .metric-val {
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.4);
}

.training-footer-deco {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    opacity: 0.4;
}

.deco-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-base), transparent);
}

.deco-text {
    font-size: 0.5rem;
    color: var(--gold-light);
    font-weight: 700;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

/* Flying Particles (One by one) */
.knowledge-particle {
    position: absolute;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(197, 160, 89, 0.4); /* Thicker */
    color: var(--gold-light);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.75rem; /* Slightly larger */
    font-weight: 800;
    z-index: 1;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.training-animation-container.play-animation .knowledge-particle {
    animation: fly-to-phone 12s infinite;
}

@keyframes fly-to-phone {
    0% { transform: translate(var(--start-x), var(--start-y)) scale(0.6); opacity: 0; }
    5% { opacity: 1; }
    35% { transform: translate(0, 0) scale(1); opacity: 1; }
    40%, 100% { transform: translate(0, 0) scale(0); opacity: 0; }
}

.kp-1 { --start-x: -180px; --start-y: -180px; animation-delay: 0s !important; }
.kp-2 { --start-x: 180px; --start-y: -120px; animation-delay: 1.2s !important; }
.kp-3 { --start-x: -200px; --start-y: 120px; animation-delay: 2.4s !important; }
.kp-4 { --start-x: 200px; --start-y: 180px; animation-delay: 3.6s !important; }
.kp-5 { --start-x: 0px; --start-y: -220px; animation-delay: 4.8s !important; }

.training-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #0f0f0f 0%, #050505 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    padding: 30px;
    text-align: center;
}

.training-animation-container.play-animation .training-success-overlay {
    animation: success-fade-new 12s infinite;
}

@keyframes success-fade-new {
    0%, 72% { opacity: 0; transform: translateY(20px); }
    75%, 96% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-20px); }
}

.success-badge-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-check-premium {
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    z-index: 2;
    box-shadow: 0 0 40px rgba(197, 160, 89, 0.5);
}

.success-check-premium svg {
    width: 35px;
    height: 35px;
}

.success-ring-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold-base);
    border-radius: 50%;
}

.training-animation-container.play-animation .success-ring-animation {
    animation: success-ring-pulse 2s infinite;
}

@keyframes success-ring-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

.success-text-premium {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

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

.success-subtext-premium {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 1px;
    max-width: 200px;
    line-height: 1.4;
    margin-bottom: 40px;
}

.success-footer-line {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
}

.line-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
}

.line-text {
    font-size: 0.6rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
}

@media (max-width: 992px) {
    .training-animation-container {
        height: 480px;
        transform: scale(0.85);
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .training-animation-container {
        transform: scale(0.75);
        height: 420px;
        margin: -20px auto;
    }
    .bg-data-grid, .bg-scrolling-text {
        display: none;
    }
    
    .knowledge-particle {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .kp-1 { --start-x: -120px; --start-y: -120px; }
    .kp-2 { --start-x: 120px; --start-y: -80px; }
    .kp-3 { --start-x: -140px; --start-y: 80px; }
    .kp-4 { --start-x: 140px; --start-y: 120px; }
    .kp-5 { --start-x: 0px; --start-y: -150px; }

    .success-subtext-premium {
        font-size: 0.9rem;
        max-width: 100%;
    }
}

@media (max-width: 400px) {
    .training-animation-container {
        transform: scale(0.6);
        height: 340px;
        margin: -50px auto;
    }
}


/* --- KROK 03 LIVE CALENDAR - PERFECT SYNC VERSION --- */
.calendar-animation-container {
  width: 100%;
  max-width: 400px;
  height: 400px;
  background: #0a0a0a;
  border: 1px solid rgba(197, 160, 89, 0.1);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  padding: 25px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.calendar-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.autopilot-badge {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #4ade80;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.autopilot-badge .dot {
  width: 6px;
  height: 6px;
  background-color: #4ade80;
  border-radius: 50%;
}

.autopilot-badge .dot.pulse {
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.calendar-month {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 2px;
}

.calendar-grid-visual.perfect-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  position: relative;
  z-index: 2;
}

.calendar-day-box {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* 
   SYNC LOGIC: 
   Cycle: 8 seconds
   Columns: 7
   Each col takes ~14.28% of the width (100 / 7)
*/

.calendar-animation-container.play-animation .calendar-day-box.fill-gold[style*="--col: 0"] { animation: colReveal0 8s linear infinite; }
.calendar-animation-container.play-animation .calendar-day-box.fill-gold[style*="--col: 1"] { animation: colReveal1 8s linear infinite; }
.calendar-animation-container.play-animation .calendar-day-box.fill-gold[style*="--col: 2"] { animation: colReveal2 8s linear infinite; }
.calendar-animation-container.play-animation .calendar-day-box.fill-gold[style*="--col: 3"] { animation: colReveal3 8s linear infinite; }
.calendar-animation-container.play-animation .calendar-day-box.fill-gold[style*="--col: 4"] { animation: colReveal4 8s linear infinite; }
.calendar-animation-container.play-animation .calendar-day-box.fill-gold[style*="--col: 5"] { animation: colReveal5 8s linear infinite; }
.calendar-animation-container.play-animation .calendar-day-box.fill-gold[style*="--col: 6"] { animation: colReveal6 8s linear infinite; }

/* Reveal at specific percentages of the 8s cycle */
@keyframes colReveal0 { 0%, 1% { background: rgba(255, 255, 255, 0.02); } 2%, 80% { background: var(--gold-gradient); border-color: var(--gold-base); box-shadow: 0 0 15px rgba(197, 160, 89, 0.4); } 81%, 100% { background: rgba(255, 255, 255, 0.02); } }
@keyframes colReveal1 { 0%, 11% { background: rgba(255, 255, 255, 0.02); } 12%, 80% { background: var(--gold-gradient); border-color: var(--gold-base); box-shadow: 0 0 15px rgba(197, 160, 89, 0.4); } 81%, 100% { background: rgba(255, 255, 255, 0.02); } }
@keyframes colReveal2 { 0%, 22% { background: rgba(255, 255, 255, 0.02); } 23%, 80% { background: var(--gold-gradient); border-color: var(--gold-base); box-shadow: 0 0 15px rgba(197, 160, 89, 0.4); } 81%, 100% { background: rgba(255, 255, 255, 0.02); } }
@keyframes colReveal3 { 0%, 34% { background: rgba(255, 255, 255, 0.02); } 35%, 80% { background: var(--gold-gradient); border-color: var(--gold-base); box-shadow: 0 0 15px rgba(197, 160, 89, 0.4); } 81%, 100% { background: rgba(255, 255, 255, 0.02); } }
@keyframes colReveal4 { 0%, 45% { background: rgba(255, 255, 255, 0.02); } 46%, 80% { background: var(--gold-gradient); border-color: var(--gold-base); box-shadow: 0 0 15px rgba(197, 160, 89, 0.4); } 81%, 100% { background: rgba(255, 255, 255, 0.02); } }
@keyframes colReveal5 { 0%, 56% { background: rgba(255, 255, 255, 0.02); } 57%, 80% { background: var(--gold-gradient); border-color: var(--gold-base); box-shadow: 0 0 15px rgba(197, 160, 89, 0.4); } 81%, 100% { background: rgba(255, 255, 255, 0.02); } }
@keyframes colReveal6 { 0%, 68% { background: rgba(255, 255, 255, 0.02); } 69%, 80% { background: var(--gold-gradient); border-color: var(--gold-base); box-shadow: 0 0 15px rgba(197, 160, 89, 0.4); } 81%, 100% { background: rgba(255, 255, 255, 0.02); } }

.b-tag {
  font-size: 0.55rem;
  font-weight: 900;
  color: #000;
  opacity: 0;
}

.calendar-animation-container.play-animation .fill-gold[style*="--col: 0"] .b-tag { animation: tagReveal0 8s linear infinite; }
.calendar-animation-container.play-animation .fill-gold[style*="--col: 1"] .b-tag { animation: tagReveal1 8s linear infinite; }
.calendar-animation-container.play-animation .fill-gold[style*="--col: 2"] .b-tag { animation: tagReveal2 8s linear infinite; }
.calendar-animation-container.play-animation .fill-gold[style*="--col: 3"] .b-tag { animation: tagReveal3 8s linear infinite; }
.calendar-animation-container.play-animation .fill-gold[style*="--col: 4"] .b-tag { animation: tagReveal4 8s linear infinite; }
.calendar-animation-container.play-animation .fill-gold[style*="--col: 5"] .b-tag { animation: tagReveal5 8s linear infinite; }
.calendar-animation-container.play-animation .fill-gold[style*="--col: 6"] .b-tag { animation: tagReveal6 8s linear infinite; }

@keyframes tagReveal0 { 0%, 1% { opacity: 0; } 2%, 80% { opacity: 1; } 81%, 100% { opacity: 0; } }
@keyframes tagReveal1 { 0%, 11% { opacity: 0; } 12%, 80% { opacity: 1; } 81%, 100% { opacity: 0; } }
@keyframes tagReveal2 { 0%, 22% { opacity: 0; } 23%, 80% { opacity: 1; } 81%, 100% { opacity: 0; } }
@keyframes tagReveal3 { 0%, 34% { opacity: 0; } 35%, 80% { opacity: 1; } 81%, 100% { opacity: 0; } }
@keyframes tagReveal4 { 0%, 45% { opacity: 0; } 46%, 80% { opacity: 1; } 81%, 100% { opacity: 0; } }
@keyframes tagReveal5 { 0%, 56% { opacity: 0; } 57%, 80% { opacity: 1; } 81%, 100% { opacity: 0; } }
@keyframes tagReveal6 { 0%, 68% { opacity: 0; } 69%, 80% { opacity: 1; } 81%, 100% { opacity: 0; } }

.calendar-animation-container.play-animation .calendar-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold-base), transparent);
  box-shadow: 0 0 20px var(--gold-base);
  z-index: 5;
  animation: calendarScanSync 8s linear infinite;
  pointer-events: none;
}

@keyframes calendarScanSync {
  0% { left: 0%; opacity: 0; }
  2% { opacity: 1; }
  80% { left: 100%; opacity: 1; }
  81%, 100% { left: 100%; opacity: 0; }
}

.calendar-footer-notifs {
  margin-top: auto;
  height: 55px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  border: 1px solid rgba(197, 160, 89, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
}

.notif-ticker {
  width: 100%;
  height: 100%;
  position: relative;
}

.ticker-item {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-light);
  opacity: 0;
  white-space: nowrap;
}

.ticker-item[style*="--col: 0"] { animation: tickerReveal0 8s linear infinite; }
.ticker-item[style*="--col: 1"] { animation: tickerReveal1 8s linear infinite; }
.ticker-item[style*="--col: 2"] { animation: tickerReveal2 8s linear infinite; }
.ticker-item[style*="--col: 3"] { animation: tickerReveal3 8s linear infinite; }
.ticker-item[style*="--col: 4"] { animation: tickerReveal4 8s linear infinite; }
.ticker-item[style*="--col: 5"] { animation: tickerReveal5 8s linear infinite; }
.ticker-item[style*="--col: 6"] { animation: tickerReveal6 8s linear infinite; }
.ticker-item.final-msg { animation: tickerRevealFinal 8s linear infinite; }

@keyframes tickerReveal0 { 0%, 1.9% { opacity: 0; } 2%, 11.9% { opacity: 1; } 12%, 100% { opacity: 0; } }
@keyframes tickerReveal1 { 0%, 11.9% { opacity: 0; } 12%, 22.9% { opacity: 1; } 23%, 100% { opacity: 0; } }
@keyframes tickerReveal2 { 0%, 22.9% { opacity: 0; } 23%, 34.9% { opacity: 1; } 35%, 100% { opacity: 0; } }
@keyframes tickerReveal3 { 0%, 34.9% { opacity: 0; } 35%, 45.9% { opacity: 1; } 46%, 100% { opacity: 0; } }
@keyframes tickerReveal4 { 0%, 45.9% { opacity: 0; } 46%, 56.9% { opacity: 1; } 57%, 100% { opacity: 0; } }
@keyframes tickerReveal5 { 0%, 56.9% { opacity: 0; } 57%, 68.9% { opacity: 1; } 69%, 100% { opacity: 0; } }
@keyframes tickerReveal6 { 0%, 68.9% { opacity: 0; } 69%, 80% { opacity: 1; } 81%, 100% { opacity: 0; } }
@keyframes tickerRevealFinal { 0%, 80% { opacity: 0; } 81%, 96% { opacity: 1; } 97%, 100% { opacity: 0; } }

@media (max-width: 768px) {
  .calendar-animation-container {
    height: 380px !important;
    padding: 15px !important;
  }
  .calendar-grid-visual.perfect-grid {
    gap: 8px;
  }
  .ticker-item {
    font-size: 0.65rem;
  }
}

/* Ultimatum Section */
.ultimatum-section {
    background-color: #050505;
    padding: 160px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ultimatum-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.ultimatum-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 60px;
    letter-spacing: -2px;
}

.ultimatum-reality {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 50px;
    font-weight: 500;
}

.ultimatum-fomo, 
.ultimatum-choice {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #a1a1aa; /* Light gray */
    line-height: 1.8;
    margin-bottom: 40px;
}

.highlight-white-bold {
    color: #ffffff;
    font-weight: 700;
}

.ultimatum-cta {
    margin-top: 60px;
}

@media (max-width: 768px) {
    .ultimatum-section {
        padding: 100px 0;
    }
    
    .ultimatum-title {
        margin-bottom: 40px;
    }
    
    .ultimatum-reality {
        margin-bottom: 40px;
    }
}

/* Calendar Success Overlay & Animation Sync */
.calendar-success-message-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 10, 10, 0.95) 0%, #050505 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 30;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
}

.calendar-animation-container.play-animation .calendar-success-message-overlay {
    animation: calendarSuccessReveal 8s linear infinite;
}

@keyframes calendarSuccessReveal {
    0%, 80% { opacity: 0; transform: scale(0.95); }
    84%, 96% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.05); }
}

.calendar-success-badge {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.4);
}

.calendar-success-text {
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.calendar-success-subtext {
    font-size: 0.65rem;
    color: var(--gold-light);
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Syncing existing calendar elements to "reset" during overlay */
.calendar-animation-container.play-animation .calendar-day-box.fill-gold {
    animation-duration: 8s !important;
}

.calendar-animation-container.play-animation .b-tag {
    animation-duration: 8s !important;
}

.calendar-animation-container.play-animation .calendar-scan-line {
    animation-duration: 8s !important;
}

.calendar-animation-container.play-animation .ticker-item {
    animation-duration: 8s !important;
}

/* Laboratory Bonus Section in Pricing Card */
.laboratory-bonus {
    background: rgba(197, 160, 89, 0.05);
    border: 1px dashed rgba(197, 160, 89, 0.2);
    padding: 20px;
    border-radius: 12px;
    margin-top: 25px;
    position: relative;
    transition: var(--transition);
}

.laboratory-bonus:hover {
    border-color: rgba(197, 160, 89, 0.5);
    background: rgba(197, 160, 89, 0.08);
}

.lab-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--gold-gradient);
    color: #000;
    font-size: 0.6rem;
    font-weight: 900;
    padding: 2px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.laboratory-bonus h4 {
    margin-top: 5px;
    margin-bottom: 15px !important;
    font-size: 0.75rem !important;
    display: flex;
    align-items: center;
    gap: 8px;
}
.lab-list li {
    font-size: 0.85rem !important;
    margin-bottom: 15px !important;
    opacity: 0.9;
    line-height: 1.2;
}

.lab-list li span {
    display: block;
}

.lab-list li strong {
    color: var(--gold-light);
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.lab-list li small {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-top: 4px;
}

/* About Me / Architect Section - Integrated into Steps Timeline */
.architect-step-row {
    margin-top: 150px;
    margin-bottom: 0 !important;
    padding-bottom: 100px;
}

.architect-step-row .step-visual {
    flex: 1 !important;
    padding: 0 80px !important; /* Reverted to standard padding */
    justify-content: center !important;
}

.architect-step-row .step-content {
    flex: 1 !important;
    padding: 0 80px !important; /* Reverted to standard padding */
}

.architect-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
}

.architect-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    filter: none;
    border-radius: 4px;
}

.architect-info-below {
    margin-top: 20px;
    padding-left: 15px;
    border-left: 2px solid var(--gold-base);
}

.architect-info-below span {
    display: block;
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.architect-info-below small {
    color: var(--gold-base);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
}

.architect-step-row .step-title {
    font-size: 2.2rem !important;
    font-weight: 800;
    margin-bottom: 30px !important;
}

.architect-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.architect-text p strong {
    color: #fff;
}

.architect-signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
}

.signature-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold-light);
    font-style: italic;
    display: block;
}

.signature-title {
    display: block;
    color: var(--gold-base);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
}

.architect-mobile-footer {
    display: none;
}

@media (max-width: 992px) {
    .architect-step-row {
        flex-direction: column !important;
        text-align: center !important;
        margin-top: 80px;
    }
    
    .architect-step-row .step-content,
    .architect-step-row .step-visual {
        width: 100% !important;
        padding: 0 20px !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .architect-image-wrapper {
        margin: 5px auto 0; /* Further reduced from 20px to 5px */
    }

    /* Hide desktop CTA and signature */
    .architect-step-row .architect-cta-wrapper,
    .architect-step-row .architect-signature:not(.architect-mobile-footer .architect-signature) {
        display: none !important;
    }

    /* Show mobile footer under the image */
    .architect-mobile-footer {
        display: block !important;
        margin-top: 30px;
        text-align: center;
        width: 100%;
    }

    .mobile-sig {
        border-top: none !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        margin-bottom: 25px;
    }
}
