:root {
    --brand-teal: #008B9C;
    --brand-teal-dark: #054f58;
    --brand-teal-light: #00d0e6;
    --bg-dark: #04090b; 
    --bg-input: #071518;
    --text-main: #e0e0e0;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }

body { background-color: var(--bg-dark); color: var(--text-main); overflow-x: hidden; position: relative; }

.animated-bg {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background-color: var(--bg-dark); z-index: -2; pointer-events: none; overflow: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 176, 199, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 139, 156, 0.08) 0%, transparent 50%);
    background-size: 200% 200%;
    animation: smoothGradient 30s infinite alternate ease-in-out;
}
@keyframes smoothGradient { 0% { background-position: 0% 0%; } 100% { background-position: 100% 100%; } }

.glass-box, .glass-block, .glass-nav {
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%); 
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.04); 
    border-top: 1px solid rgba(255,255,255,0.12); 
    border-left: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px; box-shadow: 0 12px 30px 0 rgba(0, 0, 0, 0.4);
}

.glow-on-hover { transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease; }
.glow-on-hover:hover { transform: translateY(-5px); border-color: rgba(0, 176, 199, 0.4); box-shadow: 0 15px 40px -10px rgba(0, 176, 199, 0.3); }

.sub-badge {
    background: rgba(0, 139, 156, 0.1); border: 1px solid rgba(0, 208, 230, 0.3); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    color: var(--brand-teal-light); padding: 8px 20px; border-radius: 30px; font-weight: 500; display: inline-block; margin-bottom: 30px;
}

.btn-poppins { background: var(--brand-teal); color: #fff; border: none; padding: 16px 40px; font-weight: 600; font-size: 1.1rem; border-radius: 6px; cursor: pointer; transition: 0.3s; }
.btn-poppins:hover { background: var(--brand-teal-light); box-shadow: 0 0 20px rgba(0, 176, 199, 0.4); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.15); padding: 16px 38px; font-weight: 600; font-size: 1.1rem; border-radius: 6px; cursor: pointer; transition: 0.3s; }
.btn-outline:hover { border-color: var(--brand-teal-light); color: var(--brand-teal-light); }
.hero-actions { display: flex; gap: 20px; justify-content: center; margin-top: 40px; }

.lang-switcher { position: fixed; top: 30px; right: 4vw; display: flex; gap: 10px; padding: 10px 20px; border-radius: 30px; z-index: 1000; font-size: 0.85rem; font-weight: 600;}
.lang-switcher a { color: #888; text-decoration: none; transition: 0.3s; }
.lang-switcher a:hover { color: #fff; }
.lang-switcher a.active { color: var(--brand-teal-light); text-shadow: 0 0 8px var(--brand-teal); }

.right-scroll-nav { position: fixed; right: 30px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 20px; z-index: 1000; align-items: center;}
.right-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.2); transition: 0.1s; cursor: pointer; }
.right-dot.envelope { background: transparent; width: 22px; height: 22px; border-radius: 0; display: flex; align-items: center; justify-content: center; margin-top: 5px;}
.mobile-scroll-nav { display: none; }

.main-layout { position: relative; width: 100%; max-width: 100vw; display: flex; flex-direction: column; }

.global-axis-container { position: absolute; top: 0; bottom: 0; left: 40px; width: 1px; z-index: 1; }
.axis-bg-line { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.06); }
.axis-laser-line { position: absolute; top: 0; left: 0; width: 100%; height: 0%; background: var(--brand-teal-light); box-shadow: 0 0 8px var(--brand-teal-light); }

.content-wrapper { padding-left: 80px; padding-right: 80px; z-index: 10; position: relative; width: 100%; }
.content-section { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 120px 0; width: 100%; }

.section-inner { max-width: 1000px; width: 100%; margin: 0 auto; position: relative; }
.centered-text { text-align: center; }
.section-desc { margin-bottom: 50px; }

.hero-title { font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 800; color: #fff; margin-bottom: 30px; line-height: 1.2; }
.hero-line-2 { display: block; color: var(--brand-teal-light); opacity: 0; transform: translateY(20px); }
.hero-text { font-size: 1.15rem; color: #aaa; max-width: 800px; line-height: 1.7; margin: 0 auto; }
.section-title { font-size: 2.6rem; font-weight: 700; margin-bottom: 40px; color: #fff; }

.glass-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; width: 100%; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; width: 100%; }
.glass-block { padding: 40px; text-align: left; }
.icon-placeholder { font-size: 2.5rem; font-weight: 800; color: rgba(255,255,255,0.05); margin-bottom: 15px; }
.step-circle { width: 50px; height: 50px; background: rgba(0, 176, 199, 0.15); color: var(--brand-teal-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: bold; margin: 0 auto 20px auto; border: 1px solid var(--brand-teal); }
.glass-block h3 { font-size: 1.3rem; color: #fff; margin-bottom: 15px; line-height: 1.4; }
.glass-block p { color: #a0a0a0; font-size: 0.95rem; line-height: 1.6; }

.image-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; width: 100%; }
.img-placeholder { position: relative; border-radius: 12px; aspect-ratio: 16/9; display: flex; align-items: flex-end; justify-content: flex-start; padding: 30px; overflow: hidden; text-align: left; }
.wide-img { grid-column: span 2; aspect-ratio: 21/9 !important; }
.gallery-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.8s ease; filter: grayscale(30%) brightness(0.65) contrast(1.1); }
.gallery-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; background: linear-gradient(to top, rgba(4,9,11,0.95) 0%, rgba(0,176,199,0.15) 50%, rgba(4,9,11,0.4) 100%); transition: background 0.5s ease; pointer-events: none; }
.img-placeholder:hover .gallery-img { transform: scale(1.06); filter: grayscale(0%) brightness(0.9) contrast(1.1); }
.img-placeholder:hover .gallery-overlay { background: linear-gradient(to top, rgba(4,9,11,0.85) 0%, rgba(0,176,199,0.35) 50%, rgba(4,9,11,0.1) 100%); }

.reviews-container { display: flex; gap: 30px; width: 100%; }
.review-card { flex: 1; padding: 40px; text-align: left; }
.stars { color: #ffb800; font-size: 1.5rem; margin-bottom: 15px; letter-spacing: 2px; }
.review-text { font-style: italic; color: #ccc; margin-bottom: 20px; line-height: 1.6; }
.review-author { font-weight: 600; color: var(--brand-teal-light); font-size: 0.95rem; }

.claim-box { padding: 60px; border-color: var(--brand-teal-light); }
.claim-title { font-size: 2.2rem; color: #fff; margin-bottom: 20px; line-height: 1.3; }
.claim-text { font-size: 1.1rem; color: #ccc; max-width: 800px; margin: 0 auto; line-height: 1.7;}

.about-container { padding: 50px; text-align: left; }
.about-text-wrapper { position: relative; transition: max-height 0.8s ease; overflow: hidden; max-height: 1500px; }
.about-text-wrapper p { font-size: 1.15rem; color: #ccc; line-height: 1.8; margin-bottom: 20px; }
.about-text-wrapper p:last-child { margin-bottom: 0; }
.btn-read-more-wrapper { text-align: center; margin-top: 20px; display: none; }
.btn-read-more { background: transparent; border: 1px solid var(--brand-teal-light); color: var(--brand-teal-light); padding: 8px 30px; border-radius: 6px; cursor: pointer; font-family: 'Poppins'; font-weight: 500; transition: 0.3s; }
.btn-read-more:hover { background: rgba(0, 208, 230, 0.1); }
.about-text-wrapper.mobile-collapsed { max-height: 150px; -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%); mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%); }

.faq-container { width: 100%; display: flex; flex-direction: column; gap: 15px; }
.faq-item { padding: 25px 30px; cursor: pointer; text-align: left; }
.faq-header { font-size: 1.15rem; font-weight: 600; display: flex; justify-content: space-between; align-items: center; color: #fff; }
.faq-icon { color: var(--brand-teal-light); font-size: 1.5rem; transition: transform 0.4s ease; }
.faq-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s ease; }
.faq-body-inner { overflow: hidden; }
.faq-body-inner p { margin-top: 15px; color: #aaa; padding-top: 15px; border-top: 1px solid rgba(255,255,255,0.05); line-height: 1.6; }
.faq-item.active .faq-body { grid-template-rows: 1fr; }
.faq-item.active .faq-icon { transform: rotate(45deg); color: #fff; }

.form-container { width: 100%; padding: 60px; transition: all 0.5s ease; text-align: left; position: relative; overflow: hidden; }
.b2b-form { display: flex; flex-direction: column; gap: 25px; transition: filter 0.5s ease, opacity 0.5s ease; position: relative; z-index: 1; }
.b2b-form.blurred { filter: blur(15px); opacity: 0.1; pointer-events: none; }

.form-row { display: flex; gap: 25px; }
.full-width { flex-direction: column; }
.input-group { display: flex; flex-direction: column; flex: 1; gap: 10px; }
.input-group label { font-size: 0.9rem; color: #ccc; font-weight: 500; }
input[type="text"], input[type="email"], input[type="tel"], select, textarea { width: 100%; background-color: var(--bg-input); border: 1px solid rgba(255,255,255,0.08); color: #fff; padding: 16px 20px; border-radius: 8px; font-size: 1rem; transition: 0.3s; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--brand-teal-light); box-shadow: 0 0 15px rgba(0,176,199,0.3); }
textarea { resize: vertical; }

.checkbox-row { display: flex; flex-direction: column; gap: 12px; }
.custom-checkbox { display: flex; align-items: center; cursor: pointer; font-size: 0.95rem; color: #ddd; user-select: none; position: relative; padding-left: 35px; }
.custom-checkbox input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.checkmark { position: absolute; top: 0; left: 0; height: 22px; width: 22px; background-color: var(--bg-input); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; transition: background-color 0.2s ease; }
.custom-checkbox input[type="radio"] ~ .checkmark { border-radius: 50%; }
.custom-checkbox input:checked ~ .checkmark { background-color: var(--brand-teal); border-color: var(--brand-teal); }
.small-text { font-size: 0.85rem; color: #888; line-height: 1.5; }
.submit-btn { width: 100%; padding: 22px; font-size: 1.2rem; border-radius: 8px; margin-top: 15px; text-transform: uppercase; letter-spacing: 1px; }

.success-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.5s ease; z-index: 10; text-align: center; padding: 20px; }
.success-overlay.active { opacity: 1; pointer-events: auto; }
.success-overlay h3 { color: #fff; font-size: 3rem; margin-bottom: 15px; text-shadow: 0 0 20px rgba(40,167,69,0.8); }
.success-overlay p { color: #fff; font-size: 1.15rem; font-weight: 500; }
.form-success-state { border-color: #28a745 !important; box-shadow: 0 0 60px rgba(40, 167, 69, 0.3) !important; }

.modal-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.8); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); display: flex; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; z-index: 2000; }
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-content { width: 90%; max-width: 800px; max-height: 80vh; overflow-y: auto; padding: 50px; position: relative; transform: translateY(30px); transition: transform 0.3s ease; background-color: var(--bg-dark); }
.modal-overlay.active .modal-content { transform: translateY(0); }
.close-modal { position: absolute; top: 15px; right: 25px; font-size: 2.5rem; font-weight: 300; color: #fff; cursor: pointer; transition: 0.3s; }
.close-modal:hover { color: var(--brand-teal-light); }
.modal-text p { color: #ccc; line-height: 1.7; margin-bottom: 20px; font-size: 0.95rem; }

.site-footer { background-color: rgba(4, 10, 12, 0.98); border-top: 1px solid rgba(255,255,255,0.05); padding: 60px 5vw 30px; position: relative; z-index: 100; width: 100%; }
.footer-inner { max-width: 1000px; margin: 0 auto; width: 100%; display: flex; flex-direction: column; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 30px; }
.footer-col h4 { font-size: 1.3rem; margin-bottom: 5px; color: #fff; }
.footer-col p { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: flex-end; }
.links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.95rem; transition: color 0.3s ease; }
.links a:hover { color: var(--brand-teal-light); text-decoration: underline; }
.footer-bottom-bar { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.03); }
.footer-discreet-link { color: #666; font-size: 0.9rem; text-decoration: none; transition: 0.3s; font-weight: 500; }
.footer-discreet-link:hover { color: var(--brand-teal-light); }

@media (max-width: 1100px) { .process-grid { grid-template-columns: 1fr; } }

@media (max-width: 992px) {
    .global-axis-container { display: none !important; }
    .right-scroll-nav { display: none !important; }
    
    .content-wrapper { padding: 0 5%; width: 100%; margin-left: 0; }
    .content-section { min-height: auto; padding: 80px 0; }
    .section-inner { padding: 0; max-width: 100%; }
    .section-desc { margin-bottom: 30px; }
    
    .form-row:not(.full-width) { flex-direction: column; gap: 15px; }
    .reviews-container { flex-direction: column; }
    .glass-grid, .image-grid { grid-template-columns: 1fr; }
    .wide-img { grid-column: span 1; aspect-ratio: 16/9 !important; }
    
    .lang-switcher { top: 20px; right: 5vw; }
    .mobile-scroll-nav { display: flex; position: fixed; top: 20px; left: 50%; transform: translateX(-50%); flex-direction: row; gap: 12px; z-index: 1000; padding: 12px 20px; border-radius: 30px; }
    .scroll-dot { width: 10px; height: 10px; border: 2px solid rgba(255,255,255,0.3); border-radius: 50%; transition: 0.3s; cursor: pointer; }
    .scroll-dot.active { background: var(--brand-teal); border-color: var(--brand-teal); transform: scale(1.4); }
    
    .btn-read-more-wrapper { display: block; }
    
    .footer-top { flex-direction: column; gap: 40px; text-align: center; align-items: center; }
    .footer-bottom-bar { flex-direction: column; gap: 20px; text-align: center; }
    .links { justify-content: center; flex-wrap: wrap; }
    .form-container { padding: 40px 20px; }
    .about-container { padding: 40px 20px; }
    .claim-box { padding: 40px 20px; }
    .claim-title { font-size: 2rem; }
}

@media (max-width: 576px) {
    .content-section { padding: 60px 0; }
    .hero-title { font-size: 2.8rem; margin-bottom: 20px; }
    .hero-line-2 { transform: translateY(10px); font-size: 2rem; }
    .glass-block { padding: 30px 20px; }
    .hero-actions { flex-direction: column; width: 100%; gap: 15px; }
    .btn-poppins, .btn-outline { width: 100%; text-align: center; }
    .section-title { font-size: 2.1rem; margin-bottom: 25px; }
    .lang-switcher { padding: 8px 12px; font-size: 0.8rem; top: 15px; right: 15px;}
    .mobile-scroll-nav { top: 15px; padding: 10px 15px; gap: 8px; }
    .success-overlay h3 { font-size: 2rem; }
    .claim-title { font-size: 1.8rem; }
}