/* ===================================
   SOFISTIKOVANÝ DARK MODE DESIGN
   Hierarchie tmavých odstínů pro hloubku
   =================================== */

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

:root {
    /* Vrstvení černé - hierarchie tmavých odstínů */
    --bg-primary: #0B0B0B;        /* Základní pozadí */
    --bg-secondary: #141414;       /* Oddělení sekcí */
    --bg-elevated: #1E1E1E;        /* Karty a interaktivní prvky */

    /* Lomená bílá pro typografii */
    --text-primary: #E5E5E5;       /* Hlavní nadpisy */
    --text-secondary: #B3B3B3;     /* Texty odstavců */
    --text-tertiary: #8C8C8C;      /* Méně důležité texty */

    /* Akcenty */
    --color-gold: #CCA95B;
    --color-gold-dark: #B8974A;

    /* Spacing - velkorysé paddingu mezi sekcemi */
    --spacing-xs: 1rem;
    --spacing-sm: 2rem;
    --spacing-md: 3rem;
    --spacing-lg: 5rem;
    --spacing-xl: 8rem;
    --spacing-section: 100px;      /* Velkorysý padding mezi sekcemi */

    /* Font */
    --font-main: Georgia, 'Times New Roman', serif;

    /* Border radius - modernizace */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.8;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================================
   TYPOGRAFIE - Lomená bílá pro šetření zraku
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: normal;
    line-height: 1.4;
    color: var(--text-primary);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

/* ===================================
   ANNOUNCE BAR
   =================================== */

.announce-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(204,169,91,0.32) 0%, rgba(204,169,91,0.18) 100%);
    border-bottom: 1px solid rgba(204,169,91,0.55);
    box-shadow: 0 2px 20px rgba(204,169,91,0.22);
}

.announce-bar a {
    color: #F0D98A;
    text-decoration: none;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.65em;
}

.announce-bar a:hover {
    opacity: 0.8;
}

/* Pulsing dot before text */
.announce-bar-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #F0D98A;
    flex-shrink: 0;
    animation: bar-pulse 2s ease-in-out infinite;
}

@keyframes bar-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(0.75); }
}

.announce-bar-arrow {
    font-size: 1rem;
    transition: transform 0.2s ease;
    opacity: 0.7;
}

.announce-bar a:hover .announce-bar-arrow {
    transform: translateX(4px);
    opacity: 1;
}

/* Nav + hero offset when bar is present */
.has-announce-bar .main-nav {
    top: 44px;
}

/* Nav book CTA item */
.nav-book-cta {
    color: var(--color-gold) !important;
    border: 1px solid rgba(204,169,91,0.45) !important;
    border-radius: 4px;
    padding: 0.22rem 0.85rem !important;
    background: rgba(204,169,91,0.07);
    transition: background 0.2s ease, border-color 0.2s ease !important;
    letter-spacing: 0.03em;
}

.nav-book-cta::after {
    display: none !important;
}

.nav-book-cta:hover {
    background: rgba(204,169,91,0.16) !important;
    border-color: rgba(204,169,91,0.7) !important;
    opacity: 1 !important;
}

@media (max-width: 768px) {
    .announce-bar a {
        font-size: 0.72rem;
        letter-spacing: 0.06em;
        padding: 0 1rem;
        text-align: center;
    }
}

/* ===================================
   NAVIGACE - Modernizovaná s průhledností
   =================================== */

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(11, 11, 11, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(204, 169, 91, 0.1);
}

.main-nav.scrolled {
    padding: 1rem 0;
    background-color: rgba(11, 11, 11, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    color: var(--color-gold);
    font-style: italic;
    transition: color 0.3s ease;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    color: var(--text-primary);
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-dark));
    transition: width 0.3s ease;
}

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

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

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--color-gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   TLAČÍTKA - Modernizované s jemnějším zakulacením
   =================================== */

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--bg-primary);
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(204, 169, 91, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(204, 169, 91, 0.4);
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:active {
    transform: translateY(0);
}

/* Menší tlačítko pro pricing karty */
.cta-button-pricing {
    font-size: 1rem;
    padding: 0.9rem 2rem;
}

/* ===================================
   HERO SEKCE - Základní pozadí #0B0B0B
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--spacing-section) + 80px) 0 var(--spacing-section) 0;
    position: relative;
    background-color: var(--bg-primary);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(204, 169, 91, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.light-element {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(204, 169, 91, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    filter: blur(40px);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

/* ===================================
   PŘÍBĚH SEKCE - Oddělení pomocí #141414
   =================================== */

.story {
    padding: var(--spacing-section) 0;
    background-color: var(--bg-secondary);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: var(--spacing-md);
}

.story-text p {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.author-box {
    background-color: var(--bg-elevated);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(204, 169, 91, 0.15);
    transition: all 0.3s ease;
}

.author-box:hover {
    border-color: rgba(204, 169, 91, 0.3);
    transform: translateY(-2px);
}

.author-photo img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 3px solid var(--color-gold);
    box-shadow: 0 8px 25px rgba(204, 169, 91, 0.3);
    transition: all 0.3s ease;
}

.author-photo img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(204, 169, 91, 0.5);
}

.author-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.highlight-letter {
    color: var(--color-gold);
    font-weight: bold;
}

.author-title {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.author-tagline {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--color-gold);
    opacity: 0.8;
}

/* ===================================
   TRANSFORMAČNÍ PROCES - Modernizované karty s hover efektem
   Základní pozadí #0B0B0B
   =================================== */

.transformation {
    padding: var(--spacing-section) 0;
    background-color: var(--bg-primary);
}

.transformation-diagram {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    margin: var(--spacing-md) 0;
    align-items: stretch;
}

.transform-column h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--color-gold);
}

.transform-list {
    list-style: none;
    padding: 2.5rem;
    background-color: var(--bg-elevated);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(204, 169, 91, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.transform-list:hover {
    background-color: #222222;
    border-color: rgba(204, 169, 91, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(204, 169, 91, 0.15);
}

.transform-list li {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(204, 169, 91, 0.08);
    font-size: 1.05rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.transform-list:hover li {
    color: var(--text-primary);
}

.transform-list li:last-child {
    border-bottom: none;
}

.transform-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-symbol {
    font-size: 4rem;
    color: var(--color-gold);
    animation: slideRight 2s ease-in-out infinite;
}

@keyframes slideRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

.transformation-text {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 900px;
    margin: var(--spacing-xl) auto 0;
    padding-top: 2rem;
}

/* ===================================
   PRINCIPY - Oddělení pomocí #141414
   =================================== */

.principles {
    padding: var(--spacing-section) 0;
    background-color: var(--bg-secondary);
}

.principles-intro {
    text-align: center;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: var(--spacing-md);
}

.principle-card {
    background-color: var(--bg-elevated);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(204, 169, 91, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.principle-card:hover {
    background-color: #222222;
    transform: translateY(-5px);
    border-color: rgba(204, 169, 91, 0.3);
    box-shadow: 0 10px 40px rgba(204, 169, 91, 0.15);
}

.principle-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pulse-center {
    width: 40px;
    height: 40px;
    background: var(--color-gold);
    border-radius: 50%;
    margin: 0 auto;
    animation: breathe 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(204, 169, 91, 0.5);
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.principle-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

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

.principle-card:hover p {
    color: var(--text-primary);
}

/* ===================================
   LEADERSHIP - Základní pozadí #0B0B0B
   =================================== */

.leadership {
    padding: var(--spacing-section) 0;
    background-color: var(--bg-primary);
}

.leadership-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
}

.leadership-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: var(--spacing-md) 0;
}

.leadership-item {
    background-color: var(--bg-elevated);
    padding: 2rem;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-gold);
    transition: all 0.3s ease;
}

.leadership-item:hover {
    background-color: #222222;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(204, 169, 91, 0.1);
}

.leadership-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.leadership-item:hover p {
    color: var(--text-primary);
}

/* ===================================
   DIALOGOVÉ BOXY
   =================================== */

.dialogue-box {
    background-color: var(--bg-elevated);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(204, 169, 91, 0.1);
    margin-top: var(--spacing-md);
    transition: all 0.3s ease;
}

.dialogue-box:hover {
    border-color: rgba(204, 169, 91, 0.2);
}

.dialogue-user {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.dialogue-lumen {
    color: var(--text-secondary);
    font-size: 1.05rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--color-gold);
}

/* ===================================
   UKÁZKY - Oddělení pomocí #141414
   =================================== */

.examples {
    padding: var(--spacing-section) 0;
    background-color: var(--bg-secondary);
}

.examples-flow {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: var(--spacing-md);
}

.example-dialogue h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* ===================================
   LEAD MAGNET - Základní pozadí #0B0B0B
   =================================== */

.lead-magnet {
    padding: var(--spacing-section) 0;
    background-color: var(--bg-primary);
}

.magnet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.magnet-text h2 {
    text-align: left;
}

.magnet-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.magnet-form {
    background-color: var(--bg-elevated);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(204, 169, 91, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-family: var(--font-main);
}

.form-field label .required {
    color: var(--color-gold);
    font-weight: bold;
}

.magnet-form input[type="text"] {
    width: 100%;
    padding: 1rem;
    background-color: var(--bg-secondary);
    border: 1px solid rgba(204, 169, 91, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.magnet-form input[type="text"]:focus {
    outline: none;
    border-color: var(--color-gold);
    background-color: var(--bg-primary);
    box-shadow: 0 0 15px rgba(204, 169, 91, 0.2);
}

.magnet-form .cta-button {
    margin-top: 1rem;
    width: 100%;
}

/* ===================================
   REFERENCE - Oddělení pomocí #141414
   =================================== */

.testimonials {
    padding: var(--spacing-section) 0;
    background-color: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: var(--spacing-md) 0;
}

.testimonial-card {
    background-color: var(--bg-elevated);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(204, 169, 91, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    background-color: #222222;
    transform: translateY(-5px);
    border-color: rgba(204, 169, 91, 0.2);
    box-shadow: 0 10px 40px rgba(204, 169, 91, 0.15);
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-card:hover .testimonial-text {
    color: var(--text-primary);
}

.testimonial-author {
    color: var(--color-gold);
    font-size: 0.95rem;
    text-align: right;
}

.experiences-title {
    text-align: center;
    font-size: 2rem;
    color: var(--color-gold);
    margin: var(--spacing-lg) 0 var(--spacing-md);
    font-style: italic;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.experience-card {
    background-color: var(--bg-elevated);
    padding: 2rem;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-gold);
    transition: all 0.3s ease;
}

.experience-card:hover {
    background-color: #222222;
    transform: translateX(5px);
}

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

.experience-card:hover p {
    color: var(--text-primary);
}

/* ===================================
   PRICING - Základní pozadí #0B0B0B
   =================================== */

.pricing {
    padding: var(--spacing-section) 0;
    background-color: var(--bg-primary);
}

.pricing-intro {
    text-align: center;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: var(--spacing-md) 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background-color: var(--bg-elevated);
    padding: 2.4rem 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(204, 169, 91, 0.15);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pricing-card:hover {
    background-color: #222222;
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 0 20px 60px rgba(204, 169, 91, 0.2);
}

.pricing-card.featured {
    border: 2px solid var(--color-gold);
    background-color: #1A1A1A;
}

.pricing-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--bg-primary);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: bold;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--color-gold);
}

.pricing-period {
    font-size: 1.1rem;
    color: var(--text-tertiary);
    margin-bottom: 2rem;
    font-style: italic;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(204, 169, 91, 0.08);
    color: var(--text-secondary);
    font-size: 1rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓ ';
    color: var(--color-gold);
    font-weight: bold;
    margin-right: 0.5rem;
}

.pricing-price {
    font-size: 3rem;
    color: var(--color-gold);
    margin: 2rem 0;
    font-weight: bold;
}

.pricing-price span {
    font-size: 1.2rem;
    color: var(--text-tertiary);
    font-weight: normal;
}

/* Garance box s razítkem */
.guarantee-box {
    margin-top: var(--spacing-lg);
    padding: 3rem;
    background: linear-gradient(135deg, rgba(204, 169, 91, 0.08) 0%, rgba(204, 169, 91, 0.03) 100%);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 40px rgba(204, 169, 91, 0.2);
    transition: all 0.3s ease;
}

.guarantee-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(204, 169, 91, 0.3);
}

.guarantee-stamp {
    width: 150px;
    height: 150px;
}

.guarantee-stamp svg {
    width: 100%;
    height: 100%;
    animation: stampPulse 3s ease-in-out infinite;
}

@keyframes stampPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.05) rotate(5deg);
    }
}

.guarantee-text h3 {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-style: italic;
    text-align: left;
}

.guarantee-text p {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0;
    line-height: 1.8;
}

/* ===================================
   FAQ - Oddělení pomocí #141414
   =================================== */

.faq {
    padding: var(--spacing-section) 0;
    background-color: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: var(--spacing-md);
}

.faq-item {
    background-color: var(--bg-elevated);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(204, 169, 91, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: #222222;
    border-color: var(--color-gold);
    box-shadow: 0 5px 25px rgba(204, 169, 91, 0.15);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--color-gold);
    cursor: pointer;
    user-select: none;
}

.faq-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

.faq-item:hover p {
    color: var(--text-primary);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-gold);
    transition: transform 0.3s ease;
    font-weight: normal;
    line-height: 1;
}

/* ===================================
   ZÁVĚREČNÁ CTA - Základní pozadí #0B0B0B
   =================================== */

.final-cta {
    padding: var(--spacing-section) 0;
    background-color: var(--bg-primary);
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(204, 169, 91, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.final-cta p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* ===================================
   FOOTER - Oddělení jemným předělem
   =================================== */

.footer {
    padding: var(--spacing-md) 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid rgba(204, 169, 91, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.brand-sign {
    position: relative;
}

.brand-pm {
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.pm-letter {
    color: var(--color-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 0 2px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    width: 35px;
    height: 35px;
}

.pm-letter:hover {
    background: var(--color-gold);
    color: var(--bg-primary);
    transform: scale(1.1);
}

.brand-pm::after {
    content: 'Přítel • Průvodce • Mentor';
    position: absolute;
    bottom: -85px;
    left: 0;
    font-size: 0.8rem;
    color: var(--color-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    font-style: italic;
}

.brand-pm:hover::after {
    opacity: 1;
}

.footer-tagline {
    font-size: 1.2rem;
    color: var(--color-gold);
    font-style: italic;
}

.footer-links p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.footer-contact p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.footer-contact a {
    color: var(--color-gold);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-contact a:hover {
    opacity: 0.8;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--text-tertiary);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--color-gold);
}

.footer-copyright p {
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

/* ===================================
   RESPONZIVITA
   =================================== */

@media (max-width: 1024px) {
    :root {
        --spacing-section: 80px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-content {
        grid-template-columns: 1fr;
    }

    .transformation-diagram {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .arrow-symbol {
        transform: rotate(90deg);
        font-size: 3rem;
    }

    .transformation-text {
        margin-top: 4rem;
        padding-top: 3rem;
    }

    .magnet-content {
        grid-template-columns: 1fr;
    }

    .magnet-form {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-section: 60px;
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
        --spacing-md: 2rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--bg-primary);
        width: 100%;
        padding: 2rem;
        transition: left 0.3s ease;
        gap: 1.5rem;
        font-size: 1.2rem;
        border-top: 1px solid rgba(204, 169, 91, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        text-align: center;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .transformation-text {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .principles-grid,
    .testimonials-grid,
    .pricing-cards,
    .faq-grid,
    .experiences-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
        gap: 2rem;
    }

    .guarantee-stamp {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .guarantee-text h3 {
        text-align: center;
        font-size: 1.3rem;
    }

    .guarantee-text p {
        font-size: 1.1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-info {
        align-items: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .light-element {
        width: 250px;
        height: 250px;
    }

    .nav-logo-img {
        height: 32px;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .magnet-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    :root {
        --spacing-section: 40px;
    }

    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }

    .hero {
        padding: calc(var(--spacing-section) + 60px) 0 var(--spacing-section) 0;
    }

    .magnet-form {
        padding: 1.5rem;
    }

    .guarantee-box {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .guarantee-stamp {
        width: 100px;
        height: 100px;
    }

    .guarantee-text h3 {
        font-size: 1.2rem;
    }

    .guarantee-text p {
        font-size: 1rem;
    }
}

/* ===================================
   ANIMACE A EFEKTY
   =================================== */

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Scrollbar styling - Tmavý s zlatým thumbem */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 6px;
    border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-dark);
}

/* Selection styling */
::selection {
    background: var(--color-gold);
    color: var(--bg-primary);
}

::-moz-selection {
    background: var(--color-gold);
    color: var(--bg-primary);
}

/* Focus styling pro přístupnost */
*:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* ===================================
   VIDEO TESTIMONIAL
   =================================== */

.video-testimonial {
    max-width: 1000px;
    margin: 0 auto 3rem auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 900px) {
    .video-testimonial {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(204, 169, 91, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-wrapper .video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.video-wrapper .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.video-wrapper:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-wrapper .video-play-btn svg {
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.video-wrapper.video-link {
    display: block;
    cursor: pointer;
}

@media (max-width: 768px) {
    .video-testimonial {
        margin: 0 auto 2rem auto;
    }

    .video-wrapper {
        border-radius: var(--radius-md);
    }
}
