/* ===== GLOBAL STYLES ===== */
:root {
    /* Color Scheme */
    --color-primary: #9c27b0;
    --color-primary-light: #d05ce3;
    --color-primary-dark: #6a0080;
    --color-secondary: #2c2c2c;
    --color-dark: #121212;
    --color-light: #f5f5f5;
    --color-gray: #757575;
    --color-gray-light: #e0e0e0;
    --color-success: #4caf50;
    --color-warning: #ff9800;
    --color-error: #f44336;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    
    /* Container Width */
    --container-width: 1200px;
    --container-padding: 1.5rem;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-secondary);
    color: var(--color-secondary);
    line-height: 1.6;
    background-color: var(--color-light);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-dark);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--color-primary);
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
}

.btn-secondary:hover {
    background-color: var(--color-secondary);
    color: white;
    transform: translateY(-2px);
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
}

/* Section Styles */
.section {
    padding: var(--spacing-lg) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--color-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== HEADER & NAVIGATION ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
    padding: 1rem 0;
}

#header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 70px;
    transition: height var(--transition-normal);
}

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

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: var(--spacing-md);
}

.nav-links a {
    color: white;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-normal);
}

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

.nav-cta {
    background-color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
}

.nav-cta:hover {
    background-color: var(--color-primary-dark);
}

.nav-cta::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    transition: all var(--transition-normal);
}

/* ===== HERO SECTION ===== */
.hero-section {
    height: 100vh;
    min-height: 600px;
    background-image: url('images/hero-padel-court.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content h1 {
    margin-bottom: var(--spacing-sm);
    font-size: 3.5rem;
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: var(--spacing-md);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(45deg);
    animation: scroll-arrow 2s infinite;
}

@keyframes scroll-arrow {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-10px, -10px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(10px, 10px);
    }
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards;
}

.fade-in:nth-child(2) {
    animation-delay: 0.3s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.6s;
}

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

/* ===== PRODUCT SECTION ===== */
.product-section {
    background-color: white;
}

.product-configurator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.product-preview {
    position: relative;
}

.product-image-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-sm);
}

.product-image-container img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-slow);
}

.product-image-container:hover img {
    transform: scale(1.05);
}

.product-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.bestseller {
    background-color: var(--color-primary);
    color: white;
}

.limited {
    background-color: var(--color-warning);
    color: white;
}

.product-gallery {
    display: flex;
    gap: var(--spacing-sm);
}

.gallery-thumb {
    width: 80px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: all var(--transition-normal);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
    box-shadow: var(--shadow-sm);
}

.product-options {
    background-color: var(--color-light);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.product-options h3 {
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.option-group {
    margin-bottom: var(--spacing-md);
}

.option-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-primary);
}

.option-buttons {
    display: flex;
    gap: 10px;
}

.option-btn {
    flex: 1;
    padding: 10px;
    border: 2px solid var(--color-gray-light);
    border-radius: var(--border-radius-sm);
    background-color: white;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: var(--font-primary);
    font-weight: 500;
}

.option-btn:hover {
    border-color: var(--color-primary-light);
}

.option-btn.active {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: white;
}

.checkbox-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-label input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.price-summary {
    background-color: white;
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

.price-row.total {
    border-top: 1px solid var(--color-gray-light);
    margin-top: 5px;
    padding-top: 10px;
    font-weight: 700;
    font-size: 1.2rem;
}

.price-note {
    font-size: 0.8rem;
    color: var(--color-gray);
    text-align: right;
    margin-top: 5px;
}

.product-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.product-actions .btn {
    flex: 1;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    background-color: var(--color-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.benefit-card {
    background-color: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.benefit-card h3 {
    margin-bottom: var(--spacing-xs);
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--color-gray);
}

/* ROI Calculator Styles */
.roi-calculator {
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.roi-calculator h3 {
    color: var(--color-primary);
    margin-top: 0;
    text-align: center;
}

.roi-calculator > p {
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--color-secondary);
}

.calculator-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.calculator-section {
    background-color: var(--color-light);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-sm);
}

.calculator-section h4 {
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 8px;
}

.calculator-row {
    margin-bottom: var(--spacing-sm);
}

.calculator-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 0.9rem;
}

.calculator-row input[type="number"],
.calculator-row input[type="text"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--color-gray-light);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
}

.calculator-row input[type="range"] {
    width: 100%;
    margin: 10px 0;
}

.input-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--color-gray);
    margin-top: 3px;
}

.range-with-display {
    display: flex;
    align-items: center;
    gap: 10px;
}

.range-with-display input {
    flex: 1;
}

.range-with-display span {
    font-weight: 600;
    color: var(--color-primary);
    width: 50px;
    text-align: right;
}

.input-with-controls {
    display: flex;
    align-items: center;
}

.input-with-controls input {
    width: 60px;
    text-align: center;
    border-radius: 0;
    border: 1px solid var(--color-gray-light);
    padding: 8px 0;
}

.control-btn {
    background-color: var(--color-light);
    border: 1px solid var(--color-gray-light);
    width: 30px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    user-select: none;
}

.control-btn.minus {
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
}

.control-btn.plus {
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.control-btn:hover {
    background-color: var(--color-gray-light);
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.result-section {
    background-color: var(--color-light);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-sm);
}

.result-section h4 {
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 8px;
    text-align: center;
}

.result-section.highlight {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    color: white;
}

.result-section.highlight h4 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.result-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.result-section.highlight .result-row {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.result-row:last-child {
    border-bottom: none;
}

.result-row.total {
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 5px;
    padding-top: 10px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    border-bottom: none;
}

.result-section.highlight .result-row.total {
    border-top-color: rgba(255, 255, 255, 0.2);
}

/* Responsive styles */
@media (max-width: 992px) {
    .calculator-form {
        grid-template-columns: 1fr;
    }
    
    .calculator-results {
        grid-template-columns: 1fr;
    }
}
/* Comparison Table */
.comparison-table {
    margin-top: var(--spacing-lg);
}

.comparison-table h3 {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: var(--shadow-sm);
}

th, td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid var(--color-gray-light);
}

th {
    background-color: var(--color-secondary);
    color: white;
    font-family: var(--font-primary);
    font-weight: 600;
}

th:first-child, td:first-child {
    text-align: left;
}

tr:hover {
    background-color: rgba(156, 39, 176, 0.05);
}

td .fas {
    font-size: 1.2rem;
}

td .fa-check {
    color: var(--color-success);
}

td .fa-times {
    color: var(--color-error);
}

/* ===== STATS SECTION ===== */
.stats-section {
    background-color: var(--color-dark);
    color: white;
    padding: var(--spacing-lg) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--color-primary);
    display: block;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background-color: white;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

.testimonial-slide {
    width: 100%;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--spacing-md);
    background-color: var(--color-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.testimonial-image {
    height: 100%;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-quote {
    position: relative;
    padding: 0 var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.testimonial-quote .fa-quote-left {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--color-primary);
    opacity: 0.3;
    font-size: 1.5rem;
}

.testimonial-quote .fa-quote-right {
    position: absolute;
    bottom: 0;
    right: 0;
    color: var(--color-primary);
    opacity: 0.3;
    font-size: 1.5rem;
}

.testimonial-quote p {
    font-size: 1.1rem;
    font-style: italic;
}

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--color-gray);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
}

.testimonial-prev,
.testimonial-next {
    background-color: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--color-secondary);
    cursor: pointer;
    transition: color var(--transition-normal);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    color: var(--color-primary);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-gray-light);
    cursor: pointer;
    transition: background-color var(--transition-normal);
}

.dot.active {
    background-color: var(--color-primary);
}

/* Partners Section */
.partners-section {
    margin-top: var(--spacing-lg);
    text-align: center;
}

.partners-section h3 {
    margin-bottom: var(--spacing-md);
}

.partner-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.partner-logo {
    height: 60px;
    opacity: 0.7;
    transition: opacity var(--transition-normal);
}

.partner-logo:hover {
    opacity: 1;
}

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

/* ===== ABOUT SECTION ===== */
.about-section {
    background-color: var(--color-light);
}

.about-content {
    display: block;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-image {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-text h3 {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
    color: var(--color-primary);
}

.about-text h3:first-child {
    margin-top: 0;
}

.certifications {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.certification {
    text-align: center;
}

.certification img {
    height: 60px;
    margin: 0 auto var(--spacing-xs);
}

.certification span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background-color: white;
}

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

.faq-item {
    margin-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--color-gray-light);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    flex: 1;
}

.faq-toggle {
    font-size: 1.2rem;
    color: var(--color-primary);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: var(--spacing-sm);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background-color: var(--color-light);
}

.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
}

.contact-form-container {
    background-color: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-gray-light);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-secondary);
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 4px;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: var(--spacing-md);
}

.form-success {
    text-align: center;
}

.form-success.hidden {
    display: none;
}

.success-icon {
    font-size: 4rem;
    color: var(--color-success);
    margin-bottom: var(--spacing-sm);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.info-card {
    background-color: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.info-card h4 {
    margin-bottom: var(--spacing-xs);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: auto;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    color: white;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
}

/* ===== NEWSLETTER POPUP ===== */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(50px);
    transition: transform var(--transition-normal);
}

.popup.active .popup-content {
    transform: translateY(0);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--color-gray);
    transition: color var(--transition-normal);
}

.close-popup:hover {
    color: var(--color-primary);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-dark);
    color: white;
    padding: var(--spacing-sm);
    z-index: 1500;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-sm);
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-xs);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--color-dark);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.footer-logo img {
    height: 70px;
    margin-bottom: var(--spacing-sm);
}

.footer-logo p {
    font-size: 0.9rem;
    color: var(--color-gray-light);
}

.footer-column h4 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    position: relative;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: var(--color-gray-light);
    font-size: 0.9rem;
    transition: color var(--transition-normal);
}

.footer-column ul li a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--color-gray);
    margin: 0;
}

.payment-methods {
    display: flex;
    gap: var(--spacing-sm);
}

.payment-methods img {
    height: 30px;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 900;
    box-shadow: var(--shadow-md);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-5px);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: var(--spacing-md);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "logo logo"
            "col1 col2"
            "col3 col4";
        row-gap: var(--spacing-md);
    }
    
    .footer-logo {
        grid-area: logo;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .product-configurator {
        grid-template-columns: 1fr;
    }
    
    .testimonial-content {
        grid-template-columns: 1fr;
    }
    
    .testimonial-image {
        height: 300px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--color-dark);
        flex-direction: column;
        align-items: center;
        padding: var(--spacing-md) 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        margin: var(--spacing-xs) 0;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .calculator-form {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        grid-template-areas:
            "logo"
            "col1"
            "col2"
            "col3"
            "col4";
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

@media (max-width: 576px) {
    .section {
        padding: var(--spacing-md) 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .form-actions {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .back-to-top {
        right: 15px;
        bottom: 15px;
        width: 40px;
        height: 40px;
    }
}


/* Complete Solution Section */
.complete-solution-section {
    background-color: var(--color-light);
    padding: var(--spacing-lg) 0;
    position: relative;
    overflow: hidden;
}

.complete-solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(156, 39, 176, 0.1) 0%, rgba(156, 39, 176, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.complete-solution-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(156, 39, 176, 0.1) 0%, rgba(156, 39, 176, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.complete-solution-content {
    position: relative;
    z-index: 2;
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.solution-header {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    color: white;
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-lg);
    text-align: center;
    position: relative;
}

.solution-icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-sm);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.solution-icon i {
    font-size: 2.5rem;
    color: var(--color-primary);
}

.solution-header h2 {
    font-size: 2.2rem;
    margin: 0;
}

.solution-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
}

.solution-grid {
    display: block;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
}

.solution-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-md);
    background-color: var(--color-light);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-text {
    flex: 1;
}

.feature-text h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
}

.feature-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.solution-certificate {
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-card {
    background: linear-gradient(to bottom, var(--color-dark), #1a1a1a);
    color: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

.certificate-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.certificate-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.fip-badge {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fip-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.certificate-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--color-primary-light);
}

.certificate-card p {
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
    line-height: 1.5;
}

.certificate-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.certificate-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.certificate-features li i {
    color: var(--color-primary-light);
    font-size: 1rem;
}

.solution-text .btn {
    margin-top: var(--spacing-sm);
    padding: 12px 30px;
    font-size: 1rem;
}

/* Responsive styles */
@media (max-width: 992px) {
    .solution-grid {
        grid-template-columns: 1fr;
    }
    .solution-grid{
        padding: var(--spacing-md);
    }
    .solution-certificate {
        margin-top: var(--spacing-md);
    }
    
    .certificate-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .solution-header h2 {
        font-size: 1.8rem;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .certificate-header {
        flex-direction: column;
        text-align: center;
    }
}


/* END SOLUTOON */
.color-buttons {
    display: flex;
    gap: 10px;
}

.color-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex: 0 0 auto;
}

.color-btn::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.color-btn.active::after {
    border-color: var(--color-primary);
}

.color-btn.blue {
    background-color: #3498db;
}

.color-btn.red {
    background-color: #e74c3c;
}

.color-btn.green {
    background-color: #2ecc71;
}

/* Technical Specifications Section */
.specs-section {
    background-color: white;
    padding: var(--spacing-lg) 0;
}

.specs-container {
    background-color: var(--color-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.specs-header {
    background-color: var(--color-dark);
    color: white;
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.specs-header h3 {
    font-size: 2rem;
    margin: 0;
    letter-spacing: 2px;
}

.specs-badge {
    background-color: var(--color-primary);
    color: white;
    padding: 5px 15px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.specs-category {
    background-color: white;
    padding: var(--spacing-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.specs-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    gap: var(--spacing-sm);
}

.category-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.category-header h4 {
    margin: 0;
    color: var(--color-dark);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specs-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

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

.spec-name {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-bottom: 3px;
}

.spec-value {
    font-weight: 600;
    color: var(--color-secondary);
}

.specs-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: white;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.specs-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.specs-cta p {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    color: var(--color-secondary);
}

.specs-image {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.specs-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.specs-image:hover img {
    transform: scale(1.05);
}

/* Responsive styles */
@media (max-width: 992px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .specs-footer {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .specs-header {
        flex-direction: column;
        gap: var(--spacing-xs);
        text-align: center;
    }
}

/* Lead Capture Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: white;
    border-radius: var(--border-radius-lg);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: translateY(50px);
    transition: transform var(--transition-normal);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    color: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform var(--transition-normal);
}

.close-modal:hover {
    transform: rotate(90deg);
}

.modal-body {
    padding: var(--spacing-md);
}

.modal-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.modal-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-gray-light);
    color: var(--color-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 5px;
    transition: all var(--transition-normal);
}

.modal-step.active .step-number,
.modal-step.completed .step-number {
    background-color: var(--color-primary);
    color: white;
}

.step-label {
    font-size: 0.9rem;
    color: var(--color-gray);
    font-weight: 500;
}

.modal-step.active .step-label,
.modal-step.completed .step-label {
    color: var(--color-primary);
}

.progress-line {
    flex: 1;
    height: 3px;
    background-color: var(--color-gray-light);
    margin: 0 10px;
    position: relative;
    top: -20px;
    z-index: 0;
}

.progress-line.active {
    background-color: var(--color-primary);
}

.modal-step-content {
    display: none;
}

.modal-step-content.active {
    display: block;
}

.modal-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
}

.config-summary {
    background-color: var(--color-light);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.config-summary h4 {
    margin-top: 0;
    margin-bottom: var(--spacing-xs);
    color: var(--color-primary);
    font-size: 1.1rem;
}

.config-details {
    margin-bottom: var(--spacing-sm);
}

.config-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px dashed var(--color-gray-light);
}

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

.config-price {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.2rem;
    padding-top: var(--spacing-xs);
    border-top: 2px solid var(--color-gray-light);
}

.form-group {
    margin-bottom: var(--spacing-sm);
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 2px solid var(--color-gray-light);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    transition: border-color var(--transition-normal);
}

.form-group input:focus {
    border-color: var(--color-primary);
    outline: none;
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 38px;
    color: var(--color-gray);
}

.form-group input:focus + .input-icon {
    color: var(--color-primary);
}

.form-actions {
    margin-top: var(--spacing-md);
}

.form-actions .btn {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
}

.form-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: var(--spacing-sm);
    color: var(--color-gray);
    font-size: 0.9rem;
}

/* Success Step */
.success-animation {
    display: flex;
    justify-content: center;
    margin: var(--spacing-md) 0;
}

.checkmark-circle {
    width: 80px;
    height: 80px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.checkmark {
    border-radius: 5px;
}

.checkmark.draw:after {
    animation-delay: 100ms;
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-name: checkmark;
    transform: scaleX(-1) rotate(135deg);
    opacity: 1;
}

.checkmark:after {
    opacity: 0;
    height: 40px;
    width: 20px;
    transform-origin: left top;
    border-right: 5px solid white;
    border-top: 5px solid white;
    content: '';
    left: 25px;
    top: 40px;
    position: absolute;
}

@keyframes checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 1;
    }
    20% {
        height: 0;
        width: 20px;
        opacity: 1;
    }
    40% {
        height: 40px;
        width: 20px;
        opacity: 1;
    }
    100% {
        height: 40px;
        width: 20px;
        opacity: 1;
    }
}

.success-title {
    text-align: center;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.success-message {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.next-steps {
    background-color: var(--color-light);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.next-steps h4 {
    margin-top: 0;
    margin-bottom: var(--spacing-xs);
    color: var(--color-primary);
}

.next-steps ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next-steps li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.next-steps li i {
    color: var(--color-primary);
}

.success-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.success-actions .btn {
    flex: 1;
}

/* Legal Pages (Impressum, Datenschutz, etc.) */
.legal-section {
    padding: var(--spacing-lg) 0;
    background-color: white;
    margin-top: 80px;
}

.legal-section .section-header {
    margin-bottom: var(--spacing-md);
}

.legal-section h1 {
    margin-bottom: var(--spacing-xs);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-block {
    margin-bottom: var(--spacing-md);
}

.legal-block h2 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-gray-light);
    padding-bottom: 8px;
}

.legal-block p {
    margin-bottom: var(--spacing-xs);
    line-height: 1.6;
}

.legal-block a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.legal-block a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-block h2 {
        font-size: 1.2rem;
    }
}

/* Kallax Style Gallery Grid */

.gallery-showcase {
    width: 100%;
    padding: 0;
    margin: 60px 0;
    background-color: var(--color-light);
}

.gallery-header {
    text-align: center;
    padding: 30px 20px;
}

.gallery-header h2 {
    font-size: 2rem;
    margin: 0;
    color: var(--color-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 20px 40px;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    aspect-ratio: 4/3;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: translateY(-5px);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-image:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-header h2 {
        font-size: 1.5rem;
    }
}
/* Wenn desktop oder tablet groesse dann desktop-gallery class anzeigen, wenn kleiner dann mobile-gallery anzeigen */
@media (min-width: 768px) {
    .desktop-gallery {
        display: block;
    }
    
    .mobile-gallery {
        display: none;
    }
}
@media (max-width: 768px) {
    .desktop-gallery {
        display: none;
    }
    
    .mobile-gallery {
        display: block;
    }
}
.logoGratis{
   font-weight: bold;
    color: white;
    background-color: #f5c400;
    padding: 0.4rem 0.6rem;
    border-radius: 12px 30px 12px 30px;
    transform: skew(-2deg);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
    display: inline-block;
}
.logoWebdesign{
    font-weight: bold;
    color: var(--primary-color);
}