@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;600&display=swap');

:root {
    --primary-gold: #D4AF37;
    --dark-gold: #B8860B;
    --light-gold: #F4E08D;
    --silver: #C0C0C0;
    --metal-dark: #2C3E50;
    --bg-black: #0B0B0B;
    --card-bg: #1A1A1A;
    --text-white: #FFFFFF;
    --text-gray: #B0B0B0;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-black);
    /* Subtle warm candle glow radiating from top and bottom center + granite/mramor texture simulation */
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
        radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 0),
        radial-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 0);
    background-size: 100% 100%, 100% 100%, 24px 24px, 36px 36px;
    background-position: 0 0, 0 0, 0 0, 18px 18px;
    background-attachment: fixed;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container_small {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.card {
    background: rgba(26, 26, 26, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
}

h1,
h2,
h3 {
    font-family: 'Cinzel', serif;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Background Particles Canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-45px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(45px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }


/* Navbar */
nav {
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: sticky;
    top: 0;
    background: rgba(11, 11, 11, 0.8);
    backdrop-filter: blur(15px);
    z-index: 1000;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 80px;
    transition: var(--transition);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    display: none;
    /* Removed as it is redundant to the logo icon text */
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.footer-logo {
    height: 60px;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), 
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 70%), 
        url('assets/hero-banner.png') center/cover no-repeat;
    z-index: 0;
    pointer-events: none;
    animation: heroZoom 16s infinite alternate ease-in-out;
    will-change: transform;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

@keyframes heroZoom {
    0% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1.12);
    }
}

.hero-monument-img {
    height: 320px;
    width: auto;
    max-width: 100%;
    margin: 0 auto 35px;
    display: block;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(212, 175, 55, 0.15);
    animation: fadeIn 1.5s ease;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.5s ease;
}

.hero-monument-img:hover {
    transform: scale(1.03) translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 45px rgba(212, 175, 55, 0.25);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero p {
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-gray);
    font-size: 1.3rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

/* Demo Section */
.demo-section {
    padding: 100px 0;
    background: rgba(11, 11, 11, 0.5);
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.demo-video-container {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
}

.split-view {
    aspect-ratio: 480 / 683;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    --slider-pos: 50%;
}

.split-left,
.split-right {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.split-left {
    background: #333 url('Foto/1.png') center/cover;
    z-index: 1;
}

.split-right {
    z-index: 2;
    clip-path: polygon(var(--slider-pos) 0, 100% 0, 100% 100%, var(--slider-pos) 100%);
}

.split-right video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tag {
    position: absolute;
    top: 15px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    font-size: 0.65rem;
    text-transform: uppercase;
    z-index: 5;
}

.split-left .tag {
    left: 15px;
}

.split-right .tag {
    right: 15px;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
}

.split-divider {
    position: absolute;
    left: var(--slider-pos);
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--primary-gold);
    box-shadow: 0 0 15px var(--primary-gold);
    z-index: 10;
    transform: translateX(-50%);
    pointer-events: none;
}

.split-divider::after {
    content: '↔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: var(--bg-black);
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 11;
}

/* Invisible range slider overlay */
.split-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 15;
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
}

.split-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 100%;
}

.split-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 40px;
    height: 100%;
}

.split-slider::-moz-range-thumb {
    width: 40px;
    height: 100%;
    cursor: ew-resize;
}

/* Comparison Slider Header & Text Hints */
.comparison-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5px 15px 5px;
    background: transparent;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 15px;
}

.comp-col {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.comp-left {
    justify-content: flex-start;
}

.comp-right {
    justify-content: flex-end;
    text-align: right;
}

.comp-divider-vertical {
    width: 1px;
    height: 25px;
    background: rgba(212, 175, 55, 0.2);
    margin: 0 10px;
}

.comp-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 0 5px rgba(212,175,55,0.2));
}

.comp-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.comp-label {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.comp-left .comp-label {
    color: var(--text-white);
}

.comp-right .comp-label {
    color: var(--primary-gold);
}

.comp-desc {
    font-size: 0.65rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slider-hint {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-top: 15px;
    font-style: italic;
    letter-spacing: 0.5px;
    opacity: 0.85;
    animation: pulseHint 2s infinite ease-in-out;
}

@keyframes pulseHint {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.95; }
}

.product-mini {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.product-mini img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

@media (min-width: 992px) {
    .steps-grid::before {
        content: '';
        position: absolute;
        top: 120px; /* Aligns with the middle of the step images */
        left: 15%;
        right: 15%;
        height: 1px;
        background: linear-gradient(to right, 
            transparent 0%, 
            rgba(212, 175, 55, 0.15) 15%, 
            var(--primary-gold) 50%, 
            rgba(212, 175, 55, 0.15) 85%, 
            transparent 100%
        );
        background-size: 200% 100%;
        animation: flow-glow 6s infinite linear;
        z-index: 0;
        pointer-events: none;
    }
}

@keyframes flow-glow {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(26, 26, 26, 0.65);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    z-index: 2;
}

.step-card:hover {
    background: rgba(26, 26, 26, 0.85);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15), 0 0 25px rgba(212, 175, 55, 0.08);
}

.step-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.06);
    transition: var(--transition);
    user-select: none;
    line-height: 1;
}

.step-card:hover .step-number {
    color: rgba(212, 175, 55, 0.22);
    transform: scale(1.08);
}

.step-image-container {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8), 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.75)),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.18) 0%, transparent 75%);
    transition: var(--transition);
    pointer-events: none;
    z-index: 1;
}

.step-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.step-svg-icon {
    width: 50px;
    height: 50px;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 12px rgba(212, 175, 55, 0.4));
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
}

/* Sparkle Animation */
@keyframes sparkle-glow {
    0%, 100% { transform: scale(0.6) rotate(0deg); opacity: 0.4; }
    50% { transform: scale(1.1) rotate(45deg); opacity: 1; }
}

.sparkle {
    transform-origin: center;
    animation: sparkle-glow 2.5s infinite ease-in-out;
}

.sparkle.delay {
    animation-delay: 1.2s;
}

/* Step Card Hover Effects */
.step-card:hover .step-image-container {
    border-color: var(--primary-gold);
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.25);
}

.step-card:hover .step-image-overlay {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55)),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.35) 0%, transparent 70%);
}

.step-card:hover .step-img {
    transform: scale(1.08);
}

.step-card:hover .icon-camera {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.7)) drop-shadow(0 0 20px rgba(212, 175, 55, 0.65));
}

@keyframes lid-lift {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-5px) rotate(-1deg); }
}

.step-card:hover .box-lid {
    animation: lid-lift 0.8s ease-in-out infinite;
}

.step-card:hover .icon-box {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.7)) drop-shadow(0 0 20px rgba(212, 175, 55, 0.65));
}

@keyframes dove-fly {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-6px) scale(1.03); }
}

.step-card:hover .icon-dove {
    animation: dove-fly 1.4s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.7)) drop-shadow(0 0 20px rgba(212, 175, 55, 0.65));
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #0b0b0b, #151515);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: rgba(26, 26, 26, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 15px;
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Specific Tier Styles */
.package-quiet {
    border: 1px solid rgba(192, 192, 192, 0.15);
}

.package-quiet:hover {
    border-color: var(--silver);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(192, 192, 192, 0.15);
}

.package-quiet h3 {
    background: linear-gradient(135deg, #ffffff, #c0c0c0, #909090);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

/* Živá Pamiatka (Flagship / Main Product) */
.package-live.popular {
    border: 3px solid var(--primary-gold);
    transform: scale(1.08);
    z-index: 10;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.85),
        0 0 50px rgba(212, 175, 55, 0.25),
        inset 0 0 15px rgba(212, 175, 55, 0.1);
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.2), transparent 70%), rgba(26, 26, 26, 0.75);
}

.package-live.popular:hover {
    border-color: var(--light-gold);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.95),
        0 0 70px rgba(212, 175, 55, 0.45),
        inset 0 0 20px rgba(212, 175, 55, 0.2);
}

.package-live.popular h3 {
    background: linear-gradient(135deg, var(--light-gold), var(--primary-gold), var(--dark-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.p-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--light-gold), var(--primary-gold));
    color: black;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.45);
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.package-eternal {
    border: 1px solid rgba(212, 175, 55, 0.18);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.65), rgba(11, 11, 11, 0.65));
    overflow: hidden;
}

.package-eternal:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 35px rgba(212, 175, 55, 0.15);
}

.package-eternal h3 {
    background: linear-gradient(135deg, #ffffff, var(--primary-gold), #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.package-eternal::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: rotate(45deg);
    animation: metal-glint 5s infinite;
}

@keyframes metal-glint {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-white);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    line-height: 1.1;
}

.price span {
    font-size: 1.6rem;
    color: var(--primary-gold);
    margin-left: 3px;
    font-weight: 600;
    line-height: 1;
    margin-top: 5px;
}

.price-period {
    display: block;
    font-size: 0.72rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    font-weight: 500;
    opacity: 0.85;
}

.p-features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
    flex-grow: 1;
}

.p-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    font-size: 0.92rem;
}

.p-features li::before {
    content: '✓';
    color: var(--primary-gold);
    margin-right: 15px;
    font-weight: bold;
}

.p-features li.f-no {
    color: rgba(255, 255, 255, 0.25) !important;
    text-decoration: line-through;
    opacity: 0.75;
}

.p-features li.f-no::before {
    content: '✗' !important;
    color: rgba(255, 255, 255, 0.25) !important;
}


.pricing-disclaimer {
    margin-top: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 3px solid var(--primary-gold);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.pricing-disclaimer strong {
    color: var(--primary-gold);
    display: block;
    margin-bottom: 5px;
}

/* Trust Section */
.trust-section {
    padding: 100px 0;
    position: relative;
    /* Soft ambient background glow specifically for this section */
    background: 
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 70%),
        #050505;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.trust-card {
    background: rgba(26, 26, 26, 0.45);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Shine overlay effect on hover */
.trust-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: skewX(-25deg);
    transition: 0.75s;
}

.trust-card:hover::after {
    left: 125%;
}

.trust-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(26, 26, 26, 0.75);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.08), 0 0 20px rgba(0, 0, 0, 0.6);
}

.trust-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    transition: var(--transition);
    position: relative;
}

/* Inner glow ring on hover */
.trust-icon-box::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid rgba(212, 175, 55, 0);
    border-radius: 50%;
    transition: var(--transition);
}

.trust-card:hover .trust-icon-box {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.08);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.trust-card:hover .trust-icon-box::before {
    border-color: rgba(212, 175, 55, 0.3);
    transform: scale(1.08);
}

.trust-svg-icon {
    width: 42px;
    height: 42px;
    display: block;
    transition: var(--transition);
}

.trust-card:hover .trust-svg-icon {
    transform: scale(1.1);
}

.trust-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-gold);
    letter-spacing: 1px;
    transition: var(--transition);
    text-transform: uppercase;
}

.trust-card:hover h3 {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
    color: var(--light-gold);
}

.trust-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    transition: var(--transition);
}

.trust-card:hover p {
    color: var(--text-white);
}

/* Buttons */
.btn {
    padding: 15px 35px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
    display: inline-block;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
}


.btn.gold-static {
    background: var(--primary-gold);
    color: black;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.btn.gold-pulse {
    background: var(--primary-gold);
    color: black;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    animation: gold-pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

/* Metallic Shimmer sweep effect */
.btn.gold-static::after,
.btn.gold-pulse::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 30%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    animation: button-shimmer-sweep 4s infinite ease-in-out;
}

/* Stagger the start time for gold-pulse slightly so they don't shimmer in exact sync if multiple are on page */
.btn.gold-pulse::after {
    animation-delay: 1.5s;
}

@keyframes button-shimmer-sweep {
    0% {
        left: -150%;
    }
    30%, 100% {
        left: 150%;
    }
}

@keyframes gold-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.btn.secondary {
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
}

.btn.secondary:hover {
    background: var(--primary-gold);
    color: black;
}

.btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.2);
}

/* Wizard Fixes */
.generator-app {
    display: none;
    padding: 100px 0;
    animation: fadeIn 1s ease;
}

.generator-app.visible {
    display: block;
}

.wizard-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.wizard-step.active {
    display: block;
}

.wizard-container {
    background: rgba(26, 26, 26, 0.65);
    backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.step-indicator {
    padding: 10px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    cursor: pointer;
}

.step-indicator.active {
    background: var(--primary-gold);
    color: black;
    font-weight: 700;
}

input,
textarea,
select {
    width: 100%;
    padding: 12px;
    background: #000;
    border: 1px solid #333;
    border-radius: 6px;
    color: white;
    transition: var(--transition);
}

select option {
    background-color: #16161a;
    color: #fff;
}

input:focus {
    border-color: var(--primary-gold);
    outline: none;
}

.faq-section {
    padding: 100px 0;
    background: #080808;
}

.faq-category-title {
    color: var(--primary-gold);
    font-size: 0.9rem;
    margin: 30px 0 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding-bottom: 8px;
    font-weight: 700;
    opacity: 0.8;
}

.faq-category-title:first-of-type {
    margin-top: 0;
}

.faq-question {
    width: 100%;
    padding: 25px;
    background: none;
    border: none;
    color: var(--primary-gold);
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: space-between;
}

.faq-question::after {
    content: '+';
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    padding: 0 25px;
    color: var(--text-gray);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 25px;
}

/* Upload Zone */
.upload-zone {
    border: 2px dashed rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    z-index: 10;
}

.upload-zone:hover,
.upload-zone.drag-active {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
}

.btn-small {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-gold);
    color: black;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 15px;
    cursor: pointer;
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gallery-item {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    animation: fadeIn 0.5s ease;
}

/* Finale Zone */
.finale-zone {
    margin-top: 30px;
    text-align: center;
}

/* Video Preview Portrait Mode */
.app-grid-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .app-grid-mini {
        grid-template-columns: 1fr;
    }
}

.video-preview {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9/16;
    margin: 0 auto;
    background: #000;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.options-area {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.options-area h4 {
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--primary-gold);
}

.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.2), transparent);
    margin: 25px 0;
}

.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    pointer-events: none;
    color: rgba(212, 175, 55, 0.45);
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    z-index: 5;
    user-select: none;
    letter-spacing: 5px;
    border: 4px dashed rgba(212, 175, 55, 0.3);
    padding: 30px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Player Controls Over Portrait Video */
.player-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s ease;
}

/* Hide when playing, but show on hover */
.video-preview.is-playing .player-controls {
    opacity: 0;
    visibility: hidden;
}

.video-preview:hover .player-controls,
.video-preview:active .player-controls {
    opacity: 1;
    visibility: visible;
}

#play-btn {
    background: var(--primary-gold);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: black;
    transition: var(--transition);
}

#play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--primary-gold);
}

.timeline {
    flex-grow: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

#playhead {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--primary-gold);
    box-shadow: 2px 0 10px var(--primary-gold);
    transition: width 0.1s linear;
}

.finale-preview {
    width: 200px;
    height: 250px;
    margin: 20px auto;
    border-radius: 10px;
    border: 2px solid var(--primary-gold);
    background-size: cover;
    background-position: center;
    display: none;
}

/* Portrait Mockup Background for Demo */
.split-left {
    background-color: #222;
    background-image: url('Foto/1.png');
}

/* Product Showcase Section */
.product-showcase {
    padding: 120px 0;
    background: linear-gradient(to bottom, #000, #080808);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 968px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
}

.showcase-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.showcase-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(20px);
}

.showcase-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.75),
        0 0 30px rgba(212, 175, 55, 0.05),
        inset 0 0 8px rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    transition: var(--transition);
    z-index: 1;
}

.showcase-image-container:hover {
    border-color: var(--primary-gold);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.85),
        0 0 40px rgba(212, 175, 55, 0.2);
}

.showcase-img {
    width: 100%;
    max-width: 480px;
    display: block;
    border-radius: 20px;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 0;
}

.showcase-image-container:hover .showcase-img {
    transform: scale(1.02);
}

/* Diagonal metallic glint sweep on hover */
.showcase-shimmer {
    position: absolute;
    top: -50%;
    left: -150%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    z-index: 2;
    pointer-events: none;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.showcase-image-container:hover .showcase-shimmer {
    transform: rotate(30deg) translate(400px, 0);
}

.showcase-content h2 {
    font-size: 2.8rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.showcase-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 35px;
    line-height: 1.65;
}

/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.spec-card {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    transition: var(--transition);
}

.spec-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(212, 175, 55, 0.05);
    transform: translateY(-3px);
}

.spec-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    flex-shrink: 0;
    transition: var(--transition);
}

.spec-card:hover .spec-icon-box {
    background: var(--primary-gold);
    color: black;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.spec-svg-icon {
    width: 18px;
    height: 18px;
}

.spec-info h3 {
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--text-gray);
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    font-weight: 700;
}

.spec-info strong {
    font-size: 0.95rem;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 6px;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.5px;
}

.spec-info p {
    font-size: 0.8rem;
    line-height: 1.55;
    color: var(--text-gray);
    opacity: 0.85;
    margin: 0;
}

/* Visual Demo Section */
.visual-demo {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(26, 26, 26, 0.45);
    backdrop-filter: blur(12px);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(255, 255, 255, 0.02);
}

.demo-illustration {
    position: relative;
    z-index: 1;
}

.phone-mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.phone-glow {
    position: absolute;
    width: 480px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(15px);
}

.phone-mockup {
    width: 480px;
    height: 270px;
    background: #000000;
    border-radius: 30px;
    border: 12px solid #1e1e1e; /* Phone Bezel */
    position: relative;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(212, 175, 55, 0.05),
        inset 0 0 8px rgba(255, 255, 255, 0.2);
    transform: rotateY(-6deg) rotateX(4deg); /* subtle landscape 3D angle */
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.8s ease, box-shadow 0.8s ease;
    z-index: 1;
}

.phone-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.03); /* face forward on hover */
    border-color: #2a2a2a;
    box-shadow: 
        0 30px 60px -10px rgba(0, 0, 0, 0.9),
        0 0 45px rgba(212, 175, 55, 0.25),
        inset 0 0 12px rgba(255, 255, 255, 0.3);
}

.phone-speaker {
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 35px;
    background: #333;
    border-radius: 2px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.phone-dynamic-island {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 60px;
    background: #000;
    border-radius: 10px;
    z-index: 8;
    box-shadow: 2px 0 4px rgba(0,0,0,0.5);
    pointer-events: none;
}

.phone-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.95);
    transition: filter 0.8s ease;
}

.phone-mockup:hover .phone-video {
    filter: brightness(1.05);
}

/* Glass Reflection Overlay */
.phone-reflection {
    position: absolute;
    top: 0;
    left: -150%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        115deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.02) 40%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0) 60%
    );
    transform: skewX(-20deg);
    z-index: 6;
    pointer-events: none;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.phone-mockup:hover .phone-reflection {
    transform: skewX(-20deg) translateX(120%);
}

/* Hardware buttons in landscape */
.phone-button {
    position: absolute;
    background: #1e1e1e;
    border-radius: 2px;
    z-index: 0;
}

.phone-button.volume-up {
    width: 40px;
    height: 3px;
    left: 100px;
    top: -15px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.5);
}

.phone-button.volume-down {
    width: 40px;
    height: 3px;
    left: 155px;
    top: -15px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.5);
}

.phone-button.power {
    width: 60px;
    height: 3px;
    left: 140px;
    bottom: -15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.scanning-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-gold);
    color: black;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
    white-space: nowrap;
    z-index: 7;
    pointer-events: none;
}

.demo-text h3 {
    font-size: 2.2rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
}

.demo-subtitle {
    font-size: 1.1rem !important;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.demo-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.demo-features-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.df-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    flex-shrink: 0;
    transition: var(--transition);
}

.demo-features-list li:hover .df-icon-box {
    background: var(--primary-gold);
    color: black;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
}

.df-svg-icon {
    width: 20px;
    height: 20px;
}

.df-info h4 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--primary-gold);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.df-info p {
    font-size: 0.85rem !important;
    line-height: 1.5;
    color: var(--text-gray) !important;
    opacity: 0.85;
}

@media (max-width: 992px) {
    .visual-demo {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 40px;
        text-align: center;
    }

    .phone-mockup-wrapper {
        transform: scale(0.9);
        margin: 0 auto 20px;
    }

    .demo-features-list li {
        text-align: left;
    }

    .demo-text h3 {
        font-size: 1.8rem;
    }
}

/* AI Limit Information */
.ai-limit-info {
    margin-top: 25px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--primary-gold);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--text-white);
    line-height: 1.5;
}

.ai-limit-info strong {
    color: var(--primary-gold);
}

.ai-limit-warning {
    border-left-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

.ai-limit-warning strong {
    color: #e74c3c;
}

.text-red {
    color: #e74c3c;
    font-weight: bold;
}

.text-gold {
    color: var(--primary-gold);
    font-weight: bold;
}

/* --- CHECKOUT PAGE --- */
.checkout-page {
    background: #050505;
}

.checkout-header {
    text-align: center;
    padding: 60px 0 40px;
}

.checkout-header h1 {
    font-family: 'Cinzel', serif;
    color: var(--primary-gold);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 350px;
    gap: 30px;
    align-items: start;
    margin-bottom: 100px;
}

.checkout-section h2 {
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding-bottom: 10px;
}

/* Configurator */
.config-layout {
    display: grid;
    gap: 30px;
}

.config-preview {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 12px;
}

.product-image-container {
    width: 250px;
    height: 250px;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-main-img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

.material-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.material-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px 10px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.material-btn:hover,
.material-btn.active {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-gold);
}

.material-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.material-swatch.acrylic {
    background: #111;
    border: 1px solid #444;
}

.material-swatch.gold {
    background: #d4af37;
    border: 1px solid #b38f1f;
}

.material-swatch.ceramic {
    background: #fff;
    border: 1px solid #ddd;
}

.material-btn span {
    color: var(--text-white);
    font-size: 0.8rem;
}

.input-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.checkout-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 15px;
    color: #fff;
    margin-top: 5px;
}

.checkout-input:focus {
    border-color: var(--primary-gold);
    outline: none;
    background: rgba(255, 255, 255, 0.08);
}

/* Form */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.checkbox-group input {
    size: 18px;
}

/* Summary */
.summary-details {
    margin-bottom: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.summary-row.total {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    padding-top: 15px;
}

.payment-methods {
    text-align: center;
    margin-bottom: 25px;
    opacity: 0.7;
}

.payment-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.payment-vendor {
    height: 25px;
    filter: brightness(0) invert(1);
}

.digital-wallets {
    display: flex;
    gap: 20px;
    font-weight: 700;
}

.checkout-submit {
    width: 100%;
    padding: 18px;
    font-size: 1rem;
}

.secure-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 15px;
}

@media (max-width: 1200px) {
    .checkout-grid {
        grid-template-columns: 1fr 1fr;
    }

    .order-summary {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .order-summary,
    .info-form {
        grid-column: span 1;
    }

    .config-layout {
        grid-template-columns: 1fr;
    }
}

/* AI Overlay & Special Message */
.ai-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    backdrop-filter: blur(15px);
}

.ai-special-msg {
    background: linear-gradient(to right, #D4AF37 20%, #F4E08D 40%, #F4E08D 60%, #D4AF37 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    animation: specialShimmer 3s linear infinite, specialMsgPulse 3s infinite ease-in-out;
    max-width: 800px;
    line-height: 1.4;
}

@keyframes specialShimmer {
    to {
        background-position: 200% center;
    }
}

@keyframes specialMsgPulse {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.ai-spinner {
    width: 70px;
    height: 70px;
    border: 4px solid rgba(212, 175, 55, 0.1);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 30px;
}

#ai-status {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 35px;
    font-weight: 300;
}

.progress-bar {
    width: 100%;
    max-width: 400px;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

#progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, var(--dark-gold), var(--primary-gold));
    box-shadow: 0 0 15px var(--primary-gold);
    transition: width 0.3s ease;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* About Project Section */
.about-section {
    margin-top: 80px;
    margin-bottom: 80px;
}

.about-card {
    padding: 60px;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.65), rgba(18, 18, 18, 0.65));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gold);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 1.05rem;
    text-align: justify;
}

.about-subtitle {
    font-size: 1.4rem;
    margin: 35px 0 15px;
    color: var(--primary-gold);
}

.about-quote {
    font-family: 'Cinzel', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--light-gold);
    border-left: 2px solid var(--primary-gold);
    padding-left: 25px;
    margin: 40px 0 20px;
    line-height: 1.4;
}

.about-signature {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--primary-gold) !important;
    text-align: right;
    letter-spacing: 1px;
}

.about-image-container {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transition: var(--transition);
}

.about-image:hover {
    transform: scale(1.02);
    border-color: var(--primary-gold);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-container {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-card {
        padding: 40px 25px;
    }
}

/* GDPR Lead Capture Form in Generation Overlay */
.ai-loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.ai-contact-container {
    background: var(--card-bg);
    border: 2px solid var(--primary-gold);
    border-radius: 12px;
    padding: 35px 30px;
    width: 100%;
    max-width: 450px;
    text-align: left;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.15);
    animation: fadeIn 0.5s ease;
}

.ai-contact-container h3 {
    margin-bottom: 12px;
    text-align: center;
    font-size: 1.6rem;
    color: var(--primary-gold);
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

.ai-contact-container .contact-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.5;
}

.ai-contact-container .input-group {
    margin-bottom: 20px;
}

.ai-contact-container label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 8px;
    font-weight: 600;
}

.ai-contact-container input[type="text"],
.ai-contact-container input[type="email"] {
    width: 100%;
    padding: 12px;
    background: #000;
    border: 1px solid #333;
    border-radius: 6px;
    color: white;
    font-family: inherit;
    transition: var(--transition);
}

.ai-contact-container input[type="text"]:focus,
.ai-contact-container input[type="email"]:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
    outline: none;
}

.ai-contact-container .gdpr-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 25px;
}

.ai-contact-container .gdpr-checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.ai-contact-container .gdpr-checkbox-group label {
    font-size: 0.78rem;
    color: var(--text-gray);
    line-height: 1.4;
    cursor: pointer;
    margin-bottom: 0;
    font-weight: normal;
}

.ai-contact-container .btn {
    width: 100%;
    padding: 14px;
    font-weight: 700;
}

/* Force browser date picker to render in dark mode (fixing white-on-white text) */
input[type="date"] {
    color-scheme: dark;
}

/* Make native calendar icon visible in dark mode */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(0.8);
    cursor: pointer;
}

/* Custom Gold Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-black);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-gold), var(--dark-gold));
    border-radius: 5px;
    border: 2px solid var(--bg-black);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--light-gold), var(--primary-gold));
}

/* Firefox scrollbar support */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-gold) var(--bg-black);
}

/* 3D perspective hover cards */
.step-card,
.pricing-card,
.about-card {
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease, background 0.5s ease, border-color 0.5s ease;
    transform-style: preserve-3d;
}

.step-card:hover,
.pricing-card:hover,
.about-card:hover {
    transition: transform 0.1s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.12), 0 0 25px rgba(212, 175, 55, 0.06);
}

/* Drop Cap for about section (memorial chronicle effect) */
.about-content p:first-of-type::first-letter {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary-gold);
    float: left;
    line-height: 0.8;
    margin-right: 12px;
    margin-top: 5px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.35);
}

/* Reclamations Page Styles */
.reclamations-page {
    position: relative;
}

.reclamations-header {
    text-align: center;
    padding: 60px 0 40px;
    max-width: 800px;
    margin: 0 auto;
}

.reclamations-header h1 {
    font-size: 2.8rem;
    margin-top: 15px;
    margin-bottom: 15px;
}

.reclamations-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.reclamations-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .reclamations-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.reclamations-policy,
.reclamations-form-section {
    padding: 40px 30px;
}

.reclamations-policy h2,
.reclamations-form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding-bottom: 12px;
}

.policy-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.policy-section h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--primary-gold);
    letter-spacing: 1px;
}

.policy-section p,
.policy-section ul {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 10px;
}

.policy-section ul {
    padding-left: 20px;
    list-style-type: square;
}

.policy-section li {
    margin-bottom: 8px;
}

.policy-section a {
    color: var(--primary-gold);
    text-decoration: underline;
    transition: var(--transition);
}

.policy-section a:hover {
    color: var(--light-gold);
}

.policy-alert {
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid var(--primary-gold);
    padding: 20px;
    border-radius: 4px;
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-top: 15px;
}

.policy-alert strong {
    color: var(--primary-gold);
    display: block;
    margin-bottom: 8px;
}

/* Complaints Form Styling */
.form-intro {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.5;
}

#reclamation-form .input-group {
    margin-bottom: 20px;
}

#reclamation-form label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 8px;
    font-weight: 600;
}

#reclamation-form input[type="text"],
#reclamation-form input[type="email"],
#reclamation-form input[type="tel"],
#reclamation-form select,
#reclamation-form textarea {
    width: 100%;
    padding: 12px;
    background: #000;
    border: 1px solid #333;
    border-radius: 6px;
    color: white;
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
}

#reclamation-form select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23D4AF37' viewBox='0 0 16 16'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 40px;
}

#reclamation-form input[type="text"]:focus,
#reclamation-form input[type="email"]:focus,
#reclamation-form input[type="tel"]:focus,
#reclamation-form select:focus,
#reclamation-form textarea:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
    outline: none;
}

#reclamation-form textarea {
    resize: vertical;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
}

.radio-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem !important;
    font-weight: normal !important;
    line-height: 1.4;
}

.radio-label input[type="radio"] {
    margin-top: 3px;
    accent-color: var(--primary-gold);
    cursor: pointer;
}

/* Success message */
.success-alert {
    background: rgba(46, 204, 113, 0.05);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    animation: fadeIn 0.5s ease;
    margin-bottom: 25px;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    font-size: 2.2rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-alert h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: #2ecc71;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.success-alert p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* 3D tilt for reclamation cards */
.reclamations-policy,
.reclamations-form-section {
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease, background 0.5s ease, border-color 0.5s ease;
    transform-style: preserve-3d;
}

.reclamations-policy:hover,
.reclamations-form-section:hover {
    transition: transform 0.1s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.12), 0 0 25px rgba(212, 175, 55, 0.06);
}

/* Print Styling */
@media print {
    body {
        background: white !important;
        color: black !important;
        background-image: none !important;
    }

    #particle-canvas,
    nav,
    footer,
    .reclamations-header,
    .reclamations-policy,
    .form-intro,
    .form-actions,
    .checkbox-group,
    .success-alert,
    #reset-form-btn {
        display: none !important;
    }

    .reclamations-grid {
        display: block !important;
        margin: 0 !important;
    }

    .reclamations-form-section {
        border: none !important;
        box-shadow: none !important;
        background: white !important;
        padding: 0 !important;
        color: black !important;
    }

    .reclamations-form-section h2 {
        border-bottom: 2px solid black !important;
        color: black !important;
    }

    #reclamation-form {
        display: block !important;
    }

    #reclamation-form input[type="text"],
    #reclamation-form input[type="email"],
    #reclamation-form input[type="tel"],
    #reclamation-form select,
    #reclamation-form textarea {
        background: white !important;
        border: 1px solid black !important;
        color: black !important;
    }

    .radio-label span {
        color: black !important;
    }
}

/* Photo Guide Accordion Styles */
.photo-guide-accordion {
    margin: 20px 0 25px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    background: rgba(26, 26, 26, 0.4);
    overflow: hidden;
    transition: var(--transition);
}

.photo-guide-accordion[open] {
    border-color: rgba(212, 175, 55, 0.45);
    background: rgba(26, 26, 26, 0.65);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.photo-guide-accordion summary {
    padding: 18px 20px;
    font-weight: 600;
    color: var(--primary-gold);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    user-select: none;
}

.photo-guide-accordion summary::-webkit-details-marker {
    display: none;
}

.photo-guide-accordion summary::after {
    content: '▼';
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    color: var(--primary-gold);
}

.photo-guide-accordion[open] summary::after {
    transform: rotate(180deg);
}

.photo-guide-content {
    padding: 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    background: rgba(0, 0, 0, 0.25);
}

.guide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: left;
}

@media (max-width: 768px) {
    .guide-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.guide-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guide-list {
    list-style: none;
    padding: 0;
}

.guide-list li {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 12px;
    position: relative;
    padding-left: 24px;
}

.guide-list li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 0.95rem;
}

.guide-list li.g-ok::before {
    content: '✓';
    color: #2ecc71;
}

.guide-list li.g-ko::before {
    content: '✗';
    color: #e74c3c;
}

.guide-steps {
    padding-left: 20px;
    margin: 0;
}

.guide-steps li {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 12px;
}

.guide-steps li strong {
    color: var(--text-white);
}

/* ==========================================================================
   SPOMIENKY: RODINNA & HROMADNA STYLE ADDITIONS
   ========================================================================== */

.special-packages-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px dashed rgba(212, 175, 55, 0.15);
}

.special-section-title {
    text-align: center;
    color: var(--primary-gold);
    font-size: 1.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-family: 'Cinzel', serif;
}

.special-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .special-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}

.package-family {
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.08), transparent 70%), rgba(26, 26, 26, 0.65);
}

.package-family h3 {
    background: linear-gradient(135deg, var(--light-gold), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.package-bulk {
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.08), transparent 70%), rgba(26, 26, 26, 0.65);
}

.package-bulk h3 {
    background: linear-gradient(135deg, var(--light-gold), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.bulk-calculator {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
    text-align: left;
}

.calc-row {
    margin-bottom: 12px;
}

.calc-row:last-of-type {
    margin-bottom: 0;
}

.calc-row label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 5px;
    font-weight: 500;
}

.calc-select {
    width: 100%;
    padding: 8px 10px;
    background: #000;
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: #fff;
    border-radius: 4px;
    font-size: 0.85rem;
    font-family: inherit;
    cursor: pointer;
}

.calc-select:focus {
    border-color: var(--primary-gold);
    outline: none;
}

.calc-savings {
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px dashed rgba(212, 175, 55, 0.2);
    font-size: 0.85rem;
    color: #27ae60; /* green */
    font-weight: bold;
    text-align: center;
}

/* ==========================================================================
   FAMILY PROFILE: MULTI-MEMBER VIEWER STYLES (q/index.php)
   ========================================================================== */

.family-title {
    font-size: 1.3rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.family-members-selector {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    padding: 0 10px;
}

.family-member-tab {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 150px;
    flex: 1 1 100px;
    text-align: left;
}

.family-member-tab:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.family-member-tab.active {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--primary-gold);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

.family-tab-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border-gold);
    flex-shrink: 0;
}

.family-tab-info {
    overflow: hidden;
}

.family-tab-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
}

.family-tab-years {
    font-size: 0.65rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.family-member-tab.active .family-tab-name {
    color: var(--primary-gold);
}

.family-profile-card {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.family-profile-card.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Wizard customizations for multiple members */
.member-wizard-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212,175,55,0.15);
    padding-bottom: 10px;
    overflow-x: auto;
}

.member-wiz-tab {
    padding: 8px 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 6px;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.member-wiz-tab:hover {
    border-color: var(--primary-gold);
    color: var(--text-light);
}

.member-wiz-tab.active {
    background: rgba(212,175,55,0.15);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.member-wiz-tab-remove {
    font-size: 0.9rem;
    font-weight: bold;
    color: #e74c3c;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0 2px;
}

.btn-add-member {
    padding: 6px 12px;
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid #27ae60;
    color: #27ae60;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 15px;
    display: inline-block;
}

.btn-add-member:hover {
    background: rgba(39, 174, 96, 0.2);
    transform: translateY(-1px);
}

/* ==========================================================================
   MOBILE & RESPONSIVE GENERAL OVERRIDES
   ========================================================================== */

/* Prevent horizontal scroll globally, especially on iOS Safari */
html, body {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
    max-width: 100%;
}

/* Checkbox Hack Toggle Styles */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle-label span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--primary-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Responsive CSS for Mobile Screens */
@media (max-width: 992px) {
    /* Navbar Hamburger Menu Toggle */
    .nav-toggle-label {
        display: flex;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(11, 11, 11, 0.96);
        backdrop-filter: blur(15px);
        border-bottom: 2px solid rgba(212, 175, 55, 0.15);
        padding: 25px 20px;
        gap: 15px;
        list-style: none;
        z-index: 999;
        text-align: center;
        box-shadow: 0 15px 30px rgba(0,0,0,0.8);
        border-top: 1px solid rgba(212, 175, 55, 0.05);
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 8px 0;
        font-size: 1.05rem;
    }
    
    .nav-toggle:checked ~ .nav-links {
        display: flex;
    }
    
    /* Hamburger animation to X */
    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Steps Grid (How it works) */
    .steps-grid {
        grid-template-columns: 1fr !important;
        max-width: 450px;
        margin: 40px auto 0;
        gap: 30px;
    }

    /* Pricing Grid (Tiers) */
    .pricing-grid {
        grid-template-columns: 1fr !important;
        max-width: 420px;
        margin: 50px auto 0;
        gap: 40px;
    }
    
    /* Live/Popular Tier Mobile Adjustments */
    .package-live.popular {
        transform: none !important;
        margin: 0;
    }
    .package-live.popular:hover {
        transform: scale(1.02) !important;
    }
    .p-badge {
        top: -15px;
    }

    /* Phone Mockup Wrapper scaling prevention */
    .phone-mockup-wrapper {
        max-width: 100%;
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    /* Hero section font sizing and alignments */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    .hero h1 {
        font-size: 2.1rem !important;
        line-height: 1.3;
    }
    .hero p {
        font-size: 1rem !important;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    .hero-actions {
        flex-direction: column;
        gap: 15px;
        max-width: 320px;
        margin: 0 auto;
    }
    .hero-actions .btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
    .hero-monument-img {
        height: 240px;
        margin-bottom: 25px;
    }

    /* General typography sizes */
    h2 {
        font-size: 1.8rem !important;
        letter-spacing: 1px;
    }
    
    /* Demo grid stacking */
    .demo-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: center;
    }
    .demo-text {
        text-align: center;
    }
    .product-mini {
        justify-content: center;
    }
}

/* Phone Mockup Mobile Fixes to prevent horizontal scroll */
@media (max-width: 520px) {
    .phone-mockup {
        width: 290px !important;
        height: 163px !important;
        border-width: 8px !important;
        border-radius: 18px !important;
        transform: none !important;
    }
    .phone-glow {
        width: 290px !important;
        height: 180px !important;
    }
    .phone-speaker {
        height: 3px !important;
        width: 20px !important;
    }
    .phone-button {
        width: 3px !important;
        height: 15px !important;
    }
    .phone-mockup-wrapper {
        transform: none !important;
        overflow: hidden !important;
        width: 100%;
        height: auto;
        padding: 10px 0;
    }
}

/* ==========================================================================
   WIZARD & GENERATOR RESPONSIVE OVERRIDES
   ========================================================================== */

.wizard-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 40px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.step-indicator {
    flex: 1;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.cloud-status-indicator {
    font-size: 0.8rem;
    color: var(--text-gray);
    padding-right: 15px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .wizard-progress {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        background: transparent;
        padding: 0;
        border: none;
    }
    
    .step-indicator {
        padding: 10px 15px;
        border-radius: 8px;
        font-size: 0.85rem;
    }
    
    .cloud-status-indicator {
        text-align: center;
        padding-right: 0;
        margin-top: 5px;
    }

    .wizard-container {
        padding: 20px 15px !important;
        border-radius: 10px !important;
    }

    .input-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }

    .upload-zone {
        padding: 30px 15px !important;
    }
}