/* ========================================================= */
/* 1. RESET A PROMĚNNÉ */
/* ========================================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #1abc9c;
    --color-secondary: #f39c12;
    --color-text-dark: #2c3e50;
    --color-background-app: #f8fcfb;
    --color-header-bg: #ffffff;
    --color-footer-bg: #2c3e50;
    --color-footer-text: #ecf0f1;
    --color-border: #dfe3e7;
    --font-base: 'Segoe UI', 'Roboto', sans-serif;
    --font-size-base: 16px;
    --max-width: 1200px;
}

/* ========================================================= */
/* 2. ZÁKLADNÍ STYL STRÁNKY */
/* ========================================================= */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-base);
    font-size: var(--font-size-base);
    color: var(--color-text-dark);
    background-color: var(--color-background-app);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ========================================================= */
/* 3. HLAVIČKA A NAVIGACE */
/* ========================================================= */
.header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    animation: fadeInDown 0.5s ease-out;
}

nav.nav-bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 0 30px;
    width: 60%;
    margin: 0 auto;
    position: relative;
}

.nav-logo {
    height: 75px;
    width: auto;
    max-width: 200px;
    margin: 0 auto;
    padding: 5px 0px;
    object-fit: contain;
    display: block;
}

.nav-bar a {
    color: var(--color-text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 10px 14px;
    border-radius: 6px;
    transition: color 0.2s, background-color 0.2s;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.nav-bar a {
    position: relative;
    overflow: hidden;
}

.nav-bar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), #16a085);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-bar a:hover::after {
    width: 80%;
}

.nav-bar a:hover,
.nav-icon button:hover {
    color: var(--color-primary);
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.1) 0%, rgba(22, 160, 133, 0.05) 100%);
    transform: translateY(-2px);
}

.nav-icon img {
    width: 28px;
    height: 28px;
    margin: 0 auto;
}

.nav-icon button {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    margin: 0 auto;
}

.nav-icon form {
    display: flex;
    align-items: center;
    margin: 0 auto;
}

/* ========================================================= */
/* 4. OBSAH STRÁNKY */
/* ========================================================= */
.main-content {
    flex-grow: 1;
    max-width: var(--max-width);
    margin: 30px auto;
    padding: 30px;
    background: var(--color-header-bg);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: calc(100% - 40px);
}

/* ========================================================= */
/* 5. PATIČKA */
/* ========================================================= */
.site-footer {
    background-color: var(--color-footer-bg);
    color: var(--color-footer-text);
    padding: 40px 20px 20px;
    margin-top: 0;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 20px;
    gap: 30px;
}

.footer-container h3,
.footer-container h4 {
    color: var(--color-primary);
    margin-bottom: 10px;
    font-size: 1.1em;
}

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

.footer-links a,
.footer-contact a {
    color: var(--color-footer-text);
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    opacity: 0.8;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-primary);
    opacity: 1;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    text-align: center;
    font-size: 0.85em;
}

/* ========================================================= */
/* 6. INDEX.HTML */
/* ========================================================= */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    background: linear-gradient(135deg, #0f3d3e, #146c6d, #1e3c72);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    color: white;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.4);
    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.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

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

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(26, 188, 156, 0.5);
}

.intro {
    padding: 60px 20px;
    background-color: #ffffff;
}

.intro .container {
    max-width: 900px;
    margin: 0 auto;
}

.intro h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1abc9c;
}

.intro p {
    font-size: 1rem;
    margin-bottom: 30px;
}

.intro ul {
    list-style: none;
    padding-left: 0;
}

.intro ul li {
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 0;
}

.footer-cta {
    background-color: #ecf0f1;
    padding: 60px 20px;
    text-align: center;
}

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

.footer-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.footer-cta p {
    font-size: 1rem;
    margin-bottom: 30px;
}

.features {
    padding: 80px 20px;
    background-color: #ffffff;
}

.features h2 {
    font-size: 2.2rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 50px;
}

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

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: left;
}

.feature-card:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.13);
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.how-it-works {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.how-it-works h2 {
    font-size: 2.2rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 50px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.4);
}

.step h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.step p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.pricing-preview {
    padding: 80px 20px;
    background-color: #ffffff;
}

.pricing-preview h2 {
    font-size: 2.2rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
}

/* section-description je definováno níže - odstraněno kvůli duplicitě */

.pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-option {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-option.featured {
    border-color: #1abc9c;
    box-shadow: 0 8px 30px rgba(26, 188, 156, 0.2);
    transform: scale(1.05);
}

.pricing-option:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.13);
    transform: translateY(-5px);
}

.pricing-option.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-option h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.pricing-option .price {
    font-size: 2rem;
    font-weight: bold;
    color: #1abc9c;
    margin-bottom: 30px;
}

.pricing-option ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-option ul li {
    padding: 10px 0;
    font-size: 1rem;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* ========================================================= */
/* 7. ABOUT.HTML */
/* ========================================================= */
.about-hero {
    background: linear-gradient(135deg, #0f3d3e, #146c6d, #1e3c72);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.about-hero .container {
    max-width: 900px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.about-details {
    background-color: #ffffff;
    padding: 60px 20px;
}

.about-details .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 80px;
}

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

.about-details h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 30px;
    text-align: center;
}

.about-details p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: #555;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: left;
}

.feature-item:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.13);
    transform: translateY(-5px);
}

.feature-item h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

.target-audience {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.audience-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.audience-card:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.13);
    transform: translateY(-5px);
}

.audience-card h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.audience-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mission-list li {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding: 15px 20px;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #1abc9c;
    transition: all 0.3s ease;
}

.mission-list li:last-child {
    margin-bottom: 0;
}

.mission-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mission-list li strong {
    color: #1abc9c;
}

.cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 30px;
}

/* ========================================================= */
/* 8. CONTACT.HTML */
/* ========================================================= */
.contact-hero {
    background: linear-gradient(135deg, #0f3d3e, #146c6d, #1e3c72);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

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

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

.contact-hero-content {
    animation: fadeInUp 0.8s ease-out;
}

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

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.95;
}

.bubble-box {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.contact-details {
    padding: 80px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fcfb 100%);
}

.contact-details .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1abc9c, #16a085);
    border-radius: 2px;
}

/* section-description je definováno výše - odstraněno kvůli duplicitě */

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e8f5f3;
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(26, 188, 156, 0.2);
    border-color: #1abc9c;
}

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.contact-info-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info-item {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 500;
}

.info-value {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
}

.contact-link {
    color: #1abc9c;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1abc9c, #16a085);
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: #16a085;
    transform: translateX(5px);
}

.contact-link:hover::after {
    width: 100%;
}

.contact_form {
    background: linear-gradient(180deg, #f8fcfb 0%, #ffffff 100%);
    padding: 80px 20px;
    position: relative;
}

.contact_form .container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-box form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-box .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form-box .form-group label {
    margin-top: 10px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.contact-form-box .form-group input,
.contact-form-box .form-group textarea {
    padding: 12px 16px;
    border: 2px solid #dfe3e7;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.contact-form-box .form-group input:focus,
.contact-form-box .form-group textarea:focus {
    outline: none;
    border-color: #1abc9c;
    box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.1);
}

.contact-form-box .form-group textarea {
    min-height: 150px;
}

.contact-form-box #send_message,
.contact-form-box .cta-button {
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    color: white;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: center;
    margin-top: 20px;
    box-shadow: 0 6px 20px rgba(26, 188, 156, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

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

.contact-form-box #send_message:hover::before,
.contact-form-box .cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.button-text {
    position: relative;
    z-index: 1;
}

.button-icon {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.contact-form-box #send_message:hover,
.contact-form-box .cta-button:hover {
    background: linear-gradient(135deg, #16a085 0%, #138d75 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(26, 188, 156, 0.5);
}

.contact-form-box #send_message:hover .button-icon {
    transform: translateX(5px);
}

.contact-form-box #send_message:active,
.contact-form-box .cta-button:active {
    transform: translateY(-2px) scale(1);
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.4);
}

.error {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #fee;
    border-left: 3px solid #e74c3c;
    border-radius: 4px;
}

.error-icon {
    font-size: 1rem;
}

.contact-popup {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    color: #155724;
    padding: 30px;
    border-radius: 16px;
    margin: 30px auto;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.2);
    animation: slideInDown 0.5s ease-out;
    transition: all 0.3s ease;
}

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

.popup-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    animation: bounce 1s ease-in-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.contact-popup h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #155724;
}

.contact-popup p {
    font-size: 1rem;
    line-height: 1.6;
    color: #155724;
}

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

/* ========================================================= */
/* 9. LOGIN.HTML */
/* ========================================================= */
.login-hero {
    background: linear-gradient(135deg, #0f3d3e, #146c6d, #1e3c72);
    padding: 80px 20px;
    text-align: center;
    flex-grow: 1;
}

.login-hero .container {
    max-width: 500px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.login-hero h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.login-hero p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #555;
}

.login-hero form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-hero .form-group {
    display: flex;
    flex-direction: column;
}

.login-hero .form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.login-hero .form-group input {
    padding: 12px 16px;
    border: 2px solid #dfe3e7;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.login-hero .form-group input:focus {
    outline: none;
    border-color: #1abc9c;
    box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.1);
}

.Submit {
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    color: white;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(26, 188, 156, 0.3);
    width: 100%;
    margin-top: 10px;
}

.Submit:hover {
    background: linear-gradient(135deg, #16a085 0%, #138d75 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 188, 156, 0.4);
}

.Submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(26, 188, 156, 0.3);
}

.button-registrace-link {
    display: block;
    background: linear-gradient(135deg, #e67e22 0%, #cf711f 100%);
    color: white;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.button-registrace-link:hover {
    background: linear-gradient(135deg, #cf711f 0%, #b8651a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(230, 126, 34, 0.4);
}

.forgot-password-link {
    display: block;
    font-size: 0.95rem;
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s ease;
    text-align: center;
    margin-top: 15px;
}

.forgot-password-link:hover {
    color: #1abc9c;
    text-decoration: underline;
}

form .error-box {
    display: flex;
    align-items: flex-start;
    background-color: #ffe6e6;
    border-left: 6px solid #e74c3c;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.error-box-icon {
    font-size: 1.8rem;
    color: #e74c3c;
    margin-right: 15px;
    margin-top: 2px;
}

.error-box-text {
    color: #c0392b;
}

.error-box-text p:first-child {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.error-box-text p:last-child {
    font-size: 1rem;
    margin: 0;
}

/* ========================================================= */
/* 10. REGISTER.HTML */
/* ========================================================= */
.register-hero {
    background: linear-gradient(135deg, #0f3d3e, #146c6d, #1e3c72);
    padding: 80px 20px;
    text-align: center;
    flex-grow: 1;
}

.register-hero .container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.register-hero h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.register-hero p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #555;
}

.section-divider,
.section-divider2 {
    margin-top: 30px;
}

.section-divider h3,
.section-divider2 h3 {
    font-size: 1.2rem;
    color: #1abc9c;
    margin-bottom: 6px;
}

.section-divider p,
.section-divider2 p {
    font-size: 0.95rem;
    color: #666;
}

/* Styly pro formulářové prvky v registračním formuláři */
.register-hero .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.register-hero .form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.register-hero .form-group input[type="text"],
.register-hero .form-group input[type="email"],
.register-hero .form-group input[type="password"] {
    padding: 12px 16px;
    border: 2px solid #dfe3e7;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.register-hero .form-group input[type="text"]:focus,
.register-hero .form-group input[type="email"]:focus,
.register-hero .form-group input[type="password"]:focus {
    outline: none;
    border-color: #1abc9c;
    box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.1);
}

.register-hero .form-group input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.field-error p,
.form-errors p {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 6px;
}

/* ========================================================= */
/* EMAIL VERIFICATION PAGE */
/* ========================================================= */
.email-verification-hero {
    background: linear-gradient(135deg, #0f3d3e, #146c6d, #1e3c72);
    padding: 80px 20px;
    text-align: center;
    flex-grow: 1;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.email-verification-hero .container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.email-verification-icon {
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.email-verification-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.email-verification-text {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #555;
    line-height: 1.6;
}

.email-verification-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.email-verification-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #f8fcfb 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 4px solid #1abc9c;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.email-verification-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1abc9c, #16a085);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(26, 188, 156, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.step-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.step-content a {
    color: #1abc9c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.step-content a:hover {
    color: #16a085;
    text-decoration: underline;
}

.email-verification-note {
    margin: 30px 0;
    padding: 20px;
    background: #e8f8f5;
    border-radius: 8px;
    border: 1px solid #1abc9c;
}

.email-verification-note p {
    font-size: 1rem;
    color: #16a085;
    margin: 0;
    font-weight: 500;
}

.email-verification-button {
    display: inline-block;
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    color: white;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(26, 188, 156, 0.3);
    margin-top: 20px;
}

.email-verification-button:hover {
    background: linear-gradient(135deg, #16a085 0%, #138d75 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 188, 156, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive design */
@media (max-width: 768px) {
    .email-verification-hero .container {
        padding: 30px 20px;
    }
    
    .email-verification-hero h1 {
        font-size: 1.8rem;
    }
    
    .email-verification-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-icon {
        margin: 0 auto;
    }
    
    .step-content {
        text-align: center;
    }
}

/* ========================================================= */
/* 11. MESSAGES A ALERTS */
/* ========================================================= */
/* Styly pro Django messages - přesunuto z login.html */
.message-box {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.message-box.error {
    background-color: #ffe6e6;
    border-left: 6px solid #e74c3c;
}

.message-box.success {
    background-color: #e6ffe6;
    border-left: 6px solid #27ae60;
}

.message-box.info {
    background-color: #fff8e6;
    border-left: 6px solid #f0660a;
}

.message-box-icon {
    font-size: 1.8rem;
    margin-right: 15px;
    margin-top: 2px;
}

.message-box.error .message-box-icon {
    color: #e74c3c;
}

.message-box.success .message-box-icon {
    color: #27ae60;
}

.message-box.info .message-box-icon {
    color: #f0660a;
}

.message-box-content {
    flex: 1;
}

.message-box.error .message-box-content {
    color: #c0392b;
}

.message-box.success .message-box-content {
    color: #1e8449;
}

.message-box.info .message-box-content {
    color: #856404;
}

.message-box-title {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.message-box-text {
    font-size: 1rem;
    margin: 0;
}

/* Error box pro formuláře */
.error-box {
    display: flex;
    align-items: flex-start;
    background-color: #ffe6e6;
    border-left: 6px solid #e74c3c;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.error-box-icon {
    font-size: 1.8rem;
    color: #e74c3c;
    margin-right: 15px;
    margin-top: 2px;
}

.error-box-text {
    color: #c0392b;
}

.error-box-text p:first-child {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.error-box-text p:last-child {
    font-size: 1rem;
    margin: 0;
}

/* ========================================================= */
/* 12. SUBSCRIPTION PLANS */
/* ========================================================= */
/* Styly pro subscription plans - přesunuto z subscription_plans.html */
.subscription-active-card h2,
.subscription-warning-card h2 {
    margin-top: 0;
    color: #2c3e50;
}

.subscription-active-card h2 {
    color: white;
}

.subscription-warning-card h2 {
    color: white;
}

.expiry-info p {
    margin-top: 10px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.subscription-actions form,
.subscription-form-inline {
    display: inline;
}

.expiry-info-next-payment {
    margin-top: 10px;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Table cell alignment */
.table-cell-center {
    text-align: center;
}

.form-alert {
    margin-bottom: 30px;
}

/* ========================================================= */
/* 13. ANIMACE */
/* ========================================================= */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* fadeIn animace je definována výše - odstraněno kvůli duplicitě */

/* ========================================================= */
/* 12. RESPONZIVNÍ DESIGN */
/* ========================================================= */
@media (max-width: 1024px) {
    nav.nav-bar {
        width: 80%;
        gap: 15px;
    }

    .nav-bar a {
        font-size: 1.1rem;
        padding: 8px 12px;
    }

    .main-content {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    /* Navigace - logo v prvním řádku, odkazy pod ním */
    .header {
        height: auto;
        min-height: 120px;
        padding: 20px 15px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    nav.nav-bar {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 0;
        position: relative;
    }

    .nav-logo {
        height: 80px;
        width: auto;
        max-width: 200px;
        margin: 0 auto 15px auto;
        padding: 0;
        display: block;
        object-fit: contain;
        text-align: center;
        flex: 0 0 100%;
        width: 100%;
    }

    /* Odkazy - vycentrované pod logem na druhém řádku */
    .nav-bar > a:not(.nav-icon),
    .nav-bar > form.nav-icon,
    .nav-bar > a.nav-icon {
        font-size: 1rem;
        padding: 10px 16px;
        flex: 0 0 auto;
        min-width: auto;
        text-align: center;
        justify-content: center;
        margin: 0 4px;
        display: inline-flex;
    }

    .nav-icon img {
        width: 28px;
        height: 28px;
    }

    /* Main content */
    .main-content {
        padding: 20px 15px;
        margin: 20px auto;
        width: calc(100% - 30px);
    }

    /* Hero sekce */
    .hero,
    .about-hero,
    .contact-hero,
    .gdpr-hero {
        padding: 50px 15px;
    }

    .hero h1,
    .about-hero h1,
    .contact-hero h1,
    .gdpr-hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero p,
    .about-hero p,
    .contact-hero p {
        font-size: 0.95rem;
    }

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

    /* Features a sekce */
    .features h2,
    .how-it-works h2,
    .pricing-preview h2 {
        font-size: 1.6rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-option.featured {
        transform: scale(1);
    }

    .pricing-option.featured:hover {
        transform: translateY(-5px);
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    /* About page */
    .about-section {
        margin-bottom: 50px;
    }

    .about-details {
        padding: 40px 15px;
    }

    .about-details h2 {
        font-size: 1.6rem;
    }

    .about-details p {
        font-size: 0.95rem;
    }

    .features-list,
    .target-audience {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mission-list {
        padding: 25px 15px;
    }

    .mission-list li {
        font-size: 0.95rem;
        padding: 12px 15px;
    }

    .cta-section {
        padding: 30px 15px;
    }

    /* Contact page */
    .contact-hero {
        padding: 60px 15px;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .contact-details {
        padding: 50px 15px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .contact-info-card {
        padding: 25px 20px;
    }

    .contact-icon {
        font-size: 2.5rem;
    }

    .contact_form {
        padding: 50px 15px;
    }

    .contact-form-box {
        padding: 30px 20px;
    }
    
    .contact-form-box form {
        gap: 15px;
    }

    .contact-form-box .form-group input,
    .contact-form-box .form-group textarea {
        font-size: 0.95rem;
        padding: 12px 14px;
    }
    
    .contact-form-box #send_message,
    .contact-form-box .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .bubble-box {
        padding: 25px 15px;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer-links,
    .footer-contact {
        width: 100%;
    }

    /* Intro sekce */
    .intro {
        padding: 40px 15px;
    }

    .intro h2 {
        font-size: 1.6rem;
    }

    .intro p {
        font-size: 0.95rem;
    }

    .footer-cta {
        padding: 40px 15px;
    }

    .footer-cta h2 {
        font-size: 1.6rem;
    }

    .footer-cta p {
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    /* Navigace - ještě kompaktnější */
    .header {
        height: auto;
        min-height: 110px;
        padding: 18px 12px;
    }

    nav.nav-bar {
        gap: 10px;
        padding: 0;
    }

    .nav-logo {
        height: 70px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 12px auto;
        display: block;
        object-fit: contain;
        flex: 0 0 100%;
        flex-basis: 100%;
        min-width: 100%;
        text-align: center;
    }

    .nav-bar a:not(.nav-icon) {
        font-size: 0.9rem;
        padding: 8px 14px;
        min-width: auto;
    }

    .nav-icon img {
        width: 26px;
        height: 26px;
    }

    /* Login a Register */
    .login-hero,
    .register-hero {
        padding: 40px 15px;
    }

    .login-hero .container,
    .register-hero .container {
        padding: 25px 15px;
    }

    .login-hero h1,
    .register-hero h1 {
        font-size: 1.4rem;
    }

    .login-hero p,
    .register-hero p {
        font-size: 0.9rem;
    }

    button[type="submit"],
    .Submit,
    .button-registrace-link {
        padding: 12px 20px;
        font-size: 0.95rem;
        width: 100%;
    }

    /* Hero sekce - menší */
    .hero,
    .about-hero,
    .contact-hero,
    .gdpr-hero {
        padding: 40px 10px;
    }

    .hero h1,
    .about-hero h1,
    .contact-hero h1,
    .gdpr-hero h1 {
        font-size: 1.6rem;
    }

    .hero p,
    .about-hero p,
    .contact-hero p {
        font-size: 0.9rem;
    }

    /* Main content */
    .main-content {
        padding: 15px 10px;
        margin: 15px auto;
        width: calc(100% - 20px);
    }

    /* Formuláře */
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 0.9rem;
        padding: 10px;
    }

    /* Tlačítka */
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Footer */
    .site-footer {
        padding: 30px 15px 15px;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    /* Extra malé obrazovky */
    .header {
        height: auto;
        min-height: 100px;
        padding: 15px 10px;
    }

    nav.nav-bar {
        gap: 8px;
    }

    .nav-logo {
        height: 65px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 10px auto;
        display: block;
        object-fit: contain;
        flex: 0 0 100%;
        flex-basis: 100%;
        min-width: 100%;
        text-align: center;
    }

    .nav-bar a:not(.nav-icon) {
        font-size: 0.85rem;
        padding: 8px 12px;
        min-width: auto;
    }

    .nav-icon img {
        width: 24px;
        height: 24px;
    }

    .hero h1,
    .about-hero h1,
    .contact-hero h1,
    .gdpr-hero h1 {
        font-size: 1.4rem;
    }

    .main-content {
        padding: 12px 8px;
    }

    .contact-box,
    .contact-form-box,
    .bubble-box {
        padding: 20px 12px;
    }
}

/* ========================================================= */
/* 12. ERROR PAGES (404, 500) */
/* ========================================================= */
.error-hero {
    background: linear-gradient(135deg, #0f3d3e, #146c6d, #1e3c72);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    flex: 1; /* Zabere celý dostupný prostor, footer bude na spodku */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0; /* Důležité pro flexbox */
}

.error-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

.error-wrapper {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.error-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.error-hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.craftmate-button {
    display: inline-block;
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    color: white;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

.craftmate-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(26, 188, 156, 0.5);
    color: white;
}

.craftmate-button.secondary {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.craftmate-button.secondary:hover {
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.5);
    background: linear-gradient(135deg, #2980b9 0%, #21618c 100%);
}

@media (max-width: 768px) {
    .error-hero {
        padding: 60px 15px;
        flex: 1; /* Zachová flex-grow i na mobilu */
    }

    .error-hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .error-hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .error-actions {
        flex-direction: column;
        gap: 15px;
    }

    .craftmate-button {
        width: 100%;
        max-width: 300px;
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* ========================================================= */
/* 13. GDPR.HTML */
/* ========================================================= */
.gdpr-hero {
    background: linear-gradient(135deg, #0f3d3e, #146c6d, #1e3c72);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gdpr-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(26, 188, 156, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

/* pulse animace je definována výše - odstraněno kvůli duplicitě */

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

.gdpr-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.gdpr-hero .hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.gdpr-company-info {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 35px;
    margin-top: 30px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    transition: transform 0.3s ease;
}

.gdpr-company-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.gdpr-company-info h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.gdpr-company-info p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.gdpr-company-info a {
    color: white;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.gdpr-company-info a:hover {
    opacity: 0.8;
}

.gdpr-content {
    background-color: #ffffff;
    padding: 60px 20px;
}

.gdpr-content .container {
    max-width: 1000px;
    margin: 0 auto;
}

.gdpr-section {
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out both;
}

.gdpr-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1abc9c, #16a085);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.gdpr-section:hover::before {
    transform: scaleY(1);
}

.gdpr-section:hover {
    box-shadow: 0 8px 30px rgba(26, 188, 156, 0.15);
    transform: translateY(-3px);
}

.gdpr-section:nth-child(1) { animation-delay: 0.1s; }
.gdpr-section:nth-child(2) { animation-delay: 0.2s; }
.gdpr-section:nth-child(3) { animation-delay: 0.3s; }
.gdpr-section:nth-child(4) { animation-delay: 0.4s; }
.gdpr-section:nth-child(5) { animation-delay: 0.5s; }
.gdpr-section:nth-child(6) { animation-delay: 0.6s; }
.gdpr-section:nth-child(7) { animation-delay: 0.7s; }
.gdpr-section:nth-child(8) { animation-delay: 0.8s; }
.gdpr-section:nth-child(9) { animation-delay: 0.9s; }
.gdpr-section:nth-child(10) { animation-delay: 1s; }
.gdpr-section:nth-child(11) { animation-delay: 1.1s; }
.gdpr-section:nth-child(12) { animation-delay: 1.2s; }
.gdpr-section:nth-child(13) { animation-delay: 1.3s; }

.section-icon {
    font-size: 3rem;
    display: inline-block;
    margin-bottom: 15px;
    animation: bounceIn 0.8s ease-out;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.gdpr-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 25px;
    border-bottom: 3px solid #1abc9c;
    padding-bottom: 15px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.gdpr-section h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1abc9c, #16a085);
    border-radius: 2px;
}

.gdpr-section h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 15px;
}

.gdpr-section h4 {
    font-size: 1.2rem;
    color: #1abc9c;
    margin-bottom: 12px;
}

.gdpr-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.gdpr-section ul,
.gdpr-section ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.gdpr-section li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.gdpr-subsection {
    margin-top: 25px;
    padding-left: 20px;
    border-left: 3px solid #ecf0f1;
    padding-bottom: 15px;
}

.gdpr-info-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 25px;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gdpr-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1abc9c, #16a085);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.gdpr-info-box:hover::before {
    transform: scaleX(1);
}

.gdpr-info-box:hover {
    box-shadow: 0 4px 20px rgba(26, 188, 156, 0.15);
    transform: translateY(-2px);
}

.info-box-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.info-box-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1abc9c, #16a085);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.gdpr-info-box-primary .info-box-icon {
    background: linear-gradient(135deg, #1abc9c, #16a085);
}

.gdpr-info-box-secondary .info-box-icon {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
}

.gdpr-info-box-auto .info-box-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.gdpr-info-box h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.2rem;
}

.gdpr-info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gdpr-info-box li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.list-bullet {
    color: #1abc9c;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.2;
}

.gdpr-list-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.gdpr-list-box ol {
    margin-left: 25px;
}

.gdpr-list-box li {
    margin-bottom: 15px;
    padding-left: 10px;
}

.gdpr-warning-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #f39c12;
    border-radius: 16px;
    padding: 30px;
    margin-top: 20px;
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.25);
    position: relative;
    overflow: hidden;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.gdpr-warning-box::before {
    content: '⚠️';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.3;
}

.gdpr-warning-box p {
    margin: 0;
    color: #856404;
}

.gdpr-rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gdpr-right-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid rgba(26, 188, 156, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.gdpr-right-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 188, 156, 0.1), transparent);
    transition: left 0.5s ease;
}

.gdpr-right-card:hover::before {
    left: 100%;
}

.gdpr-right-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(26, 188, 156, 0.25);
    border-color: #1abc9c;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
}

.gdpr-right-card h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 12px;
    margin-top: 0;
    transition: color 0.3s ease;
}

.gdpr-right-card:hover h4 {
    color: #1abc9c;
}

.gdpr-right-card p {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 0;
}

.gdpr-contact-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.gdpr-contact-box p {
    margin-bottom: 10px;
}

.gdpr-contact-box a {
    color: #1abc9c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.gdpr-contact-box a:hover {
    color: #16a085;
    text-decoration: underline;
}

.gdpr-final {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #1abc9c;
}

.gdpr-meta {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #ecf0f1;
    text-align: center;
}

.gdpr-meta p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #7f8c8d;
}

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

.retention-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid rgba(26, 188, 156, 0.1);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.retention-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(26, 188, 156, 0.15);
    border-color: #1abc9c;
}

.retention-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1abc9c, #16a085);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.3);
}

.retention-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.retention-content strong {
    color: #2c3e50;
    font-size: 1.1rem;
}

.retention-content span {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.gdpr-action-section {
    background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
    border: 2px solid #1abc9c;
}

.gdpr-action-box {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
    border: 2px solid rgba(26, 188, 156, 0.2);
    border-radius: 16px;
    padding: 35px;
    margin-top: 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(26, 188, 156, 0.1);
}

.action-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

/* float animace je definována výše - odstraněno kvůli duplicitě */

.action-link {
    color: #1abc9c;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.action-link:hover {
    color: #16a085;
    border-bottom-color: #16a085;
}

.gdpr-intro {
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
    border: 2px solid rgba(33, 150, 243, 0.2);
}

@media (max-width: 768px) {
    .gdpr-hero h1 {
        font-size: 2.2rem;
    }

    .gdpr-section {
        padding: 25px 20px;
        margin-bottom: 40px;
    }

    .gdpr-section h2 {
        font-size: 1.6rem;
    }

    .gdpr-section h3 {
        font-size: 1.2rem;
    }

    .gdpr-rights-grid {
        grid-template-columns: 1fr;
    }

    .gdpr-retention-grid {
        grid-template-columns: 1fr;
    }

    .gdpr-company-info {
        padding: 25px 20px;
    }

    .gdpr-info-box,
    .gdpr-list-box,
    .gdpr-contact-box {
        padding: 20px;
    }

    .section-icon {
        font-size: 2.5rem;
    }

    .retention-item {
        flex-direction: column;
        text-align: center;
    }

    .action-icon {
        font-size: 2.5rem;
    }
}

/* ========================================================= */
/* SURVEY STYLES */
/* ========================================================= */

/* Survey Container */
.survey-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.survey-header {
    text-align: center;
    margin-bottom: 40px;
}

.survey-header h1 {
    color: #1abc9c;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.survey-header p {
    color: #666;
    font-size: 1.1rem;
}

.survey-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.survey-section h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #1abc9c;
}

/* Survey Form Styles */
.survey-form-group {
    margin-bottom: 25px;
}

.survey-form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.survey-form-group label.required::after {
    content: " *";
    color: #e74c3c;
}

.survey-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.survey-form-control:focus {
    outline: none;
    border-color: #1abc9c;
    box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.1);
}

textarea.survey-form-control {
    resize: vertical;
    min-height: 100px;
}

.survey-form-check {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.survey-form-check-input {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
}

.survey-form-check-label {
    font-weight: normal;
    cursor: pointer;
    margin-bottom: 0;
}

.submit-button {
    background: linear-gradient(135deg, #1abc9c, #16a085);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 40px auto 0;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 188, 156, 0.4);
}

.survey-error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
}

.survey-help-text {
    color: #666;
    font-size: 0.85rem;
    margin-top: 5px;
}

.survey-other-field {
    margin-top: 10px;
}

.survey-communication-options {
    margin-top: 10px;
}

.survey-communication-options .survey-form-check {
    margin-bottom: 12px;
}

/* Survey Intro Styles */
.survey-intro-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.survey-intro-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 50px 30px;
    background: linear-gradient(135deg, #1abc9c, #16a085);
    border-radius: 16px;
    color: white;
    box-shadow: 0 8px 25px rgba(26, 188, 156, 0.3);
}

.survey-intro-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.survey-intro-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
    line-height: 1.2;
}

.survey-intro-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 300;
}

.survey-intro-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.survey-intro-content h2 {
    color: #1abc9c;
    font-size: 1.8rem;
    margin-bottom: 20px;
    margin-top: 30px;
}

.survey-intro-content h2:first-child {
    margin-top: 0;
}

.survey-intro-welcome {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.survey-intro-why {
    margin-bottom: 40px;
}

.survey-intro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.survey-feature-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8fcfb;
    border-radius: 10px;
    border-left: 4px solid #1abc9c;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.survey-feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.survey-feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.survey-feature-text {
    flex: 1;
}

.survey-feature-text strong {
    display: block;
    color: #1abc9c;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.survey-feature-text p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.survey-intro-content p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.survey-intro-content ul {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-left: 20px;
    margin-bottom: 20px;
}

.survey-intro-content li {
    margin-bottom: 10px;
}

.survey-intro-content strong {
    color: #2c3e50;
}

.survey-cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.btn-survey {
    background: linear-gradient(135deg, #1abc9c, #16a085);
    color: white;
    padding: 20px 50px;
    border: none;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(26, 188, 156, 0.3);
    cursor: pointer;
}

.btn-survey:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 188, 156, 0.4);
}

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

.btn-survey:hover .btn-arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .survey-intro-header {
        padding: 30px 20px;
    }
    
    .survey-intro-header h1 {
        font-size: 2rem;
    }
    
    .survey-intro-header p {
        font-size: 1.1rem;
    }
    
    .survey-intro-features {
        grid-template-columns: 1fr;
    }
    
    .btn-survey {
        padding: 18px 35px;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }
    
    .survey-reward-box {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .survey-reward-icon {
        font-size: 3rem;
        margin: 0 auto;
    }
    
    .survey-reward-content h3 {
        font-size: 1.3rem;
    }
    
    .survey-reward-content p {
        font-size: 1rem;
    }
}

.survey-intro-tester {
    margin-bottom: 40px;
}

.survey-reward-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 2px solid #4caf50;
    border-radius: 16px;
    padding: 30px;
    margin: 40px auto;
    max-width: 750px;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.2);
    display: flex;
    gap: 25px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.survey-reward-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

.survey-reward-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(-5deg);
    }
    75% {
        transform: translateY(-8px) rotate(5deg);
    }
}

.survey-reward-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.survey-reward-content h3 {
    color: #2e7d32;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 0;
}

.survey-reward-content p {
    color: #1b5e20;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.survey-reward-content strong {
    color: #1b5e20;
    font-weight: 700;
    font-size: 1.15rem;
    display: inline-block;
}

.survey-reward-thanks {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid rgba(76, 175, 80, 0.3);
    font-style: italic;
    color: #2e7d32;
    font-size: 1rem;
}

.survey-highlight-box {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border-left: 4px solid #ffc107;
    padding: 30px;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.survey-tester-benefits {
    margin-bottom: 25px;
}

.survey-tester-benefits h3 {
    color: #856404;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.survey-tester-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.survey-tester-benefits li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(133, 100, 4, 0.1);
    color: #856404;
    font-size: 1.05rem;
    line-height: 1.6;
}

.survey-tester-benefits li:last-child {
    border-bottom: none;
}

.survey-tester-benefits strong {
    color: #856404;
}

.survey-tester-requirements {
    padding-top: 25px;
    border-top: 2px solid rgba(133, 100, 4, 0.2);
}

.survey-tester-requirements h3 {
    color: #856404;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.survey-tester-requirements p {
    color: #856404;
    margin: 0;
}

.survey-tester-note {
    color: #666;
    font-style: italic;
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.survey-tester-info-box {
    margin-top: 25px;
    padding: 18px 20px;
    background: rgba(255, 193, 7, 0.15);
    border: 2px solid #ffc107;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.2);
}

.survey-info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.survey-tester-info-box p {
    margin: 0;
    color: #856404;
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.5;
}

.survey-intro-time {
    margin: 40px 0;
    text-align: center;
}

.survey-time-box {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #e8f5f3, #f0f9f7);
    border: 2px solid #1abc9c;
    border-radius: 50px;
    color: #1abc9c;
    font-size: 1.1rem;
    font-weight: 600;
}

.survey-intro-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
    text-align: center;
}

.survey-signature {
    margin-top: 25px;
    color: #555;
    font-size: 1rem;
}

.survey-signature strong {
    color: #1abc9c;
    font-size: 1.1rem;
}

.survey-signature a {
    color: #1abc9c;
    text-decoration: none;
    font-weight: 500;
}

.survey-signature a:hover {
    text-decoration: underline;
}

.survey-highlight-box strong {
    color: #856404;
}

/* Thank You Page Styles */
.thank-you-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #1abc9c, #16a085);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
    font-weight: bold;
    animation: fadeInScale 0.6s ease-out;
    box-shadow: 0 8px 25px rgba(26, 188, 156, 0.3);
}

@keyframes fadeInScale {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-container h1 {
    color: #1abc9c;
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.thank-you-main-text {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-info-box {
    background: linear-gradient(135deg, #f8fcfb 0%, #ffffff 100%);
    border-left: 4px solid #1abc9c;
    border-radius: 12px;
    padding: 30px;
    margin: 40px auto;
    max-width: 600px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.thank-you-info-box p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.thank-you-info-box p:last-child {
    margin-bottom: 0;
}

.thank-you-info-box strong {
    color: #1abc9c;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}

.thank-you-actions {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.thank-you-btn-primary {
    background: linear-gradient(135deg, #1abc9c, #16a085);
    color: white;
    padding: 16px 35px;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.3);
}

.thank-you-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 188, 156, 0.4);
}

.thank-you-btn-secondary {
    background: white;
    color: #1abc9c;
    padding: 16px 35px;
    border: 2px solid #1abc9c;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.thank-you-btn-secondary:hover {
    background: #1abc9c;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .thank-you-container {
        padding: 40px 20px;
    }
    
    .thank-you-container h1 {
        font-size: 2rem;
    }
    
    .thank-you-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .thank-you-info-box {
        padding: 20px;
    }
    
    .thank-you-actions {
        flex-direction: column;
    }
    
    .thank-you-btn-primary,
    .thank-you-btn-secondary {
        width: 100%;
    }
}
