
body.de-version .hero-content {
    text-align: left;
}


/* Abstract floating elements */
.floating-element {
    display: none;
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.08;
    z-index: 0;
}

.floating-element.blue {
    background-color: var(--primary-color);
}
.floating-element.purple {
    background-color: #6a11cb;
}
.floating-element.green {
    background-color: var(--success-color);
}

.floating-element.hero-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -200px;
}
.floating-element.hero-2 {
    width: 700px;
    height: 700px;
    top: 500px;
    right: -250px;
}

.floating-element.templates-1 {
    width: 600px;
    height: 600px;
    top: 1000px;
    right: -250px;
}
.floating-element.templates-2 {
    width: 500px;
    height: 500px;
    top: 1500px;
    left: -250px;
}

.floating-element.pricing-1 {
    width: 750px;
    height: 750px;
    top: 2000px;
    left: -350px;
}
.floating-element.pricing-2 {
    width: 700px;
    height: 700px;
    top: 2500px;
    right: -300px;
}



.simple-checklist {
    counter-reset: checklist-counter;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.simple-checklist .checklist-item {
    counter-increment: checklist-counter;
    display: flex;
    gap: 15px;
    font-size: 1.1rem;
}

.simple-checklist .checklist-item .checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
    background-color: var(--primary-color);
}

.simple-checklist .checklist-item .checkbox .bi {
    font-size: 1.2rem;
    color: #fff;
}

.simple-checklist .checklist-item-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.simple-checklist .checklist-item-text .item-title::before {
    content: counter(checklist-counter) ". ";
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 5px;
}

.simple-checklist .checklist-item-text .item-title {
    font-weight: 700;
    font-size: 1.2rem;
}

.simple-checklist .checklist-item-text .item-description {
    color: var(--text-secondary);
    font-size: 1rem;
}

/*
     3:  .
    flex-grow: 1      
    , ""   .
    padding-top: var(--header-height);  ,
      .
*/
.content-wrapper {
    flex-grow: 1;
    padding-top: var(--header-height);
}


.section {
    padding: 20px 0;
    text-align: left;
    position: relative;
}

.section-header {
    margin-bottom: 22px;
}

.section-header h2 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
    border: none;
}

.cta-button:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: var(--card-hover-shadow);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background-color: rgba(26, 115, 232, 0.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 0.87;
    align-items: center;
    text-align: center;
}

.hero-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.hero-section p {
    font-size: 1rem;
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
    text-align: center;
    opacity: 0.9;
}

.hero-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta-checkbox {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.hero-cta-checkbox a {
text-decoration: none;
}

.large-checkbox-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background-color: #007bff;
    color: white;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/*    */
.icon-wrapper {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    transform: translateY(-5px);
}

/*      */
#unchecked-icon, #checked-icon {
    font-size: 2.5rem;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.2s ease-in-out;
}

#checked-icon {
    opacity: 0;
}

.large-checkbox-container:hover #unchecked-icon {
    opacity: 0;
}

.large-checkbox-container:hover #checked-icon {
    opacity: 1;
}

#button-text {
    transition: opacity 0.2s;
}

/* --- */

/* Content Block */
.content-block {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 40px;
    background-color: #f0f4f8;
    border-radius: 24px;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.content-block.reverse {
    flex-direction: row-reverse;
}

.content-block:hover {
    background-color: #e6edf2;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.content-block img {
    border-radius: 16px;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.content-text {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 1;
}

.content-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.content-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Templates Section */
.template-search-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.template-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.category-pill {
    padding: 8px 16px;
    background-color: #e2e8f0;
    color: var(--text-secondary);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.category-pill.active,
.category-pill:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.template-tile {
    background-color: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.template-tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-hover-shadow);
}

.template-tile img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    border-bottom: 1px solid #f0f0f0;
}

.template-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.template-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.template-categories a {
    text-decoration: none;
}	

/*        */
.templates-grid a {
    text-decoration: none;
	color: #000;
}

/* Stats Section */
.stats-section .stats-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stats-item {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    flex: 1 1 200px;
}

.stats-item h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-align: center;
    line-height: 1;
}

.stats-item p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 0;
    text-align: center;
}

/* Pricing Section */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    padding: 40px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.pricing-card.premium {
    border-color: var(--primary-color);
}

.pricing-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 20px;
}

.pricing-card .price .currency {
    font-size: 1.5rem;
    font-weight: 500;
    vertical-align: top;
    margin-right: 5px;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.pricing-card .features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    display: grid;
    gap: 15px;
    flex-grow: 1;
}

.pricing-card .features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-card .features-list li .bi {
    color: var(--success-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.pricing-card .cta-button {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* About Service Section */
.about-service-section {
    background-color: #f0f4f8;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: left;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.about-service-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-service-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto 1.5em;
    position: relative;
    z-index: 1;
}



/* Back to top button */
.back-to-top-button {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 1000;
    box-shadow: var(--card-shadow);
}

.back-to-top-button.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-button:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-2px);
}

@keyframes pulse-shine {
    0% { transform: scale(1) rotate(45deg); opacity: 0.8; }
    50% { transform: scale(1.1) rotate(45deg); opacity: 0.9; }
    100% { transform: scale(1) rotate(45deg); opacity: 0.8; }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-section h1 { font-size: 2.5rem; }
    .hero-section p { font-size: 1.25rem; }
    .content-block { flex-direction: column; text-align: center; gap: 30px; padding: 30px; }
    .content-block.reverse { flex-direction: column; }
    .content-block img { width: 100%; margin-bottom: 24px; }
    .templates-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 769px) {
    .floating-element {
        display: block;
    }
}

@media (max-width: 768px) {
    
    .section { padding: 20px 0; }
    .section-header h2 { font-size: 2rem; }
    .hero-section h1 { font-size: 2rem; }
    .hero-section p { font-size: 1.1rem; }
    .content-text h3 { font-size: 1.8rem; }
    .templates-grid { grid-template-columns: 1fr; }
    .about-service-section { padding: 30px 15px; }
    .pricing-table {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 20px;
    }
	
    .hero-section h1 { font-size: 2rem; }
    .hero-section p { font-size: 1.1rem; }
    .pricing-card {
        flex: 0 0 80%;
        max-width: 300px;
        scroll-snap-align: start;
    }
    .content-block img {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
    .hero-cta-buttons {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 10px;
        overflow-x: auto;
        padding: 10px 15px;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        box-sizing: border-box;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 10px 15px;
        white-space: nowrap;
        flex: 0 0 auto;
        min-width: fit-content;
    }
    .template-categories {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
		align-items: stretch;
        -webkit-overflow-scrolling: touch;
    }
	
	.template-categories a {
   display: flex;
    flex-direction: column; /*  ,     */
    align-items: center;   /*     */
    justify-content: center; /*     */
    text-align: center; /
	}
	
    .templates-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 20px;
        gap: 20px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    .template-tile {
        flex: 0 0 85%;
        max-width: 300px;
        scroll-snap-align: start;
    }
    .template-search-block {
        gap: 0;
        padding-left: 15px;
    }
    .template-search-block .template-categories {
        margin-left: -15px;
        padding-left: 15px;
    }
    .stats-section .stats-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 15px;
        gap: 20px;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
    }
    .stats-item {
        flex: 0 0 70%;
        min-width: 250px;
    }
}

@media (max-width: 576px) {
    .hero-cta-buttons {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 8px;
        overflow-x: auto;
        padding: 10px 15px;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        box-sizing: border-box;
    }

    .cta-button {
        font-size: 0.85rem;
        padding: 8px 12px;
        white-space: nowrap;
        flex: 0 0 auto;
        min-width: fit-content;
    }
    .stats-item h3 { font-size: 2rem; }
    .stats-item p { font-size: 1rem; }
    .content-block img { margin-bottom: 0; }
}

    .quick-checklist-section {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        border-radius: 24px;
        padding: 2rem;
        margin: 2rem auto;
        max-width: 900px;
        width: 100%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    .quick-checklist-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: var(--primary-color, #2c3e50);
    }
    .quick-checklist-list {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .quick-checklist-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        background: white;
        border-radius: 12px;
        margin-bottom: 8px;
        /* :  border  box-shadow */
        /* border: 1px solid #f0f0f0; */
        /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
    }
    /* :    */
    .item-number {
        font-size: 1rem;
        color: #7f8c8d;
        min-width: 30px;   /*     */
        text-align: right;
        margin-right: 4px;
        user-select: none;
    }
    .quick-checklist-checkbox {
        flex-shrink: 0;
        font-size: 1.4rem;
        line-height: 1;
        color: #7f8c8d;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 6px;
        transition: background 0.2s;
    }
    .quick-checklist-checkbox:hover {
        background: #f0f0f0;
    }
    .quick-checklist-checkbox.checked {
        color: #27ae60;
    }
    .quick-checklist-item span:not(.item-number):not(.quick-checklist-checkbox) {
        flex: 1;
        font-size: 1rem;
        color: #2c3e50;
        word-break: break-word;
    }
    .quick-checklist-item span.checked-text {
        text-decoration: line-through;
        color: #95a5a6;
    }
    .quick-checklist-actions {
        display: flex;
        gap: 5px;
        flex-shrink: 0;
    }
    .quick-checklist-actions button {
        background: none;
        border: none;
        width: 36px;
        height: 36px;
        border-radius: 6px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.2s, color 0.2s;
        color: #7f8c8d;
    }
    .quick-checklist-actions button:hover {
        background: #f0f0f0;
        color: #2c3e50;
    }
    .quick-checklist-actions .delete-btn:hover {
        color: #e74c3c;
        background: #fde9e7;
    }
    .quick-checklist-actions .move-up-btn:hover,
    .quick-checklist-actions .move-down-btn:hover {
        color: #3498db;
        background: #e8f0fe;
    }
    .quick-checklist-input-group {
        display: flex;
        gap: 10px;
        margin-top: 1rem;
        flex-wrap: wrap;
    }
    .quick-checklist-input-group input {
        flex: 1;
        min-width: 200px;
        padding: 12px 20px;
        border: 2px solid #e0e0e0;
        border-radius: 50px;
        font-size: 1rem;
        transition: border-color 0.3s;
        background: white;
    }
    .quick-checklist-input-group input:focus {
        outline: none;
        border-color: #3498db;
    }
    .quick-checklist-add-btn {
        background: #000;
        color: white;
        border: none;
        border-radius: 20px;
        padding: 8px 30px;
        font-size: 1rem;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: background 0.3s;
        white-space: nowrap;
    }
    .quick-checklist-add-btn:hover {
        background: #000;
    }
@media (max-width: 600px) {
    .quick-checklist-section {
        padding: 1rem;
        margin: 0.5rem;        
        width: auto;
        max-width: 100%;
        box-sizing: border-box;
        border-radius: 20px;     
    }
    .quick-checklist-item {
        flex-wrap: wrap;
    }
    .quick-checklist-actions {
        margin-left: auto;
    }
    .quick-checklist-input-group {
        flex-direction: column;
    }
    .quick-checklist-add-btn {
        width: 100%;
        justify-content: center;
    }
}

.hidden { display: none !important; }
.title-input { /*   */ }