/* ========================================
   AGENA HOMES - Tyrkysová + Lucide ikony
   ======================================== */

/* FONTY */
@font-face {
    font-family: 'New Science';
    src: url('fonts/fonnts.com-New_Science_Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'New Science';
    src: url('fonts/fonnts.com-New_Science_SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'New Science';
    src: url('fonts/fonnts.com-New_Science_Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* PROMĚNNÉ - TYRKYS + NAVY */
:root {
    --navy-blue: #1B3A5F;
    --navy-dark: #142942;
    --navy-light: #2A4A7F;
    --cyan: #06B6D4;
    --cyan-dark: #0891B2;
    --cyan-light: #22D3EE;
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --light-gray: #E5E7EB;
    --gray: #6B7280;
    --charcoal: #1F2937;
    --success: #10B981;
    --danger: #EF4444;
    --gold: #FFD700;
    --orange: #FFA500;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'New Science', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

/* INLINE IKONY (Lucide) */
.inline-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
    stroke-width: 2;
}

.title-icon {
    width: 32px;
    height: 32px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.75rem;
    stroke: var(--cyan);
}

.subtitle-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
    stroke: var(--cyan);
}

/* HEADER */
.header {
    background: #FBFBFB;
    padding: 1.25rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    text-align: center;
}

.logo img {
    height: 90px;
    width: auto;
    display: inline-block;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo img:hover {
    opacity: 0.8;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-blue) 50%, var(--navy-light) 100%);
    color: var(--white);
    padding: 5rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3.5rem;
    font-weight: 400;
}

.hero-subtitle strong {
    color: var(--gold);
    font-weight: 700;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 3.5rem auto;
    max-width: 700px;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.75rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.cta-button {
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    color: var(--navy-dark);
    font-family: 'New Science', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
    letter-spacing: 0.02em;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--orange) 0%, #FF8C00 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 165, 0, 0.5);
}

.cta-button .arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
    transform: translateX(6px);
}

.trust-note {
    margin-top: 2.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

/* QUIZ SECTION */
.quiz-section {
    padding: 4rem 0;
    background: var(--off-white);
}

.quiz-progress {
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* PROGRESS KOLEČKA - TYRKYSOVÁ */
.progress-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
}

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

.dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-gray);
    border: 3px solid var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.dot-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray);
    transition: all 0.3s ease;
}

/* Zodpovězené kolečko - TYRKYS */
.dot.answered {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
    border-color: var(--cyan);
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.4);
}

.dot.answered .dot-number {
    color: var(--white);
}

/* Aktuální kolečko - TYRKYS */
.dot.current {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-color: var(--cyan);
    border-width: 4px;
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.2);
}

.dot.current .dot-number {
    color: var(--cyan);
    font-size: 1.1rem;
}

/* Čára mezi kolečky - TYRKYS */
.dot-line {
    width: 30px;
    height: 3px;
    background: var(--light-gray);
    transition: all 0.3s ease;
}

.dot.answered + .dot-line {
    background: linear-gradient(90deg, var(--cyan) 0%, var(--cyan-dark) 100%);
}

.quiz-container {
    max-width: 750px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 3.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.question {
    animation: fadeInUp 0.6s ease;
}

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

/* OTÁZKY - TYRKYSOVÁ */
.question-title {
    font-size: 1.75rem;
    color: var(--cyan);
    margin-bottom: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    display: flex;
    align-items: center;
}

.question-subtitle {
    font-size: 1.1rem;
    color: var(--cyan-dark);
    margin-bottom: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(6, 182, 212, 0.05) 100%);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--cyan);
    display: flex;
    align-items: center;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* OPTIONS - TYRKYS HOVER */
.option {
    background: var(--off-white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    color: var(--charcoal);
    font-weight: 500;
    position: relative;
}

.option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--cyan);
    border-radius: 12px 0 0 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.option:hover {
    border-color: var(--cyan);
    background: var(--white);
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.15);
}

.option:hover::before {
    opacity: 1;
}

.option.selected {
    border-color: var(--cyan);
    background: rgba(6, 182, 212, 0.08);
    font-weight: 600;
}

.option.selected::before {
    opacity: 1;
}

/* Price Selection */
.price-selection .question-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.price-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.price-option {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 2rem 1.5rem;
    background: var(--off-white);
    border: 3px solid var(--light-gray);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.price-option:hover {
    border-color: var(--cyan);
    background: var(--white);
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.2);
}

.price-option.selected {
    border-color: var(--cyan);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(6, 182, 212, 0.08) 100%);
    font-weight: 700;
}

/* Back Button */
.back-button {
    background: transparent;
    border: 2px solid var(--light-gray);
    color: var(--gray);
    font-family: 'New Science', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-button:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateX(-4px);
}

/* RESULTS SECTION */
.results-section {
    padding: 4rem 0;
    background: var(--off-white);
}

.results-box {
    max-width: 850px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.results-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(27, 58, 95, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.results-icon {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    display: inline-block;
}

.results-icon svg {
    width: 80px;
    height: 80px;
    stroke: var(--danger);
    stroke-width: 2;
}

.results-title {
    font-size: 2.25rem;
    color: var(--navy-blue);
    margin-bottom: 3.5rem;
    font-weight: 700;
}

.loss-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    text-align: left;
}

/* Loss Item */
.loss-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--navy-blue);
    animation: slideInLeft 0.5s ease forwards;
    opacity: 0;
}

.loss-item:nth-child(1) { animation-delay: 0.1s; }
.loss-item:nth-child(2) { animation-delay: 0.2s; }
.loss-item:nth-child(3) { animation-delay: 0.3s; }
.loss-item:nth-child(4) { animation-delay: 0.4s; }
.loss-item:nth-child(5) { animation-delay: 0.5s; }
.loss-item:nth-child(6) { animation-delay: 0.6s; }
.loss-item:nth-child(7) { animation-delay: 0.7s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.loss-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

/* Icon Wrapper - Navy Theme */
.icon-wrapper {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(27, 58, 95, 0.1) 0%, rgba(27, 58, 95, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.icon-wrapper svg {
    width: 30px;
    height: 30px;
    stroke: var(--navy-blue);
    stroke-width: 2;
    fill: none;
}

.loss-content {
    flex: 1;
}

.loss-label {
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.loss-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--danger);
    white-space: nowrap;
}

/* Accordion Trigger - Navy */
.accordion-trigger {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-light) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    min-height: 48px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(27, 58, 95, 0.25);
    font-family: 'New Science', sans-serif;
}

.accordion-trigger:hover {
    background: linear-gradient(135deg, var(--navy-light) 0%, #3A5A9F 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 58, 95, 0.35);
}

.accordion-trigger:active {
    transform: scale(0.98);
}

.accordion-trigger .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    font-weight: 400;
}

/* Accordion Content */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-top: 1rem;
}

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

.accordion-inner {
    max-height: 300px;
    overflow-y: auto;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(27, 58, 95, 0.04) 0%, rgba(27, 58, 95, 0.02) 100%);
    border: 2px solid var(--navy-blue);
    border-radius: 10px;
    margin-bottom: 0.75rem;
}

.accordion-inner h4 {
    color: var(--navy-blue);
    font-size: 1.15rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.accordion-inner p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--charcoal);
}

.accordion-inner strong {
    color: var(--navy-blue);
    font-weight: 700;
}

.accordion-inner ul {
    margin: 0.75rem 0 1rem 1.5rem;
}

.accordion-inner li {
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.accordion-inner .highlight {
    background: linear-gradient(135deg, rgba(27, 58, 95, 0.12) 0%, rgba(27, 58, 95, 0.06) 100%);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--navy-blue);
    font-weight: 600;
    color: var(--navy-blue);
    margin: 1rem 0;
}

/* Scrollbar */
.accordion-inner::-webkit-scrollbar {
    width: 6px;
}

.accordion-inner::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 10px;
}

.accordion-inner::-webkit-scrollbar-thumb {
    background: var(--navy-blue);
    border-radius: 10px;
}

/* Accordion Close Button - ZLATÉ */
.accordion-close {
    position: sticky;
    bottom: 0;
    width: 100%;
    min-height: 48px;
    background: var(--gold);
    color: var(--navy-dark);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-family: 'New Science', sans-serif;
}

.accordion-close:hover {
    background: var(--orange);
}

.accordion-close:active {
    transform: scale(0.98);
}

/* Total Loss */
.total-loss {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 3px solid var(--danger);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3.5rem;
}

.total-label {
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.total-label .inline-icon {
    stroke: var(--danger);
}

.total-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--danger);
    white-space: nowrap;
}

/* Comparison */
.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 3.5rem;
    padding: 2.5rem;
    background: var(--off-white);
    border-radius: 16px;
}

.comparison-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.comparison-label {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.comparison-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy-blue);
    line-height: 1;
    white-space: nowrap;
}

.vat {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray);
}

.savings-amount {
    color: var(--success);
    font-size: 3rem !important;
    white-space: nowrap;
}

/* Červená barva pro Vaše pravděpodobná ztráta */
.comparison-item.your-loss .comparison-amount {
    color: var(--danger);
}

/* Vycentrovat "Získáte navíc" */
.comparison.savings-row {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
}

/* CTA Box - NAVY ZŮSTÁVÁ */
.cta-box {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-blue) 100%);
    color: var(--white);
    border-radius: 20px;
    padding: 3.5rem;
    margin-top: 3.5rem;
}

.cta-box h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

/* CTA Buttons Container */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* Button Icon (Lucide) */
.button-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* CTA Phone Button */
.cta-phone-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    color: var(--navy-dark);
    font-family: 'New Science', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 1.1rem 1.5rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.cta-phone-button:hover {
    background: linear-gradient(135deg, var(--orange) 0%, #FF8C00 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 165, 0, 0.5);
}

/* CTA Email Button */
.cta-email-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-family: 'New Science', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-email-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* CTA VCard Button */
.cta-vcard-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'New Science', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.9rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-vcard-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Email Form Wrapper */
.email-form-wrapper {
    max-width: 500px;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.email-form-wrapper.hidden {
    display: none;
}

.email-results-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.75rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.email-results-form h4 {
    color: var(--navy-dark);
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.email-results-form h4 .inline-icon {
    stroke: var(--navy-blue);
}

.email-results-form input {
    width: 100%;
    padding: 0.9rem 1.25rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'New Science', sans-serif;
    background: var(--white);
    color: var(--charcoal);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.email-results-form input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

.email-submit-button {
    width: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    color: var(--navy-dark);
    font-family: 'New Science', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 0.95rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.65rem;
}

.email-submit-button:hover {
    background: linear-gradient(135deg, var(--orange) 0%, #FF8C00 100%);
    transform: translateY(-1px);
}

.email-cancel-button {
    width: 100%;
    background: transparent;
    color: var(--gray);
    font-family: 'New Science', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.7rem;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.email-cancel-button:hover {
    background: var(--off-white);
    border-color: var(--gray);
}

/* Services Accordion Trigger */
.services-accordion-trigger {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 2rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-light) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    min-height: 48px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(27, 58, 95, 0.25);
    font-family: 'New Science', sans-serif;
}

.services-accordion-trigger span:first-child {
    display: flex;
    align-items: center;
}

.services-accordion-trigger .inline-icon {
    stroke: var(--white);
}

.services-accordion-trigger:hover {
    background: linear-gradient(135deg, var(--navy-light) 0%, #3A5A9F 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 58, 95, 0.35);
}

.services-accordion-trigger .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* Services Accordion Content */
.services-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-bottom: 2rem;
}

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

.services-accordion-inner {
    max-height: 400px;
    overflow-y: auto;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    margin-bottom: 0.75rem;
}

.service-section {
    margin-bottom: 1.75rem;
}

.service-section:last-child {
    margin-bottom: 0;
}

.service-section h4 {
    color: var(--navy-blue);
    font-size: 1.05rem;
    margin-bottom: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-section h4 .inline-icon {
    stroke: var(--success);
}

.service-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-section li {
    padding: 0.4rem 0 0.4rem 1.25rem;
    position: relative;
    color: var(--charcoal);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Navy tečky místo zlatých */
.service-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--navy-blue);
    font-weight: 400;
    font-size: 1rem;
}

/* Služby jako centrovaný text (p tagy) - musí přebít .cta-box p */
.services-accordion-inner .service-section p {
    text-align: center;
    color: var(--charcoal);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    padding: 0.35rem 0;
}

/* Services Accordion Close */
.services-accordion-close {
    position: sticky;
    bottom: 0;
    width: 100%;
    min-height: 48px;
    background: var(--gold);
    color: var(--navy-dark);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-family: 'New Science', sans-serif;
}

.services-accordion-close:hover {
    background: var(--orange);
}

/* Services Accordion Scrollbar */
.services-accordion-inner::-webkit-scrollbar {
    width: 6px;
}

.services-accordion-inner::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.services-accordion-inner::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

/* Trust Signals */
.trust-signals {
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-signals .inline-icon {
    stroke: var(--gold);
}

/* FOOTER */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.85);
    padding: 3rem 0 2rem;
}

.footer-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-info p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-info strong {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-info a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: var(--orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* UTILITIES */
.hidden {
    display: none !important;
}

.success-message {
    background: var(--success);
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    animation: slideDown 0.5s ease;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

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

/* ========================================
   MOBILNÍ RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    /* HEADER & LOGO */
    .logo img {
        height: 60px;
    }
    .header {
        padding: 0.75rem 0;
    }
    .container {
        padding: 0 1rem;
    }

    /* HERO */
    .hero {
        padding: 3rem 0 4rem;
    }
    .hero-title {
        font-size: 1.85rem;
        margin-bottom: 1.5rem;
    }
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
        margin: 2rem auto;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-label {
        font-size: 0.9rem;
    }
    .cta-button {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
    .trust-note {
        font-size: 0.9rem;
        margin-top: 1.5rem;
    }

    /* QUIZ SECTION */
    .quiz-section {
        padding: 2rem 0;
    }
    .quiz-progress {
        margin: 0 auto 2rem;
    }
    .progress-dots {
        gap: 0;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0.5rem 0;
        margin-bottom: 1.5rem;
    }
    .dot {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }
    .dot.current {
        width: 38px;
        height: 38px;
    }
    .dot-number {
        font-size: 0.85rem;
    }
    .dot.current .dot-number {
        font-size: 0.95rem;
    }
    .dot-line {
        width: 20px;
        height: 2px;
    }

    /* QUIZ CONTAINER */
    .quiz-container {
        padding: 2rem 1.25rem;
        border-radius: 16px;
    }
    .question-title {
        font-size: 1.35rem;
    }
    .title-icon {
        width: 24px;
        height: 24px;
    }
    .question-subtitle {
        font-size: 0.95rem;
        padding: 0.85rem 1rem;
        margin-bottom: 1.75rem;
    }
    .subtitle-icon {
        width: 14px;
        height: 14px;
    }
    .options {
        gap: 1rem;
    }
    .option {
        padding: 1.25rem 1rem;
        font-size: 0.95rem;
    }
    .price-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .price-option {
        padding: 1.5rem 1rem;
        font-size: 1rem;
    }

    /* RESULTS SECTION */
    .results-section {
        padding: 2rem 0;
    }
    .results-box {
        padding: 2rem 1.25rem;
        border-radius: 16px;
    }
    .results-icon svg {
        width: 48px;
        height: 48px;
    }
    .results-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    .loss-items {
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
    .loss-item {
        padding: 1.25rem;
    }
    .loss-header {
        gap: 1rem;
    }
    .icon-wrapper {
        width: 40px;
        height: 40px;
    }
    .icon-wrapper svg {
        width: 22px;
        height: 22px;
    }
    .loss-label {
        font-size: 0.9rem;
    }
    .loss-amount {
        font-size: 1.25rem;
    }
    .accordion-trigger {
        padding: 0.85rem 1.15rem;
        font-size: 0.9rem;
    }
    .accordion-inner {
        padding: 1.25rem;
        max-height: 250px;
    }
    .total-loss {
        padding: 1.75rem 1.25rem;
        margin-bottom: 2rem;
    }
    .total-label {
        font-size: 1.05rem;
        margin-bottom: 1rem;
    }
    .total-label .inline-icon {
        width: 16px;
        height: 16px;
    }
    .total-amount {
        font-size: clamp(1.85rem, 7vw, 2.5rem);
    }
    .comparison {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 1.75rem 1.25rem;
        margin-bottom: 2rem;
    }
    .comparison-label {
        font-size: 0.9rem;
    }
    .comparison-amount {
        font-size: clamp(1.25rem, 5vw, 1.5rem);
    }
    .savings-amount {
        font-size: clamp(1.85rem, 7vw, 2.5rem) !important;
    }

    /* CTA BOX */
    .cta-box {
        padding: 2rem 1.25rem;
        border-radius: 16px;
        margin-top: 2rem;
    }
    .cta-box h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .cta-box p {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
    }
    .cta-buttons {
        gap: 0.85rem;
        margin-bottom: 1.5rem;
    }
    .cta-phone-button {
        font-size: 1.05rem;
        padding: 1rem 1.25rem;
    }
    .cta-email-button,
    .cta-vcard-button {
        font-size: 0.9rem;
        padding: 0.85rem 1.15rem;
    }
    .button-icon {
        width: 16px;
        height: 16px;
    }

    /* EMAIL FORM */
    .email-results-form {
        padding: 1.5rem;
    }
    .email-results-form h4 {
        font-size: 1.05rem;
        margin-bottom: 1rem;
    }
    .email-results-form h4 .inline-icon {
        width: 16px;
        height: 16px;
    }
    .email-results-form input {
        padding: 0.85rem 1.15rem;
        font-size: 0.95rem;
    }
    .email-submit-button {
        font-size: 1rem;
        padding: 0.9rem;
    }

    /* SERVICES ACCORDION */
    .services-accordion-trigger {
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    .services-accordion-trigger .inline-icon {
        width: 16px;
        height: 16px;
    }
    .services-accordion-inner {
        padding: 1.5rem;
        max-height: 300px;
    }
    .service-section {
        margin-bottom: 1.5rem;
    }
    .service-section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        justify-content: center;
    }
    .service-section h4 .inline-icon {
        width: 16px;
        height: 16px;
    }
    .service-section ul {
        text-align: center;
    }
    .service-section li {
        font-size: 0.85rem;
        padding: 0.35rem 0;
        text-align: center;
    }
    .service-section li::before {
        content: none;
    }
    .services-accordion-inner .service-section p {
        font-size: 0.85rem;
        text-align: center;
    }
    .trust-signals {
        font-size: 0.85rem;
    }
    .trust-signals .inline-icon {
        width: 16px;
        height: 16px;
    }

    /* OBECNÉ IKONY */
    .inline-icon {
        width: 16px;
        height: 16px;
    }

    /* FOOTER */
    .footer {
        padding: 2rem 0 1.5rem;
    }
    .footer-info p {
        font-size: 0.85rem;
    }
    .footer-info strong {
        font-size: 1rem;
    }
    .footer-bottom {
        font-size: 0.8rem;
        padding-top: 1.5rem;
    }
}