/*
Theme Name: Pressureproof
Theme URI: https://pressureproof.de
Author: Daniel Bardosi
Author URI: https://pressureproof.de
Description: Custom WordPress Theme für die Pressureproof Website - Evidenzbasiertes Performance System für Führungskräfte
Version: 1.79
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pressureproof
*/

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --bg-main: #0A0A0A;
    --bg-alt: #111111;
    --bg-card: #1a1a1a;
    --navy: #101B2E;
    --gold: #C9A227;
    --gold-light: #FFD700;
    --white: #FFFFFF;
    --gray: #9A9A9A;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-main);
    color: var(--white);
    overflow-x: hidden;
}

/* ============================================
   TOP BAR (Versandinfo)
   ============================================ */
.top-bar {
    background: var(--gold);
    color: var(--bg-main);
    text-align: center;
    padding: 0.35rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    padding: 0.6rem 2rem;
}

/* WordPress Admin Bar offset */
.admin-bar header {
    top: 32px;
}
.admin-bar .hero-logo-animated {
    top: 32px;
}
@media screen and (max-width: 782px) {
    .admin-bar header {
        top: 46px;
    }
    .admin-bar .hero-logo-animated {
        top: 46px;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    height: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-logo.visible {
    opacity: 1;
}

.nav-logo img {
    height: 100%;
    width: auto;
}

.no-hero-logo .nav-logo {
    opacity: 1;
}

.hero-logo-animated {
    position: fixed;
    z-index: 2000;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.hero-logo-animated .logo-diamond {
    position: absolute;
}

.hero-logo-animated .logo-text-group {
    position: absolute;
    white-space: nowrap;
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
    text-shadow: 0 0 12px rgba(201, 162, 39, 0.4);
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

.nav-links a.active,
.nav-links .current-menu-item a,
.nav-links .current_page_item a,
.nav-links .current-menu-ancestor a {
    color: var(--gold);
    text-shadow: 0 0 12px rgba(201, 162, 39, 0.4);
}

.nav-links .current-menu-item a::after,
.nav-links .current_page_item a::after {
    width: 100%;
    left: 0;
    background: var(--gold);
}

/* ============================================
   CTA BUTTON
   ============================================ */
.cta-button {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 12px 22px;
    background: var(--gold);
    color: var(--bg-main);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    white-space: nowrap;
    margin-left: 0.5rem;
}

.cta-button::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--bg-main);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.cta-button:hover {
    background: var(--gold-light);
    color: var(--bg-main);
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.5), 0 0 20px rgba(201, 162, 39, 0.2);
}

/* Warenkorb Icon im Header */
.nav-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    margin-left: 1rem;
    transition: color 0.3s;
}

.nav-cart:hover {
    color: var(--gold);
}

.nav-cart svg {
    width: 22px;
    height: 22px;
}

.nav-cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--gold);
    color: var(--bg-main);
    font-size: 0.6rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ============================================
   HAMBURGER MENU
   ============================================ */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: 0.3s;
}

/* ============================================
   IMAGE STYLES — Parallax Divider (identisch mit Deep Dive)
   ============================================ */
.section-image-divider {
    width: 100%;
    height: 320px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.section-image-divider::before {
    display: none;
}

.section-image-divider::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, transparent 20%, transparent 80%, var(--bg-main) 100%);
}

.section-image-divider.to-alt::after {
    background: linear-gradient(180deg, var(--bg-main) 0%, transparent 20%, transparent 80%, var(--bg-alt) 100%);
}

.section-image-divider.from-alt::after {
    background: linear-gradient(180deg, var(--bg-alt) 0%, transparent 20%, transparent 80%, var(--bg-main) 100%);
}

.section-image-divider .image-overlay-text {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
}

.image-side-by-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.image-side-by-side .image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 60px rgba(201, 162, 39, 0.05);
}

.image-side-by-side .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.7) saturate(0.85);
    transition: filter 0.4s ease;
}

.image-side-by-side .image-wrapper:hover img {
    filter: brightness(0.85) saturate(1);
}

.image-side-by-side .image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 4px;
    pointer-events: none;
}

.image-inline-feature {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    margin: 1.5rem 0;
    max-width: 480px;
    height: 160px;
    border: 1px solid rgba(201, 162, 39, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 60px rgba(201, 162, 39, 0.05);
}

.image-inline-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.65) saturate(0.85);
    transition: filter 0.4s ease;
}

.image-inline-feature:hover img {
    filter: brightness(0.8) saturate(1);
}

.image-inline-feature .image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--bg-alt) 100%);
    padding: 100px 2rem 50px;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('') center center / cover no-repeat;
    opacity: 0.15;
    z-index: 1;
    filter: saturate(0.3);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--bg-main) 75%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

/* Ensure all hero text elements appear above ::before/::after overlays on all pages */
.hero h1,
.hero .hero-subtitle,
.hero .hero-subheading,
.hero .badge,
.hero .hero-ctas,
.hero p {
    position: relative;
    z-index: 10;
}

.hero--subpage {
    min-height: 50vh;
}

.hero--subpage-medium {
    min-height: 60vh;
}

.badge {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
}

.badge::before {
    content: '◉ ';
    display: inline-block;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
}

.hero-subheading {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 3rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-primary {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--bg-main);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.cta-primary::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--bg-main);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.cta-primary:hover {
    background: var(--gold-light);
    color: var(--bg-main);
    transform: scale(1.06) translateY(-3px);
    box-shadow: 0 12px 36px rgba(201, 162, 39, 0.5), 0 0 20px rgba(201, 162, 39, 0.2);
}

.cta-secondary {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 14px 32px;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-secondary::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.cta-secondary:hover {
    background: var(--gold);
    color: var(--bg-main);
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

.cta-secondary:hover::before {
    background: var(--bg-main);
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(201, 162, 39, 0.3);
    position: relative;
    z-index: 50;
}

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

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

section:nth-child(odd) {
    background-color: var(--bg-main);
}

section:nth-child(even) {
    background-color: var(--bg-alt);
}

.section-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--white);
    text-transform: uppercase;
}

h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    margin: 1.5rem 0 1rem;
    text-transform: uppercase;
}

.section-intro {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 800px;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.warning-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.warning-block {
    background: var(--bg-card);
    padding: 2rem;
    border-left: 4px solid var(--gold);
    line-height: 1.8;
}

.warning-block strong {
    display: block;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.data-box {
    background: var(--bg-card);
    padding: 2rem;
    border: 1px solid rgba(201, 162, 39, 0.3);
    margin: 2rem 0;
}

.data-box-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.data-box-item:last-child {
    margin-bottom: 0;
}

.data-stat {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
}

.data-label {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}

.transition-text {
    font-size: 1rem;
    color: var(--gold);
    margin-top: 2rem;
    font-style: italic;
    text-align: center;
}

/* ============================================
   SOLUTION CARDS
   ============================================ */
.transformation-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.card {
    background-color: var(--bg-card);
    padding: 2rem;
    border: 1px solid var(--gold);
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--gold);
    background-color: rgba(201, 162, 39, 0.05);
}

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

.card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.card-text {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

.card-with-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.card-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    z-index: 1;
    transition: all 0.3s ease;
}

.card-with-bg:hover::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.card-with-bg .card-icon,
.card-with-bg .card-title,
.card-with-bg .card-text {
    position: relative;
    z-index: 2;
}

.card-with-bg .card-text {
    color: rgba(255, 255, 255, 0.75);
}

.card-with-bg.card-schach {
    background-size: 180%;
    background-position: center 88%;
}

.card-with-bg.card-schach::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.1));
}

.card-with-bg.card-schach:hover::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.0));
}

/* ============================================
   ECOSYSTEM SECTION
   ============================================ */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.pillar {
    background: var(--bg-card);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    border: 1px solid rgba(201, 162, 39, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--white);
}

.pillar:hover {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.05);
    transform: translateY(-4px);
}

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pillar-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.pillar-text {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
}

.about-text {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
}

.about-image {
    background: transparent;
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

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

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    align-items: stretch;
}

.testimonial {
    background: var(--bg-card);
    padding: 2rem;
    border: 1px solid var(--gold);
    border-left: 4px solid var(--gold);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial::before {
    content: '\201E';
    position: absolute;
    top: 15px;
    left: 20px;
    font-family: Georgia, serif;
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
}

.testimonial-text {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    padding-left: 30px;
    padding-top: 0.5rem;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.testimonial-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.testimonial-photo span {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 700;
}

.testimonial-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--white);
    font-weight: 700;
}

/* ============================================
   BOOK PAGE STYLES
   ============================================ */
.book-container {
    background: var(--bg-card);
    padding: 3rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.book-layout {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 3rem;
    align-items: start;
}

/* FLIP CARD SYSTEM */
.book-cover {
    width: 100%;
    background: transparent;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    perspective: 1200px;
    overflow: visible;
}

.flip-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 2/3;
    cursor: pointer;
    z-index: 1;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    transform-style: preserve-3d;
    transform-origin: center center;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
    /* KEIN scale() — Cover ist schon groß genug */
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 4px;
    overflow: hidden;
}

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

.flip-card-back img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.flip-card-back {
    transform: rotateY(180deg);
}

.flip-card-front {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.flip-card:hover .flip-card-front {
    box-shadow: none;
}

.flip-card:hover .flip-card-back {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(201, 162, 39, 0.15);
}

/* FULLSCREEN OVERLAY for back cover */
.backcover-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.92);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 2rem;
}

.backcover-overlay.active {
    display: flex;
}

.backcover-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border: 2px solid var(--gold);
    border-radius: 8px;
    box-shadow: 0 0 60px rgba(201, 162, 39, 0.3);
}

.backcover-overlay .close-overlay {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: var(--gold);
    font-size: 2.5rem;
    cursor: pointer;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.2s ease;
}

.backcover-overlay .close-overlay:hover {
    transform: scale(1.2);
}

.book-info h3 {
    margin-top: 0;
}

.book-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--bg-main);
    padding: 0.5rem 1rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.book-number {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.book-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.book-subtitle {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.book-description {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
    margin: 1.5rem 0;
}

.book-stats {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: var(--white);
}

.book-stats span {
    display: block;
    font-weight: 600;
}

.book-meta {
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: var(--gray);
}

.book-meta-item {
    margin-bottom: 0.5rem;
}

.book-bullets {
    list-style: none;
    margin: 1.5rem 0;
}

.book-bullets li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}

.book-bullets li::before {
    content: '\25AA';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.book-tagline {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--gold);
    margin: 1.5rem 0;
}

.book-ctas {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-primary {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 12px 24px;
    background: var(--gold);
    color: var(--bg-main);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--white);
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.3);
}

.btn-secondary {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 12px 24px;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--bg-main);
    transform: scale(1.08);
}

.navy-section {
    background-color: var(--navy) !important;
}

.trilogy-intro {
    text-align: center;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 3rem;
}

.reading-order {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.trilogy-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.trilogy-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 3rem;
    border: 1px solid rgba(201, 162, 39, 0.3);
    overflow: visible;
    display: grid;
    grid-template-columns: 42% 1fr;
    gap: 3rem;
    align-items: start;
}

.trilogy-card + .trilogy-card {
    border-top: 1px solid rgba(201, 162, 39, 0.15);
}

.trilogy-card .trilogy-card-cover {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    perspective: 1200px;
}

.trilogy-card .trilogy-card-info {
    display: flex;
    flex-direction: column;
}

.trilogy-card .btn-primary {
    margin-top: auto;
}

.trilogy-card h3 {
    margin-top: 0;
}

.transition-gold {
    text-align: center;
    font-style: italic;
    font-size: 1rem;
    color: var(--gold);
    margin: 3rem 0;
}

.transition-cta {
    text-align: center;
    margin: 2rem 0;
}

/* ============================================
   TRANSFORMATION PAGE
   ============================================ */
.selection-box {
    background: var(--bg-card);
    border: 2px solid var(--gold);
    padding: 3rem;
    margin: 2rem 0;
    text-align: center;
}

.selection-box h3 {
    margin-top: 0;
}

.selection-box p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.selection-note {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
    margin-top: 1rem;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.module-card {
    background: var(--bg-card);
    padding: 2rem;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.module-number {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.module-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.module-description {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-intro h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.pricing-intro p {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(201, 162, 39, 0.2);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.05);
    transform: translateY(-4px);
}

.pricing-card--recommended {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.08);
}

.recommended-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--bg-main);
    padding: 0.5rem 1rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.pricing-subtitle {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.pricing-price {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-installment {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.pricing-features {
    text-align: left;
    list-style: none;
    margin: 1.5rem 0;
    min-height: 300px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

.pricing-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.pricing-cta {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 12px 24px;
    background: var(--gold);
    color: var(--bg-main);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
    margin-top: auto;
    text-decoration: none;
    text-align: center;
    display: block;
}

.pricing-cta:hover {
    background: var(--white);
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.3);
}

.component-section {
    background: var(--bg-card);
    padding: 2.5rem;
    margin: 2rem 0;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.component-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.component-text {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.guarantee-box {
    background: var(--bg-card);
    border: 2px solid var(--gold);
    padding: 3rem;
    text-align: center;
    margin: 2rem 0;
}

.guarantee-box h3 {
    margin-top: 0;
}

.guarantee-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin: 1rem 0 1.5rem;
    font-style: italic;
}

.guarantee-text {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.first-call {
    text-align: center;
    background: var(--bg-card);
    padding: 3rem;
    margin: 2rem 0;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.first-call h3 {
    margin-top: 0;
}

.first-call-text {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.first-call-cta {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--bg-main);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
}

.first-call-cta:hover {
    background: var(--white);
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.3);
}

.first-call-contact {
    font-size: 0.9rem;
    color: var(--gray);
}

.first-call-contact a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.first-call-contact a:hover {
    color: var(--white);
}

.faq-container {
    margin: 3rem 0;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid rgba(201, 162, 39, 0.2);
    margin-bottom: 1rem;
}

.accordion-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(201, 162, 39, 0.05);
}

.accordion-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
}

.accordion-toggle {
    color: var(--gold);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-toggle.active {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
}

.accordion-content.active {
    max-height: 1000px;
}

.accordion-text {
    padding: 2rem;
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================
   DOWNLOADS PAGE
   ============================================ */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.download-section {
    background: var(--bg-card);
    padding: 2.5rem;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.download-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.download-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.download-subtitle {
    font-size: 0.9rem;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.download-list {
    list-style: none;
}

.download-item {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.download-item:last-child {
    border-bottom: none;
}

.download-item::before {
    content: '\1F4C4';
    position: absolute;
    left: 0;
    margin-right: 0.5rem;
}

.download-item a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.download-item a:hover {
    color: var(--white);
}

.download-arrow {
    margin-left: 0.5rem;
    opacity: 0.6;
}

.no-opt-in {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
}

/* ============================================
   LOGIN PAGE
   ============================================ */
.login-page {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--bg-alt) 100%);
    position: relative;
    overflow: hidden;
}

.login-page::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 600px;
    height: 600px;
    border: 1px solid rgba(201, 162, 39, 0.04);
    pointer-events: none;
}

.login-page::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 400px;
    height: 400px;
    border: 1px solid rgba(201, 162, 39, 0.06);
    pointer-events: none;
}

.login-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 460px;
    animation: fadeInUp 0.8s ease forwards;
}

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

.login-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo svg {
    width: 120px;
    height: auto;
}

.login-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 2rem;
}

.login-card {
    background: var(--bg-card);
    border: 1px solid rgba(201, 162, 39, 0.15);
    padding: 3rem 2.5rem;
    position: relative;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.login-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.login-subtext {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.input-wrapper {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.05);
    box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.1);
}

.password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 4px;
}

.password-toggle:hover {
    color: var(--gold);
}

.btn-login {
    width: 100%;
    padding: 16px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--bg-main);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 0.5rem;
}

.btn-login::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--bg-main);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transition: transform 0.3s ease;
}

.btn-login:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.3);
}

.btn-login:hover::before {
    transform: rotate(90deg);
}

.btn-login:active {
    transform: translateY(0);
}

.forgot-link {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    color: var(--gray);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.forgot-link:hover {
    color: var(--gold);
}

.form-message {
    padding: 12px 16px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    display: none;
    text-align: center;
    letter-spacing: 0.5px;
}

.form-message.error {
    display: block;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b6b;
}

.form-message.success {
    display: block;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    color: var(--gold-light);
}

.reset-view {
    display: none;
}

.reset-view.active {
    display: block;
}

.login-view.hidden {
    display: none;
}

.back-to-login {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    color: var(--gray);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.back-to-login:hover {
    color: var(--gold);
}

.back-to-login::before {
    content: '\2190 ';
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 2rem 60px;
}

.legal-page-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.legal-page-subtitle {
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.legal-h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.legal-h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2.5rem;
    margin-bottom: 0.8rem;
}

.legal-h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 1rem;
}

.legal-text a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(201, 162, 39, 0.3);
    letter-spacing: 2.5px;
}

.back-link::before {
    content: '\2190';
    font-size: 1.2rem;
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    z-index: 10000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.mobile-nav.active {
    display: flex;
}

/* Hide hero logo animation when mobile nav is open */
.mobile-nav.active ~ .hero-logo-animated,
body:has(.mobile-nav.active) .hero-logo-animated {
    opacity: 0 !important;
    pointer-events: none;
}

.mobile-nav a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

.mobile-nav .close-btn {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    background: none;
    border: none;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: #1e1e1e;
    padding: 4rem 2rem;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-section h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-logo {
    width: 360px;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease, letter-spacing 0.3s ease, text-shadow 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    letter-spacing: 0.5px;
    text-shadow: 0 0 8px rgba(201, 162, 39, 0.3);
}

.footer-bottom {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray);
}

.footer-tagline {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

/* ============================================
   NEWSLETTER SECTION (Footer)
   ============================================ */
.newsletter-section .fluentform .ff-el-input--content input[type="email"] {
    background: #1a1a1a !important;
    border: 1px solid rgba(201, 162, 39, 0.3) !important;
    color: #FFFFFF !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.95rem !important;
    padding: 12px 16px !important;
    border-radius: 0 !important;
    width: 100% !important;
    max-width: 400px !important;
    margin: 0 auto !important;
}

.newsletter-section .fluentform .ff-el-input--content input[type="email"]::placeholder {
    color: #666666 !important;
}

.newsletter-section .fluentform .ff-el-input--content input[type="email"]:focus {
    border-color: #C9A227 !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.1) !important;
}

.newsletter-section .fluentform .ff-btn-submit {
    background: #C9A227 !important;
    color: #0A0A0A !important;
    font-family: 'Oswald', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    padding: 12px 40px !important;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    transition: background 0.3s !important;
    margin-top: 10px !important;
}

.newsletter-section .fluentform .ff-btn-submit:hover {
    background: #FFD700 !important;
}

.newsletter-section .fluentform label {
    display: none !important;
}

.newsletter-section .fluentform .ff-el-group {
    margin-bottom: 10px !important;
}

.newsletter-section .fluentform .ff-message-success {
    color: #C9A227 !important;
    font-family: 'Montserrat', sans-serif !important;
}

/* ============================================
   WOOCOMMERCE STYLING
   ============================================ */
.woocommerce-page,
.single-product,
.post-type-archive-product {
    background-color: var(--bg-main) !important;
    color: var(--white) !important;
}

/* Hide sidebar on WooCommerce pages */
.woocommerce-page .widget-area,
.woocommerce-page aside,
.woocommerce-page #secondary,
.woocommerce-page .sidebar,
.single-product .widget-area,
.single-product aside,
.single-product #secondary,
.single-product .sidebar {
    display: none !important;
}

/* Full width content */
.woocommerce-page #primary,
.woocommerce-page .content-area,
.single-product #primary,
.single-product .content-area {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
}

/* WooCommerce container padding */
.woo-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 2rem 40px !important;
}

/* Product description tabs padding */
.woocommerce div.product .woocommerce-tabs {
    padding: 0 !important;
    max-width: 1200px !important;
}

.woocommerce div.product .woocommerce-tabs .panel {
    padding: 20px 30px !important;
    background-color: var(--bg-alt) !important;
}

/* Breadcrumbs padding */
.woocommerce .woocommerce-breadcrumb {
    padding: 0 !important;
    margin-bottom: 1.5rem !important;
}

/* Hide WordPress default sidebar widgets on WooCommerce pages */
.single-product .wp-block-search,
.single-product .wp-block-pages-list,
.single-product .wp-block-archives,
.single-product .wp-block-categories,
.woocommerce-page .wp-block-search,
.woocommerce-page .wp-block-pages-list,
.woocommerce-page .wp-block-archives,
.woocommerce-page .wp-block-categories {
    display: none !important;
}

.woocommerce div.product div.summary {
    color: var(--white) !important;
}

.woocommerce div.product .product_title {
    font-family: 'Oswald', sans-serif !important;
    color: var(--white) !important;
    font-weight: 500 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--gold) !important;
    font-family: 'Oswald', sans-serif !important;
    font-size: 1.5rem !important;
}

.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce div.product .description p {
    color: var(--gray) !important;
    font-family: 'Montserrat', sans-serif !important;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .single_add_to_cart_button {
    background-color: var(--gold) !important;
    color: var(--bg-main) !important;
    font-family: 'Oswald', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 12px 30px !important;
    transition: background 0.3s !important;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .single_add_to_cart_button:hover {
    background-color: var(--gold-light) !important;
    color: var(--bg-main) !important;
}

.woocommerce nav.woocommerce-breadcrumb {
    color: var(--gray) !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.85rem !important;
}

.woocommerce nav.woocommerce-breadcrumb a {
    color: var(--gold) !important;
    text-decoration: none !important;
}

.woocommerce .quantity .qty {
    background-color: var(--bg-card) !important;
    color: var(--white) !important;
    border: 1px solid rgba(201, 162, 39, 0.3) !important;
    border-radius: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background-color: var(--bg-card) !important;
    border-color: rgba(201, 162, 39, 0.3) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    color: var(--gray) !important;
    font-family: 'Oswald', sans-serif !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--gold) !important;
}

.woocommerce div.product .woocommerce-tabs .panel {
    background-color: var(--bg-alt) !important;
    color: var(--gray) !important;
}

.woocommerce .product_meta {
    color: var(--gray) !important;
}

.woocommerce .product_meta a {
    color: var(--gold) !important;
}

/* Versandkosten Link sichtbar machen */
.woocommerce div.product p.price + .woocommerce-product-details__short-description,
.woocommerce div.product .woocommerce-Price-amount {
    color: var(--gold) !important;
}

.woocommerce div.product .price ~ span,
.woocommerce div.product .product_meta,
.woocommerce div.product .posted_in,
.woocommerce div.product .tagged_as {
    color: var(--gray) !important;
}

.woocommerce div.product a.woocommerce-review-link,
.woocommerce div.product .woocommerce-product-details__short-description a,
.woocommerce div.product .price + p a,
.woocommerce div.product .shipping a,
.woocommerce div.product a[href*="versand"],
.single-product .summary a {
    color: var(--gold) !important;
    text-decoration: underline !important;
}

/* Inkl MwSt und Versandkosten Text */
.woocommerce div.product .woocommerce-price-suffix,
.single-product .summary .price ~ *:not(.cart):not(.woocommerce-product-gallery) {
    color: var(--gray) !important;
}

/* Produktbild verkleinern */
.woocommerce div.product div.images {
    max-width: 400px !important;
}

.woocommerce div.product div.images img {
    max-height: 500px !important;
    width: auto !important;
    object-fit: contain !important;
}

.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message {
    background-color: var(--bg-card) !important;
    color: var(--white) !important;
    border-top-color: var(--gold) !important;
}

/* WooCommerce Cart & Checkout */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
    color: var(--white) !important;
}

.woocommerce table.shop_table {
    background-color: var(--bg-card) !important;
    color: var(--white) !important;
    border-color: rgba(201, 162, 39, 0.2) !important;
}

.woocommerce table.shop_table th {
    color: var(--gold) !important;
    font-family: 'Oswald', sans-serif !important;
}

.woocommerce table.shop_table td {
    color: var(--white) !important;
    border-color: rgba(201, 162, 39, 0.1) !important;
}

.woocommerce-checkout .form-row label {
    color: var(--white) !important;
}

.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
    background-color: var(--bg-card) !important;
    color: var(--white) !important;
    border: 1px solid rgba(201, 162, 39, 0.3) !important;
    border-radius: 0 !important;
}

/* Product archive/shop page */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Oswald', sans-serif !important;
    color: var(--white) !important;
}

.woocommerce ul.products li.product .price {
    color: var(--gold) !important;
}

/* PayPal "Bezahlen Sie 30 Tage später" text visible on dark background */
.woocommerce .ppc-button-wrapper,
.woocommerce .ppc-button-wrapper *,
.woocommerce [class*="paypal"] small,
.woocommerce [class*="paypal"] .message,
.woocommerce .ppc-message,
.woocommerce .ppc-message *,
.woocommerce .ppcp-messages,
.woocommerce .ppcp-messages *,
.woocommerce #ppcp-messages,
.woocommerce #ppcp-messages *,
.woocommerce [data-pp-message],
.woocommerce [data-pp-message] *,
.woocommerce .wc-block-components-payment-method-label small,
.woocommerce .payment_method_ppcp-gateway .about_paypal,
.woocommerce .payment_method_ppcp-gateway p,
.woocommerce .payment_method_ppcp-gateway label,
.woocommerce .payment_box p,
.woocommerce .payment_box label {
    color: #cccccc !important;
}

/* Coupon/Gutschein button — gold with white text (classic checkout) */
.woocommerce .coupon .button,
.woocommerce .coupon button,
.woocommerce #coupon_code + .button,
.woocommerce .checkout_coupon .button,
.woocommerce .checkout_coupon button[name="apply_coupon"],
.woocommerce-cart .coupon .button,
.woocommerce-checkout .coupon .button {
    background: var(--gold) !important;
    color: var(--white) !important;
    border: none !important;
    font-family: 'Oswald', sans-serif !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
}

/* Coupon/Gutschein "Anwenden" button — block checkout */
.wc-block-components-button.wp-element-button.wc-block-components-totals-coupon__button,
.wc-block-components-button.wp-element-button.wc-block-components-totals-coupon__button.contained,
button.wc-block-components-totals-coupon__button,
.wc-block-components-totals-coupon__form .wc-block-components-button {
    background: var(--gold) !important;
    background-color: var(--gold) !important;
    color: #ffffff !important;
    border: none !important;
    font-family: 'Oswald', sans-serif !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    padding: 0.6rem 1.2rem !important;
    opacity: 1 !important;
}

.wc-block-components-totals-coupon__button .wc-block-components-button__text {
    color: #ffffff !important;
}

.wc-block-components-button.wc-block-components-totals-coupon__button:hover {
    background: var(--gold-light) !important;
    background-color: var(--gold-light) !important;
}

/* Block checkout — "Jetzt kaufen" / place order button */
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button,
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained,
.wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
    background: var(--gold) !important;
    background-color: var(--gold) !important;
    color: var(--bg-main) !important;
    font-family: 'Oswald', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    border: none !important;
    padding: 1rem 2rem !important;
}

.wc-block-components-checkout-place-order-button .wc-block-components-button__text {
    color: var(--bg-main) !important;
}

.wc-block-components-checkout-place-order-button:hover {
    background: var(--gold-light) !important;
    background-color: var(--gold-light) !important;
}

/* Block checkout — Bestellübersicht: dunkler Hintergrund */
.wc-block-components-order-summary,
.wc-block-components-order-summary__content {
    background-color: var(--bg-card) !important;
    background: var(--bg-card) !important;
}

.wc-block-components-order-summary-item .wc-block-cart-item__prices,
.wc-block-components-order-summary-item .wc-block-formatted-money-amount,
.wc-block-components-order-summary-item__total-price,
.wc-block-components-order-summary-item__total-price .wc-block-formatted-money-amount {
    color: var(--gold) !important;
}

/* Block checkout — Bestellübersicht: Metadaten ausblenden, kompakter */
.wc-block-components-order-summary-item .wc-block-components-product-metadata {
    display: none !important;
}

/* Kleinere Produktbilder für mehr Platz */
.wc-block-components-order-summary-item__image {
    width: 36px !important;
    min-width: 36px !important;
    flex: 0 0 36px !important;
}

.wc-block-components-order-summary-item__image img {
    width: 36px !important;
    height: auto !important;
}

/* Mengen-Badge: dunkel statt weiß */
.wc-block-components-order-summary-item__quantity {
    font-size: 0.55rem !important;
    width: 18px !important;
    height: 18px !important;
    line-height: 18px !important;
    min-width: 18px !important;
    background-color: var(--bg-main) !important;
    color: var(--gold) !important;
    border: 1px solid var(--gold) !important;
    border-radius: 50% !important;
    text-align: center !important;
}

/* Goldener Rahmen um Produktbilder */
.wc-block-components-order-summary-item__image img {
    border: 1px solid rgba(201, 162, 39, 0.5) !important;
    border-radius: 2px !important;
}

/* Produktname: max 2 Zeilen, dann "..." */
.wc-block-components-order-summary-item .wc-block-components-product-name {
    font-size: 0.7rem !important;
    line-height: 1.2 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    font-family: 'Oswald', sans-serif !important;
    color: var(--white) !important;
}

/* Einzelpreis kompakter */
.wc-block-components-order-summary-item .wc-block-cart-item__prices {
    font-size: 0.7rem !important;
}

/* Gesamtpreis rechts, kein Umbruch */
.wc-block-components-order-summary-item__total-price {
    white-space: nowrap !important;
    font-size: 0.75rem !important;
    text-align: right !important;
}

/* Block checkout — Gutschein-Formular Layout fix */
.wc-block-components-totals-coupon__form .wc-block-components-text-input {
    flex: 1 1 auto !important;
    min-width: 0 !important;
}

.wc-block-components-totals-coupon__form .wc-block-components-button {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    padding: 0.5rem 0.8rem !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.5px !important;
}

/* Block checkout — Gutschein-Eingabefeld "Code eingeben" */
.wc-block-components-totals-coupon__input input,
.wc-block-components-totals-coupon input,
.wc-block-components-totals-coupon input[type="text"],
.wc-block-components-totals-coupon__content .wc-block-components-text-input input,
.wc-block-components-totals-coupon__form .wc-block-components-text-input input,
.wc-block-components-totals-coupon__content input {
    background: var(--bg-card) !important;
    background-color: var(--bg-card) !important;
    color: var(--white) !important;
    border: 1px solid rgba(201, 162, 39, 0.3) !important;
}

.wc-block-components-totals-coupon__input label,
.wc-block-components-totals-coupon label,
.wc-block-components-totals-coupon__form label,
.wc-block-components-totals-coupon .wc-block-components-text-input label {
    color: #999999 !important;
}

/* Block checkout — Formularfelder dunkles Theme */
.wc-block-components-text-input input,
.wc-block-components-text-input textarea,
.wc-blocks-components-select__select,
.wc-blocks-components-select__container,
.wc-block-components-address-form input,
.wc-block-components-address-form select,
.wc-block-checkout input[type="text"],
.wc-block-checkout input[type="email"],
.wc-block-checkout input[type="tel"],
.wc-block-checkout select,
.wc-block-checkout .wc-blocks-components-select__container {
    background-color: var(--bg-card) !important;
    color: var(--white) !important;
    border: 1px solid rgba(201, 162, 39, 0.3) !important;
    border-radius: 0 !important;
}

/* Dropdown-Optionen auch dunkel */
.wc-blocks-components-select__select option {
    background-color: var(--bg-card) !important;
    color: var(--white) !important;
}

.wc-block-components-text-input label,
.wc-blocks-components-select__label,
.wc-block-components-address-form label,
.wc-block-checkout label {
    color: #999999 !important;
}

.wc-block-components-text-input.is-active label,
.wc-block-components-text-input:focus-within label {
    color: var(--gold) !important;
}

.wc-block-components-text-input input:focus,
.wc-block-checkout input:focus,
.wc-block-checkout select:focus {
    border-color: var(--gold) !important;
    outline: none !important;
}

/* Block checkout — Checkboxen und Radio-Buttons */
.wc-block-components-checkbox__label,
.wc-block-components-radio-control__label,
.wc-block-components-radio-control__description,
.wc-block-components-radio-control__secondary-label,
.wc-block-components-radio-control__secondary-description {
    color: var(--white) !important;
}

/* Block checkout — allgemeine Textfarben */
.wc-block-components-totals-coupon label,
.wc-block-components-totals-coupon .wc-block-components-panel__button,
.wc-block-checkout p,
.wc-block-checkout span,
.wc-block-checkout a,
.wc-block-checkout .wc-block-components-checkout-step__description {
    color: var(--white) !important;
}

.wc-block-checkout a {
    color: var(--gold) !important;
}

/* ============================================
   PASSWORD MODAL
   ============================================ */
#pw-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    display: none;
}

#pw-overlay.active {
    display: flex;
}

.pw-modal {
    background: var(--bg-card);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 380px;
    width: 90%;
    text-align: center;
}

.pw-modal input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--bg-main);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    outline: none;
    transition: border 0.3s;
}

.pw-modal input:focus {
    border-color: var(--gold);
}

.pw-modal .pw-submit {
    width: 100%;
    padding: 0.8rem;
    background: var(--gold);
    color: var(--bg-main);
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
}

/* ============================================
   404 ERROR PAGE
   ============================================ */
.error-404 {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    text-align: center;
}

.error-404 h1 {
    font-size: 8rem;
    color: var(--gold);
    line-height: 1;
}

.error-404 p {
    color: var(--gray);
    margin: 1rem 0 2rem;
}

/* ============================================
   THEME TOGGLE BUTTON
   ============================================ */
.theme-toggle {
    background: none;
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gold);
    margin-left: 0.8rem;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.theme-toggle:hover {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
    transform: scale(1.1);
}

/* Dark mode (default): show sun icon, hide moon */
.theme-toggle .icon-sun {
    display: block;
}

.theme-toggle .icon-moon {
    display: none;
}

/* Light mode: show moon icon, hide sun */
body.light-mode .theme-toggle .icon-sun {
    display: none;
}

body.light-mode .theme-toggle .icon-moon {
    display: block;
}

/* ============================================
   LIGHT MODE OVERRIDES
   ============================================ */
body.light-mode {
    --bg-main: #FAFAF8;
    --bg-alt: #F0EDE6;
    --bg-card: #FFFFFF;
    --white: #2A2A2A;
    --gray: #5A5A5A;
    --gold: #8B6F1A;
    --gold-light: #A68520;
    background-color: #FAFAF8;
    color: #2A2A2A;
}

/* Header & Nav: force dark in light mode (CSS vars --white changes, so override explicitly) */
body.light-mode header {
    background: rgba(30, 30, 30, 0.95);
}

body.light-mode .nav-links a,
body.light-mode .nav-cart,
body.light-mode .hamburger span {
    color: #FFFFFF;
}

body.light-mode .hamburger span {
    background: #FFFFFF;
}

body.light-mode .nav-links a:hover,
body.light-mode .nav-links a.active,
body.light-mode .nav-links .current-menu-item a,
body.light-mode .nav-links .current_page_item a,
body.light-mode .nav-cart:hover {
    color: var(--gold);
}

/* Hero section */
body.light-mode .hero {
    background: linear-gradient(135deg, #FAFAF8 0%, #F0EDE6 100%);
}

body.light-mode .hero::after {
    background: radial-gradient(ellipse at center, transparent 0%, #FAFAF8 75%);
}

/* Hero logo animation — PRESSUREPROOF text black in light mode */
body.light-mode .hero-logo-animated text[fill="#FFFFFF"] {
    fill: #2A2A2A !important;
}

/* Cards and boxes */
body.light-mode .card,
body.light-mode .data-box,
body.light-mode .pillar,
body.light-mode .module-card,
body.light-mode .pricing-card,
body.light-mode .download-section,
body.light-mode .component-section,
body.light-mode .guarantee-box,
body.light-mode .first-call,
body.light-mode .selection-box,
body.light-mode .accordion-item,
body.light-mode .testimonial,
body.light-mode .book-container {
    background: #FFFFFF;
    border-color: rgba(201, 162, 39, 0.25);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Warning blocks stay dark in light mode for readability */
body.light-mode .warning-block {
    background: #1A1A1A;
    border-color: rgba(201, 162, 39, 0.3);
    color: rgba(255, 255, 255, 0.85);
}
body.light-mode .warning-block strong {
    color: #FFFFFF;
}

body.light-mode .card:hover,
body.light-mode .pillar:hover,
body.light-mode .pricing-card:hover {
    background: rgba(201, 162, 39, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Pricing recommended card */
body.light-mode .pricing-card--recommended {
    background: rgba(201, 162, 39, 0.06);
}

/* Accordion */
body.light-mode .accordion-header:hover {
    background: rgba(201, 162, 39, 0.06);
}

body.light-mode .accordion-content {
    background: rgba(0, 0, 0, 0.03);
}

/* Trilogy cards */
body.light-mode .trilogy-card {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(201, 162, 39, 0.25);
}

/* Stats bar border */
body.light-mode .stats-bar {
    border-top-color: rgba(201, 162, 39, 0.3);
}

/* Section backgrounds */
body.light-mode section:nth-child(odd) {
    background-color: #FAFAF8;
}

body.light-mode section:nth-child(even) {
    background-color: #F0EDE6;
}

/* Stat hover tooltips — solid dark background in BOTH modes */
.stat-hover-trigger {
    position: relative;
    cursor: pointer;
}
.stat-hint {
    font-size: 0.7rem;
    color: #C9A227;
    margin-top: 0.3rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.stat-hover-trigger:hover .stat-hint {
    opacity: 1;
}
.stat-tooltip {
    position: absolute !important;
    bottom: calc(100% + 15px) !important;
    top: auto !important;
    left: 50% !important;
    transform: translateX(-50%) scale(0.95) !important;
    width: 360px;
    max-width: 90vw;
    background: #1A1A1A !important;
    background-color: #1A1A1A !important;
    border: 1px solid #C9A227 !important;
    border-radius: 4px;
    padding: 1.5rem;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10000 !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 30px rgba(201, 162, 39, 0.1);
    pointer-events: none;
}
.stat-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: #C9A227;
}
.stat-hover-trigger:hover .stat-tooltip {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) scale(1) !important;
    pointer-events: auto;
}
.stat-tooltip-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #C9A227;
    margin-bottom: 0.8rem;
}
.stat-tooltip-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}
.stat-tooltip-label {
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 0.82rem;
}
.stat-tooltip-value {
    color: #AAAAAA !important;
    font-size: 0.82rem;
}
.stat-tooltip-divider {
    height: 1px;
    background: rgba(201, 162, 39, 0.2);
    margin: 0.8rem 0;
}
.stat-tooltip-note {
    font-size: 0.75rem;
    color: #AAAAAA !important;
    line-height: 1.5;
    font-style: italic;
}
.stat-tooltip p {
    color: #AAAAAA !important;
}
.stat-tooltip strong {
    color: #FFFFFF !important;
}
.stat-tooltip td {
    color: #AAAAAA !important;
}
.stat-tooltip td:first-child {
    color: #FFFFFF !important;
}
.stat-tooltip a {
    color: #C9A227 !important;
}
/* Light mode — light tooltip background with dark text */
body.light-mode .stat-tooltip {
    background: #FFFFFF !important;
    background-color: #FFFFFF !important;
    border-color: #C9A227 !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15), 0 0 20px rgba(201, 162, 39, 0.1);
}
body.light-mode .stat-tooltip::after {
    border-top-color: #C9A227;
}
body.light-mode .stat-tooltip .stat-tooltip-title {
    color: #8B6F1A;
}
body.light-mode .stat-tooltip .stat-tooltip-label,
body.light-mode .stat-tooltip strong,
body.light-mode .stat-tooltip td:first-child {
    color: #1A1A1A !important;
}
body.light-mode .stat-tooltip .stat-tooltip-value,
body.light-mode .stat-tooltip p,
body.light-mode .stat-tooltip .stat-tooltip-note,
body.light-mode .stat-tooltip td {
    color: #555555 !important;
}
body.light-mode .stat-tooltip a {
    color: #8B6F1A !important;
}
body.light-mode .stat-tooltip .stat-tooltip-divider {
    background: rgba(201, 162, 39, 0.3);
}
body.light-mode .stat-tooltip .stat-tooltip-row {
    border-bottom-color: rgba(201, 162, 39, 0.15);
}

/* Tooltip mobile responsive */
@media (max-width: 768px) {
    .stat-tooltip {
        width: 300px !important;
        padding: 1rem;
        font-size: 0.8rem;
    }
    .stat-tooltip-label {
        min-width: 100px;
    }
}

/* Image dividers: lighter overlay */
body.light-mode .section-image-divider::after {
    background: linear-gradient(180deg, #FAFAF8 0%, transparent 20%, transparent 80%, #FAFAF8 100%);
}

/* Image overlays for cards with backgrounds — dark overlay like dark mode */
body.light-mode .card-with-bg::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.55));
}

body.light-mode .card-with-bg:hover::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35));
}

body.light-mode .card-with-bg .card-icon,
body.light-mode .card-with-bg .card-title,
body.light-mode .card-with-bg .card-subtitle {
    color: #FFFFFF;
}

body.light-mode .card-with-bg .card-subtitle {
    color: #FFD700;
}

body.light-mode .card-with-bg .card-text {
    color: rgba(255, 255, 255, 0.8);
}

body.light-mode .card-with-bg.card-schach::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
}

body.light-mode .card-with-bg.card-schach:hover::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.0));
}

/* Testimonial quote marks */
body.light-mode .testimonial-text {
    color: #2A2A2A;
}

/* Footer */
body.light-mode footer {
    background: #2A2A2A;
    color: #FFFFFF;
}

body.light-mode .footer-section h3 {
    color: var(--gold);
}

body.light-mode .footer-links a {
    color: #cccccc;
}

body.light-mode .footer-links a:hover {
    color: var(--gold);
}

body.light-mode .footer-bottom {
    color: #999999;
    border-top-color: rgba(201, 162, 39, 0.3);
}

/* Newsletter section */
body.light-mode .newsletter-section {
    background: #F0EDE6 !important;
}

body.light-mode .newsletter-section h2 {
    color: #2A2A2A !important;
}

body.light-mode .newsletter-section p {
    color: #5A5A5A !important;
}

body.light-mode .newsletter-section .fluentform .ff-el-input--content input[type="email"] {
    background: #FFFFFF !important;
    border-color: rgba(201, 162, 39, 0.3) !important;
    color: #2A2A2A !important;
}

body.light-mode .newsletter-section .fluentform .ff-el-input--content input[type="email"]::placeholder {
    color: #999999 !important;
}

/* Login page */
body.light-mode .login-page {
    background: linear-gradient(135deg, #FAFAF8 0%, #F0EDE6 100%);
}

body.light-mode .login-page::before,
body.light-mode .login-page::after {
    border-color: rgba(201, 162, 39, 0.08);
}

body.light-mode .login-card {
    background: #FFFFFF;
    border-color: rgba(201, 162, 39, 0.2);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

body.light-mode .form-group input {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.12);
    color: #2A2A2A;
}

body.light-mode .form-group input::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

body.light-mode .form-group input:focus {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.04);
}

/* Legal pages */
body.light-mode .legal-text {
    color: #444444;
}

/* Flip card borders */
body.light-mode .flip-card-front,
body.light-mode .flip-card-back {
    border-color: rgba(201, 162, 39, 0.25);
}

body.light-mode .flip-card-front {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

/* Backcover overlay */
body.light-mode .backcover-overlay {
    background: rgba(250, 250, 248, 0.95);
}

/* Password modal */
body.light-mode .pw-modal {
    background: #FFFFFF;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

body.light-mode .pw-modal input {
    background: #F5F5F5;
    color: #2A2A2A;
    border-color: rgba(201, 162, 39, 0.3);
}

/* Navy section in light mode → warm gold tint */
body.light-mode .navy-section {
    background-color: #F5F0E4 !important;
}

/* Download items */
body.light-mode .download-item {
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

/* Image inline feature */
body.light-mode .image-inline-feature .image-caption {
    background: linear-gradient(to top, rgba(250, 250, 248, 0.95), transparent);
}

/* Smooth transition for all elements */
body,
body *,
header,
footer,
section,
.card,
.pillar,
.testimonial,
.pricing-card,
.module-card,
.download-section,
.accordion-item,
.hero {
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Don't transition animations or transforms */
.flip-card-inner,
.cta-button,
.cta-primary,
.cta-secondary,
.btn-primary,
.btn-secondary {
    transition: all 0.3s ease;
}

/* Deep Dive page specific light mode */
body.light-mode .dd-image-divider::after {
    background: linear-gradient(180deg, #FAFAF8 0%, rgba(250, 250, 248, 0.3) 30%, rgba(250, 250, 248, 0.3) 70%, #FAFAF8 100%);
}

/* WooCommerce light mode overrides */
body.light-mode.woocommerce-page,
body.light-mode.single-product,
body.light-mode.post-type-archive-product {
    background-color: #FAFAF8 !important;
    color: #2A2A2A !important;
}

body.light-mode .woocommerce div.product div.summary {
    color: #2A2A2A !important;
}

body.light-mode .woocommerce div.product .product_title {
    color: #2A2A2A !important;
}

body.light-mode .woocommerce table.shop_table {
    background-color: #FFFFFF !important;
    color: #2A2A2A !important;
}

body.light-mode .woocommerce table.shop_table td {
    color: #2A2A2A !important;
}

body.light-mode .woocommerce-checkout .form-row input,
body.light-mode .woocommerce-checkout .form-row select,
body.light-mode .woocommerce-checkout .form-row textarea {
    background-color: #FFFFFF !important;
    color: #2A2A2A !important;
    border-color: rgba(201, 162, 39, 0.3) !important;
}

body.light-mode .woocommerce .quantity .qty {
    background-color: #FFFFFF !important;
    color: #2A2A2A !important;
}

body.light-mode .woocommerce div.product .woocommerce-tabs ul.tabs li {
    background-color: #FFFFFF !important;
}

body.light-mode .woocommerce div.product .woocommerce-tabs .panel {
    background-color: #F0EDE6 !important;
    color: #5A5A5A !important;
}

body.light-mode .woocommerce .woocommerce-info,
body.light-mode .woocommerce .woocommerce-message {
    background-color: #FFFFFF !important;
    color: #2A2A2A !important;
}

/* Block checkout light mode */
body.light-mode .wc-block-components-text-input input,
body.light-mode .wc-block-components-text-input textarea,
body.light-mode .wc-blocks-components-select__select,
body.light-mode .wc-blocks-components-select__container,
body.light-mode .wc-block-components-address-form input,
body.light-mode .wc-block-components-address-form select,
body.light-mode .wc-block-checkout input,
body.light-mode .wc-block-checkout select {
    background-color: #FFFFFF !important;
    color: #2A2A2A !important;
}

body.light-mode .wc-block-components-order-summary,
body.light-mode .wc-block-components-order-summary__content {
    background-color: #FFFFFF !important;
    background: #FFFFFF !important;
}

body.light-mode .wc-block-components-totals-coupon__input input,
body.light-mode .wc-block-components-totals-coupon input,
body.light-mode .wc-block-components-totals-coupon__form .wc-block-components-text-input input {
    background: #FFFFFF !important;
    color: #2A2A2A !important;
}

/* Error page */
body.light-mode .error-404 p {
    color: #5A5A5A;
}

/* Fluent Forms light mode — gold button statt blau */
body.light-mode .fluentform .ff-btn-submit,
body.light-mode .fluentform button[type="submit"],
body.light-mode .btn-submit,
body.light-mode form button[type="submit"] {
    background: var(--gold) !important;
    color: #0A0A0A !important;
}

body.light-mode .fluentform .ff-btn-submit:hover,
body.light-mode .btn-submit:hover,
body.light-mode form button[type="submit"]:hover {
    background: #FFD700 !important;
}

/* Form inputs in light mode */
body.light-mode .fluentform input,
body.light-mode .fluentform textarea,
body.light-mode .fluentform select {
    background: #FFFFFF !important;
    color: #2A2A2A !important;
    border-color: rgba(201, 162, 39, 0.3) !important;
}

body.light-mode .fluentform label {
    color: #2A2A2A !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    /* MOBILE: Hide big diamond animation, show nav-logo instead */
    .hero-logo-animated {
        display: none !important;
    }

    .nav-logo {
        opacity: 1 !important;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .warning-blocks,
    .transformation-cards,
    .pillars,
    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }

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

    .about-grid .about-image {
        max-width: 350px;
        margin: 0 auto;
    }

    /* On mobile, hero doesn't need huge padding since logo animation is skipped */
    .hero {
        min-height: auto;
        padding-top: 80px !important;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .data-box-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .book-layout {
        grid-template-columns: 1fr;
    }

    .book-cover {
        justify-content: center;
    }

    .flip-card {
        max-width: 350px;
    }

    .trilogy-card {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .trilogy-card .trilogy-card-cover {
        justify-content: center;
    }

    .trilogy-card .flip-card {
        max-width: 350px;
    }

    .book-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .modules-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .selection-box,
    .guarantee-box,
    .first-call {
        padding: 2rem;
    }

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

    .section-image-divider {
        height: 180px;
        background-attachment: scroll;
    }

    .image-side-by-side {
        grid-template-columns: 1fr;
    }

    .login-page {
        padding: 3rem 1.2rem;
    }

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

    .login-heading {
        font-size: 1.8rem;
    }

    .login-logo svg {
        width: 90px;
    }

    .legal-page {
        padding: 40px 1.2rem 40px;
    }

    .legal-page-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 1rem;
    }

    .cta-button {
        display: none;
    }

    /* Mobile header: weniger Padding, alles passt */
    header {
        padding: 0.5rem 0.8rem;
    }

    nav {
        gap: 0;
    }

    /* Logo links, feste Größe */
    .nav-logo {
        height: 34px;
        flex-shrink: 0;
    }

    /* Warenkorb, Toggle, Hamburger rechts zusammen */
    .nav-cart {
        margin-left: auto;
        margin-right: 0.6rem;
    }

    .theme-toggle {
        width: 28px;
        height: 28px;
        margin-left: 0;
        margin-right: 0.6rem;
    }

    .hamburger {
        flex-shrink: 0;
    }

    /* Top-Bar etwas kleiner auf Mobile */
    .top-bar {
        font-size: 0.65rem;
        padding: 0.3rem 0.5rem;
    }
}
