:root {
    
    --bg-body: #ffffff;
    --bg-alt: #f3f5f7;
    --bg-dark: #111111;
    
    --text-main: #1a1a1a;
    --text-light: #666666;
    --text-white: #ffffff;

    --accent: #fe6500; 
    --border-color: #e5e5e5;
    
    --font-main: 'Manrope', sans-serif;
    --font-serif: 'Playfair Display', serif;

    --container-width: 1300px;
    
    
    --section-spacing: 4rem;
    --section-spacing-small: 2.5rem; 
    --card-padding: 2.5rem;
    --grid-gap: 3rem;
    
    --ease: cubic-bezier(0.23, 1, 0.32, 1);
}


* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    background-color: #f3f5f7;
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-main);
}

h1 { font-size: clamp(3rem, 6vw, 5rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 1.5rem; }
h3 { font-size: 1.75rem; margin-bottom: 1rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.75rem; }

p { font-size: 1.05rem; color: var(--text-light); font-weight: 400; margin-bottom: 1.5rem; }
p:last-child { margin-bottom: 0; }

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: var(--container-width); margin: 0 auto; padding: 0 30px; }
.narrow-container { max-width: 800px; }
.section-py { padding-top: var(--section-spacing); padding-bottom: var(--section-spacing); }
.section-py-small { padding-top: var(--section-spacing-small); padding-bottom: var(--section-spacing-small); }
.bg-body { background: var(--bg-body); }
.bg-alt { background: var(--bg-alt); }


.site-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 25px 0; z-index: 1000;
    transition: all 0.4s var(--ease);
    background: transparent; color: var(--text-white);
}
.site-header.scrolled {
    background: rgba(255, 255, 255, 1);
    padding: 15px 0; color: var(--text-main);
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}



.site-header.header-inverse {
    background: rgba(255, 255, 255, 1);
    padding: 15px 0;
    color: var(--text-main);
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}
.site-header.header-inverse .logo {
    color: var(--text-main);
}
.site-header.header-inverse .main-nav a {
    color: var(--text-main);
}
.site-header.header-inverse .mobile-menu-btn {
    color: var(--text-main);
}

.site-header.header-inverse.scrolled {
    background: rgba(255, 255, 255, 0.98);
    color: var(--text-main);
    padding: 15px 0;
}


.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 800; font-size: 1.5rem; letter-spacing: -0.02em; text-transform: uppercase; z-index: 1002; position: relative; }


.main-nav ul { list-style: none; display: flex; gap: 40px; align-items: center; }
.main-nav li { position: relative; }
.main-nav a { font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; display: inline-flex; align-items: center; }
.main-nav a i { font-size: 0.7em; transition: transform 0.3s; margin-left: 8px; }
.main-nav li:hover > a i { transform: rotate(180deg); }

.main-nav-compact ul { gap: 20px; }
.main-nav-compact a { font-size: 0.75rem; letter-spacing: 0.03em; }
.main-nav-compact a i { font-size: 0.6em; margin-left: 5px; }

.dropdown-menu {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--text-white); color: var(--text-main);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 30px; border-radius: 4px;
    display: flex; flex-wrap: wrap; gap: 50px;
    opacity: 0; visibility: hidden;
    transition: all 0.3s var(--ease);
    white-space: nowrap; border-top: 3px solid var(--accent);
}
.dropdown-menu::before { content: ''; position: absolute; top: -20px; left: 0; width: 100%; height: 20px; background: transparent; }
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.dropdown-group { display: flex; flex-direction: column; gap: 10px; }
.dropdown-group strong { font-size: 0.8rem; text-transform: uppercase; color: var(--text-light); margin-bottom: 10px; letter-spacing: 1px; border-bottom: 1px solid #eee; padding-bottom: 8px; }
.dropdown-group a { text-transform: none; font-size: 1rem; padding: 5px 0; color: var(--text-main); font-weight: 500; }
.dropdown-group a:hover { color: var(--accent); padding-left: 5px; }

.dropdown-overview {
    flex: 0 0 100%;
    padding: 14px 20px;
    margin-bottom: 10px;
    background: var(--accent);
    color: var(--text-white);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 4px;
    text-align: center;
    transition: all 0.2s ease;
}
.dropdown-overview:hover {
    background: var(--bg-dark);
    color: var(--text-white);
}

.has-dropdown > a i { font-size: 0.6em; margin-left: 6px; }

.btn-header { border: 1px solid currentColor; padding: 12px 28px; border-radius: 50px; }
.btn-header:hover { background: var(--text-main); color: var(--text-white); border-color: transparent; }
.site-header.scrolled .btn-header:hover { background: var(--accent); color: var(--text-white); }
.site-header.header-inverse .btn-header:hover { background: var(--accent); color: var(--text-white); }

.btn-header-small { border: 1px solid currentColor; padding: 8px 16px; border-radius: 50px; font-size: 0.7rem; }
.btn-header-small:hover { background: var(--accent); color: var(--text-white); border-color: var(--accent); }
.main-nav-compact .btn-header { padding: 10px 20px; }

.dropdown-wide { min-width: 400px; }
.dropdown-narrow { min-width: auto; }
.dropdown-narrow .dropdown-group { gap: 5px; }

.dropdown-sub { margin: 12px 0; padding-left: 0; border-left: none; }
.dropdown-sub span {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-white);
    background: var(--text-main);
    padding: 4px 12px 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.dropdown-sub span::after {
    content: "▼";
    font-size: 0.5rem;
    margin-left: 6px;
    opacity: 0.7;
}
.dropdown-sub a {
    font-size: 0.9rem;
    padding: 5px 0 5px 5px;
    display: block;
    border-left: 2px solid transparent;
}
.dropdown-sub a:hover {
    color: var(--accent);
    border-left-color: var(--accent);
    padding-left: 10px;
}


.mobile-menu-btn { 
    display: none; flex-direction: column; justify-content: space-between; width: 30px; height: 20px; 
    background: none; border: none; cursor: pointer; z-index: 1002; position: relative;
}
.mobile-menu-btn .bar { 
    width: 100%; height: 2px; background-color: currentColor; transition: all 0.3s ease; 
}

.mobile-menu-btn.active { color: #1a1a1a; } 
.mobile-menu-btn.active .bar { background-color: #1a1a1a; }

.mobile-nav-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: #ffffff;
    z-index: 1001;
    display: flex; flex-direction: column;
    padding-top: 30px;
    opacity: 0; visibility: hidden;
    transition: all 0.4s ease;
    overflow: hidden;
    overscroll-behavior: contain;
    touch-action: pan-y;
}
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }

body.mobile-menu-open .site-header {
    pointer-events: none;
}

.mobile-menu-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 30px 20px 30px;
    flex-shrink: 0;
    background: #ffffff;
}
.mobile-logo { font-weight: 800; font-size: 1.5rem; letter-spacing: -0.02em; text-transform: uppercase; color: #1a1a1a; }
.mobile-close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #1a1a1a;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.mobile-close-btn:hover {
    transform: rotate(90deg);
}

.mobile-nav-content {
    display: flex; flex-direction: column;
    width: 100%; padding: 0 30px 50px 30px;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.mobile-link, .mobile-dropdown-header {
    font-size: 1.4rem; font-weight: 800; color: var(--text-main); 
    padding: 15px 0; border-bottom: 1px solid #eee;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer;
}
.mobile-link.highlight { color: var(--accent); border-bottom: none; margin-top: 20px; }

.mobile-dropdown-content {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
    background: #fafafa; padding: 0 20px;
}
.mobile-dropdown-content a {
    display: block; padding: 12px 0; color: var(--text-light); font-size: 1rem; font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
}
.mobile-dropdown-content strong {
    display: block; margin-bottom: 5px;
    font-size: 0.8rem; text-transform: uppercase; color: var(--text-main);
}
.mobile-dropdown-content strong:not(:first-of-type) {
    margin-top: 15px;
}
.mobile-dropdown-content a.mobile-overview-link {
    background: transparent;
    color: var(--text-main);
    padding: 15px 0;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}
.mobile-sub-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-white);
    background: var(--text-main);
    padding: 5px 14px 5px 12px;
    border-radius: 20px;
    margin-top: 15px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    border-left: none;
}
.mobile-sub-label::after {
    content: "▼";
    font-size: 0.5rem;
    margin-left: 6px;
    opacity: 0.7;
}
.mobile-dropdown-item.active .mobile-dropdown-content {
    max-height: 1000px; 
    padding-bottom: 20px;
}
.mobile-dropdown-item.active .mobile-dropdown-header i { transform: rotate(45deg); color: var(--accent); }



.hero { position: relative; height: 90vh; min-height: 700px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay-gradient { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.2) 100%); }
.hero-content { color: var(--text-white); position: relative; z-index: 1; margin-top: 80px; }
.hero-pre { color: #ffffff; opacity: 1; text-transform: uppercase; letter-spacing: 3px; font-size: 0.9rem; font-weight: 700; margin-bottom: 25px; text-shadow: 0 2px 15px rgba(0,0,0,0.8); }
.hero h1 { color: #ffffff; text-shadow: 0 2px 25px rgba(0,0,0,0.8); margin-bottom: 25px; }
.hero-divider { width: 80px; height: 4px; background: var(--accent); margin: 35px 0; }
.hero-desc { max-width: 600px; color: #f0f0f0; font-size: 1.25rem; margin-bottom: 50px; text-shadow: 0 1px 5px rgba(0,0,0,0.8); }
.btn-group { display: flex; gap: 25px; flex-wrap: wrap; }
.btn { padding: 18px 40px; border-radius: 0; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; cursor: pointer; display: inline-block; text-align: center; transition: all 0.3s; }
.btn-white { background: var(--text-white); color: var(--text-main); border: 2px solid var(--text-white); }
.btn-white:hover { background: transparent; color: var(--text-white); }
.btn-outline-white { border: 2px solid var(--text-white); color: var(--text-white); }
.btn-outline-white:hover { background: var(--text-white); color: var(--text-main); }
.btn-dark { background: var(--text-main); color: var(--text-white); border: 2px solid var(--text-main); }
.btn-dark:hover { background: var(--accent); border-color: var(--accent); }


.logo-strip { border-bottom: 1px solid var(--border-color); background: var(--bg-body); padding: 60px 0; overflow: hidden; }
.logo-scroll-container { overflow: hidden; width: 100%; }
.logo-scroll-track { display: flex; align-items: center; gap: 60px; animation: logoScroll 30s linear infinite; width: max-content; }
.logo-scroll-track img { max-height: 40px; width: auto; flex-shrink: 0; }
@keyframes logoScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }


.products-section { background-color: var(--bg-alt); }
.section-head { text-align: center; margin-bottom: 80px; }
.section-head h2 { margin-bottom: 20px; }
.label { display: block; font-size: 0.85rem; text-transform: uppercase; color: var(--accent); font-weight: 800; letter-spacing: 2px; margin-bottom: 15px; }

.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; }

.product-card {
    background: var(--bg-body); border-radius: 4px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05); overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }

.card-img { aspect-ratio: 4 / 3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .card-img img { transform: scale(1.05); }

.card-content { padding: 40px; flex-grow: 1; display: flex; flex-direction: column; }
.product-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.prod-sub { text-transform: uppercase; color: var(--text-light); font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 20px; font-weight: 700; }
.card-content p { font-size: 1rem; margin-bottom: 30px; flex-grow: 1; }
.link-btn { font-weight: 800; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1.5px; display: inline-flex; align-items: center; gap: 10px; border-bottom: 2px solid var(--accent); padding-bottom: 5px; color: var(--text-main); align-self: flex-start; }
.link-btn:hover { gap: 15px; color: var(--accent); }


.other-services-section { background-color: var(--bg-body); }
.service-icon-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); 
    gap: 60px; 
    text-align: center; 
    margin-top: 60px; 
}
.service-icon-item:hover { transform: translateY(-5px); }
.icon-bg { width: 90px; height: 90px; margin: 0 auto 30px auto; background-color: var(--bg-alt); border: 1px solid var(--border-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; color: var(--accent); transition: all 0.3s ease; }
.service-icon-item:hover .icon-bg { background-color: var(--accent); color: var(--text-white); transform: scale(1.1); }
.services-cta { text-align: center; margin-top: 50px; }


.info-cards-section { background: var(--bg-alt); }
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}
.info-card {
    background: var(--bg-body);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.info-card-icon {
    width: 70px;
    height: 70px;
    background: var(--accent);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}
.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}
.info-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.factory-section { background: var(--bg-body); overflow: hidden; }

@media (max-width: 1200px) {
    .info-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
    .info-card {
        padding: 30px 25px;
    }
}

.philosophy-section { background: var(--bg-alt); }
.grid-asym { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; overflow: hidden; }
.lead { font-size: 1.3rem; color: var(--text-main); font-weight: 600; margin-bottom: 30px; line-height: 1.5; }
.img-wrapper { border-radius: 4px; overflow: hidden; aspect-ratio: 3 / 4; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.floating-card { position: absolute; bottom: -40px; left: -40px; background: var(--text-white); padding: 40px; max-width: 320px; box-shadow: 0 20px 60px rgba(0,0,0,0.1); border-left: 4px solid var(--accent); }


.dark-section { background: var(--bg-dark); color: var(--text-white); }
.dark-section .section-head { margin-bottom: 60px; }
.dark-section .section-head h2 { color: var(--text-white); }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 60px; max-width: 1100px; margin-left: auto; margin-right: auto; }
.usp-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 25px; }
.usp-item { text-align: center; }

.features-section { background: var(--bg-body); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.feature-card {
    background: var(--bg-alt);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}
.feature-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
}
.feature-card h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.feature-card ul {
    list-style: none;
    text-align: left;
    font-size: 0.9rem;
    color: var(--text-light);
}
.feature-card li {
    padding: 5px 0;
    padding-left: 15px;
    position: relative;
}
.feature-card li::before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: 0;
}

.gallery-section { background: var(--bg-alt); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}
.gallery-grid img {
    border-radius: 8px;
    aspect-ratio: 1;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.gallery-grid img:hover {
    transform: scale(1.03);
}
.usp-item h4 { margin-bottom: 15px; font-size: 1.2rem; color: var(--text-white); }
.usp-item p { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.7; margin-bottom: 20px; }
.usp-link {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    border: 1px solid var(--accent);
    border-radius: 4px;
    transition: all 0.3s ease;
}
.usp-link:hover {
    background: var(--accent);
    color: var(--text-white);
}


.faq-section { background: var(--bg-alt); }
.minimal-faq {
    background: var(--bg-body);
    margin-bottom: 20px;
    border-left: 4px solid transparent;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.minimal-faq.active {
    border-left-color: var(--accent);
    background: var(--text-white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.minimal-faq:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 30px;
    background: none;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-main);
    color: var(--text-main);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.minimal-faq.active .faq-answer {
    max-height: 500px;
}
.faq-answer p {
    padding: 0 30px 30px 30px;
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}
.minimal-faq .plus {
    transition: transform 0.3s ease;
}
.minimal-faq.active .plus {
    transform: rotate(45deg);
}


.contact-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}
.contact-visual {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}
.contact-visual img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    max-width: 100%;
}
.visual-overlay { 
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 80px; 
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.1) 100%); 
    color: var(--text-white); z-index: 2; pointer-events: none;
}
.visual-overlay h2 { font-size: 3.5rem; margin-bottom: 15px; color: #ffffff; }
.visual-overlay p { font-size: 1.3rem; opacity: 1; color: #eeeeee; }

.contact-form-container { background: var(--bg-alt); display: flex; align-items: center; justify-content: center; padding: 80px; z-index: 1; }
.form-wrapper { max-width: 550px; width: 100%; background: var(--bg-body); padding: 50px; border-radius: 8px; box-shadow: 0 20px 50px rgba(0,0,0,0.05); }
.modern-form .input-group { position: relative; margin-bottom: 25px; }
.modern-form input, .modern-form textarea, .modern-form select { width: 100%; padding: 15px 0; font-size: 1rem; background: transparent; border: none; border-bottom: 1px solid #ccc; outline: none; font-family: var(--font-main); }
.checkbox-group { margin-bottom: 40px; display: flex; align-items: center; gap: 15px; }


.contact-centered-section {
    padding: 150px 20px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-centered-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}
.contact-centered-wrapper {
    max-width: 650px;
    width: 100%;
    background: rgba(255, 255, 255, 1);
    padding: 60px 70px;
    border-radius: 12px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    transform: translateY(-15px);
    border: 1px solid rgba(255,255,255,0.2);
}
.contact-centered-wrapper .label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    display: block;
    margin-bottom: 10px;
}
.contact-centered-wrapper h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--text-main);
    font-weight: 800;
    text-align: center;
}
.contact-centered-wrapper .modern-form .input-group {
    margin-bottom: 30px;
}
.contact-centered-wrapper .modern-form input,
.contact-centered-wrapper .modern-form textarea {
    padding: 18px 0;
    font-size: 1.05rem;
    border-bottom: 2px solid #ddd;
    transition: border-color 0.3s ease;
    color: var(--text-main);
}
.contact-centered-wrapper .modern-form input:focus,
.contact-centered-wrapper .modern-form textarea:focus {
    border-bottom-color: var(--accent);
}
.contact-centered-wrapper .modern-form label {
    position: absolute;
    left: 0;
    top: 18px;
    font-size: 1.05rem;
    color: var(--text-light);
    pointer-events: none;
    transition: all 0.3s ease;
}
.contact-centered-wrapper .modern-form input:focus + label,
.contact-centered-wrapper .modern-form textarea:focus + label,
.contact-centered-wrapper .modern-form input:not(:placeholder-shown) + label,
.contact-centered-wrapper .modern-form textarea:not(:placeholder-shown) + label {
    top: -8px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
}
.contact-centered-wrapper .btn-dark {
    margin-top: 20px;
    padding: 20px 45px;
    font-size: 1rem;
    letter-spacing: 1.5px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.contact-centered-wrapper .btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(254, 101, 0, 0.3);
}


.product-hero {
    padding: 120px 0 60px 0;
    background-color: #ffffff;
    background: #ffffff;
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}
.product-hero h1 { margin-bottom: 10px; }
.product-hero .hero-intro { font-size: 1.2rem; color: var(--text-light); max-width: 600px; margin-top: 15px; }
.product-detail-section { padding-top: 20px; background: var(--bg-alt); }

.products-listing { background-color: var(--bg-alt); }

.filter-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 12px 28px;
    border: 2px solid var(--border-color);
    background: var(--bg-body);
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
    border-radius: 4px;
}
.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-white);
}

.house-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 40px; }

.house-card {
    background: var(--bg-body);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.house-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.house-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.house-card-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.house-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.house-card:hover .house-card-img img {
    transform: scale(1.05);
}
.house-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: var(--text-white);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}
.house-card-content {
    padding: 30px;
}
.house-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-main);
}
.house-specs {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}
.spec-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.spec-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    font-weight: 600;
}
.spec-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
}
.house-price {
    margin-bottom: 25px;
}
.price-amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
}
.price-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.house-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 5px;
    transition: gap 0.3s ease, color 0.3s ease;
}
.house-card:hover .house-cta {
    gap: 15px;
    color: var(--accent);
}
.breadcrumbs { font-size: 0.9rem; color: var(--text-light); margin-bottom: 20px; }
.breadcrumbs a { text-decoration: underline; }
.breadcrumbs span { color: var(--text-main); font-weight: 600; }

.product-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; }
.product-gallery { position: sticky; top: 100px; align-self: start; }

.main-image-container {
    position: relative; width: 100%; aspect-ratio: 4/3;
    border-radius: 4px; overflow: hidden; margin-bottom: 20px;
    background: #eee; cursor: pointer;
}
.main-image-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.main-image-container:hover img { transform: scale(1.02); }

.zoom-icon {
    position: absolute; top: 20px; right: 20px;
    background: rgba(255, 255, 255, 0.8); color: var(--text-main);
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; pointer-events: none; box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}


.lightbox {
    display: none; position: fixed; z-index: 2000;
    padding-top: 50px; left: 0; top: 0; width: 100%; height: 100%;
    overflow: auto; background-color: rgba(0, 0, 0, 0.9);
    justify-content: center; align-items: center;
}
.lightbox-content { margin: auto; display: block; max-width: 90%; max-height: 90vh; border-radius: 4px; }
.close-lightbox { position: absolute; top: 30px; right: 35px; color: #f1f1f1; font-size: 40px; font-weight: bold; transition: 0.3s; cursor: pointer; }

.thumbnail-grid { display: flex; gap: 15px; }
.thumb {
    width: 100px; height: 80px; border-radius: 4px;
    overflow: hidden; cursor: pointer; opacity: 0.7;
    transition: opacity 0.3s, border 0.3s; border: 2px solid transparent;
}
.thumb:hover, .thumb.active { opacity: 1; border-color: var(--accent); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info h3 { font-size: 1.8rem; margin-top: 40px; margin-bottom: 20px; }
.price-tag {
    font-size: 2.5rem; font-weight: 800; color: var(--accent);
    margin-bottom: 30px; display: flex; flex-direction: column; line-height: 1;
}
.price-sub { font-size: 0.9rem; color: var(--text-light); font-weight: 500; margin-top: 5px; text-transform: uppercase; letter-spacing: 1px; }

.fact-box { background: var(--bg-alt); padding: 30px; border-radius: 4px; margin-bottom: 30px; }
.fact-row { display: flex; justify-content: space-between; border-bottom: 1px solid #e0e0e0; padding: 12px 0; }
.fact-row:last-child { border-bottom: none; }
.fact-row span { color: var(--text-light); }

.product-actions { margin-top: 40px; display: flex; flex-direction: column; gap: 15px; }
.btn-outline-dark {
    border: 2px solid var(--text-main); color: var(--text-main);
    padding: 18px 40px; font-weight: 700; text-transform: uppercase;
    font-size: 0.9rem; text-align: center;
}
.btn-outline-dark:hover { background: var(--text-main); color: var(--text-white); }

.framtid-intro { background: var(--bg-body); }
.framtid-intro-content { max-width: 800px; margin: 0 auto; text-align: center; }
.framtid-intro-content .lead { font-size: 1.4rem; color: var(--text-main); font-weight: 600; margin-bottom: 20px; }

.framtid-features { background: var(--bg-alt); }
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.feature-block:last-child { margin-bottom: 0; }
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }
.feature-text h2 { font-size: 1.8rem; margin-bottom: 25px; }
.feature-list {
    list-style: none;
    padding: 0;
}
.feature-list > li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 1rem;
}
.feature-list > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}
.feature-list ul {
    list-style: disc;
    margin-left: 20px;
    margin-top: 8px;
}
.feature-list ul li {
    color: var(--text-light);
    margin-bottom: 5px;
}
.feature-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.framtid-checklist { background: var(--bg-dark); color: var(--text-white); }
.framtid-checklist .section-head h2 { color: var(--text-white); }
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}
.checklist-item i {
    color: var(--accent);
    margin-top: 4px;
    flex-shrink: 0;
}

.framtid-gallery { background: var(--bg-body); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

.framtid-cta { background: var(--bg-alt); }
.cta-box {
    background: var(--bg-body);
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}
.cta-text {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .feature-block { grid-template-columns: 1fr; gap: 40px; }
    .feature-block.reverse { direction: ltr; }
    .checklist-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
    .cta-box { padding: 30px 20px; }
}

.grund-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.content-section {
    background: var(--bg-alt);
}
.content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}
.content-text h3 {
    margin-top: 30px;
}
.content-text h3:first-child {
    margin-top: 0;
}
.content-text ul,
.content-text ol {
    margin-bottom: 20px;
    padding-left: 20px;
}
.content-text ul {
    list-style: disc;
}
.content-text ol {
    list-style: decimal;
}
.content-text li {
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.6;
}
.content-text .cta-buttons {
    justify-content: flex-start;
    margin-top: 30px;
}
.content-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}
.content-images img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.checklist-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
}
.checklist-two-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.checklist-two-col li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}
.checklist-two-col li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.cta-text-box {
    background: var(--bg-alt);
    padding: 40px 50px;
    border-radius: 8px;
    text-align: center;
}
.cta-text-box p {
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .content-images {
        position: static;
    }
    .checklist-two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cta-text-box {
        padding: 30px 25px;
    }
}

.link-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.link-card {
    background: rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
}
.link-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}
.link-card-static {
    cursor: default;
}
.link-card-static:hover {
    transform: none;
}
.link-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px auto;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-white);
}
.link-card h4 {
    color: var(--text-white);
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.link-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}
.link-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.link-card:hover .link-card-cta {
    gap: 12px;
}

.faq-category {
    margin-bottom: 60px;
}
.faq-category:last-child {
    margin-bottom: 0;
}
.faq-category-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.contact-page-section {
    background: var(--bg-alt);
}
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.contact-info-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-info-text h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.contact-info-text p {
    color: var(--text-light);
    margin-bottom: 5px;
    font-size: 1rem;
}
.contact-info-text a {
    color: var(--text-light);
    transition: color 0.3s ease;
}
.contact-info-text a:hover {
    color: var(--accent);
}
.contact-form-col {
    background: var(--bg-body);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    min-width: 320px;
}
.contact-page-form .input-group {
    position: relative;
    margin-bottom: 30px;
}
.contact-page-form input,
.contact-page-form textarea,
.contact-page-form select {
    width: 100%;
    padding: 18px 0;
    font-size: 1rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid #ddd;
    outline: none;
    font-family: var(--font-main);
    color: var(--text-main);
    transition: border-color 0.3s ease;
}
.contact-page-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}
.contact-page-form input:focus,
.contact-page-form textarea:focus,
.contact-page-form select:focus {
    border-bottom-color: var(--accent);
}
.contact-page-form label {
    position: absolute;
    left: 0;
    top: 18px;
    font-size: 1rem;
    color: var(--text-light);
    pointer-events: none;
    transition: all 0.3s ease;
}
.contact-page-form input:focus + label,
.contact-page-form textarea:focus + label,
.contact-page-form input:not(:placeholder-shown) + label,
.contact-page-form textarea:not(:placeholder-shown) + label {
    top: -8px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
}
.contact-page-form select + label {
    top: -8px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
}
.contact-page-form .btn-dark {
    margin-top: 10px;
}
.contact-info-heading {
    font-size: 2rem;
    margin-bottom: 10px;
}
.contact-info-intro {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.map-section {
    width: 100%;
}
.map-container {
    width: 100%;
    height: 450px;
    background: #e0e0e0;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.services-grid-section {
    background: var(--bg-alt);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.service-icon {
    width: 70px;
    height: 70px;
    background: var(--accent);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 25px;
}
.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}
.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .link-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .contact-form-col {
        padding: 30px 25px;
    }
}

.ref-gallery-section {
    background: var(--bg-alt);
}
.ref-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.ref-item {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}
.ref-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
}
.ref-item:hover::after {
    background: rgba(0,0,0,0.2);
}
.ref-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.ref-item:hover img {
    transform: scale(1.05);
}
.ref-hidden {
    display: none;
}
.load-more-wrapper {
    text-align: center;
    margin-top: 40px;
}
.load-more-wrapper .btn {
    min-width: 250px;
}

.ref-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.ref-lightbox.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 15px;
    transition: all 0.3s ease;
    z-index: 10;
}
.lightbox-close {
    top: 20px;
    right: 20px;
}
.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--accent);
}
.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

@media (max-width: 1024px) {
    .ref-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .ref-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5rem;
        padding: 10px;
    }
    .lightbox-prev {
        left: 10px;
    }
    .lightbox-next {
        right: 10px;
    }
}

.grund-intro { background: var(--bg-body); }
.grund-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.grund-intro-text .lead {
    font-size: 1.3rem;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.5;
}
.grund-intro-text h2 {
    margin-top: 30px;
}
.grund-intro-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.grund-intro-image img {
    width: 100%;
    height: auto;
}

.grund-features { background: var(--bg-alt); }

.grund-steps { background: var(--bg-body); }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.step-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-alt);
    border-radius: 8px;
    position: relative;
}
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 20px;
}
.step-item h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.step-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}
.steps-note {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: var(--text-light);
}

.grund-gallery { background: var(--bg-alt); }

.grund-benefits { background: var(--bg-alt); }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.benefit-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-body);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    background: var(--accent);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}
.benefit-item h4 {
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
}

.grund-service { background: var(--bg-body); }
.service-box {
    background: var(--bg-alt);
    padding: 50px;
    border-radius: 8px;
    text-align: center;
}
.service-box p {
    font-size: 1.1rem;
    line-height: 1.7;
}
.service-box .highlight-text {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.2rem;
    margin-top: 20px;
}

.grund-cta { background: var(--bg-alt); }
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-buttons .btn i {
    margin-left: 8px;
}

@media (max-width: 1024px) {
    .grund-intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .service-box { padding: 30px 20px; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; }
}

.site-footer-final { background: var(--bg-dark); color: var(--text-white); padding-top: 100px; padding-bottom: 50px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 60px; margin-bottom: 80px; }
.footer-logo { font-size: 1.8rem; font-weight: 800; margin-bottom: 25px; color: #ffffff;  }
.brand-col p { color: rgba(255,255,255,0.6); font-size: 1rem; margin-bottom: 30px; }
.links-col h4, .contact-col h4 { font-size: 0.9rem; color: #ffffff; margin-bottom: 30px; text-transform: uppercase; letter-spacing: 1px; }
.links-col a { color: rgba(255,255,255,0.6); display: block; margin-bottom: 10px; font-size: 0.95rem; }
.links-col a:hover { color: var(--text-white); }
.contact-col p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; font-size: 0.9rem; color: rgba(255,255,255,0.4); text-align: center; }
.social-links { margin-top: 20px; }
.social-links a { margin-right: 15px; font-size: 1.2rem; color: white; }


@media (max-width: 1024px) {
    :root { --section-spacing: 5rem; }
    .grid-asym, .contact-split-section { grid-template-columns: 1fr; }
    .contact-visual { height: 500px; min-height: 500px; width: 100%; overflow: hidden; }
    .contact-visual img { position: absolute; max-width: 100%; }
    .visual-overlay { padding: 40px; position: absolute; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); width: 100%; }
    .visual-overlay h2 { font-size: 2.5rem; }
    .contact-form-container { padding: 60px 20px; }
    .contact-centered-section {
        padding: 100px 20px;
        background-attachment: scroll;
    }
    .contact-centered-wrapper {
        padding: 50px 40px;
        transform: translateY(-10px);
        border-radius: 10px;
    }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: flex; color: var(--text-white); }
    .mobile-menu-btn.active { color: #1a1a1a; }

    .site-header.header-inverse .mobile-menu-btn { color: var(--text-main); }
    .site-header.scrolled .mobile-menu-btn { color: var(--text-main); }
    .desktop-only { display: none; }
    
    .hero h1 { font-size: 2.5rem; }
    .btn-group { flex-direction: column; }
    .btn { width: 100%; }

    .logo-scroll-track { gap: 40px; animation-duration: 20s; }
    .logo-scroll-track img { max-height: 30px; }

    .service-icon-grid {
        display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
        gap: 20px; padding-bottom: 30px;
        justify-content: flex-start; padding-left: 20px;
    }
    .service-icon-item { min-width: 150px; scroll-snap-align: center; }

    .usp-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 30px;
        justify-content: flex-start;
        padding-left: 15px;
        padding-right: 15px;
    }
    .usp-item {
        min-width: 85%;
        max-width: 85%;
        flex-shrink: 0;
        scroll-snap-align: center;
        background: rgba(255,255,255,0.05);
        padding: 35px 25px;
        border-radius: 8px;
    }
    .usp-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .products-grid { grid-template-columns: 1fr; }
    .floating-card { position: relative; left: 0; bottom: 0; width: 100%; max-width: 100%; margin-top: 20px; }

    .contact-split-section { display: block; }
    .contact-visual { height: 350px; overflow: hidden; position: relative; }
    .contact-visual img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
    .visual-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 20px;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
        box-sizing: border-box;
    }
    .visual-overlay h2 { font-size: 1.5rem; margin-bottom: 8px; line-height: 1.3; }
    .visual-overlay p { font-size: 0.95rem; margin: 0; }
    .contact-form-container { padding: 40px 20px; }
    .form-wrapper { padding: 30px 20px; }

    .contact-centered-section {
        padding: 80px 15px;
        background-attachment: scroll;
    }
    .contact-centered-wrapper {
        padding: 40px 30px;
        transform: translateY(0);
    }
    .contact-centered-wrapper h3 {
        font-size: 1.8rem;
    }
    .contact-centered-wrapper .btn-dark {
        padding: 18px 35px;
    }

    .product-layout { grid-template-columns: 1fr; gap: 40px; }
    .product-gallery { position: static; max-width: 100%; overflow: hidden; }
    .main-image-container { max-width: 100%; }
    .thumbnail-grid { flex-wrap: wrap; }
}

.contact-team {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.contact-team h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.team-member {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.team-member img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.team-member-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member-placeholder i {
    font-size: 1.2rem;
    color: #bbb;
}

.team-member-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.team-member-info strong {
    font-size: 0.95rem;
    color: var(--text-main);
}

.team-member-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.team-member-info a {
    font-size: 0.8rem;
    color: var(--accent);
}

.team-member-info a:hover {
    text-decoration: underline;
}

#contact-form {
    max-width: 100%;
    overflow: hidden;
}

#contact-form .g-recaptcha {
    transform-origin: left center;
    max-width: 100%;
}

@media (max-width: 400px) {
    #contact-form .g-recaptcha {
        transform: scale(0.85);
    }
}

@media (max-width: 340px) {
    #contact-form .g-recaptcha {
        transform: scale(0.75);
    }
}

.contact-page-grid > div {
    min-width: 0;
    max-width: 100%;
}