@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter-VariableFont_opsz\,wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url(../fonts/PlayfairDisplay-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
--bg-primary: #FDFBF7;
--bg-secondary: #F5F1E8;
--text-primary: #3E2723;
--text-secondary: #5D4037;
--accent: #8D6E63;
--accent-hover: #6D4C41;
--white: #FFFFFF;
--border: #D7CCC8;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background-color: var(--bg-primary);
color: var(--text-primary);
line-height: 1.6;
display: flex;
flex-direction: column;
min-height: 100vh;
}
h1, h2, h3, h4 {
font-family: 'Playfair Display', serif;
color: var(--text-primary);
line-height: 1.2;
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
}
.header {
position: sticky;
top: 0;
z-index: 1000;
background: rgba(253, 251, 247, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(141, 110, 99, 0.1);
padding: 16px 0;
}
.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
}
.logo {
display: flex;
align-items: center;
gap: 12px;
text-decoration: none;
}

.logo a {
display: flex;
align-items: center;
gap: 12px;
text-decoration: none;
color: var(--text-primary);
}

.logo-line1 {
font-family: 'Playfair Display', serif;
font-size: 1.5rem;
font-weight: 700;
color: var(--text-primary);
text-decoration: none;
}

.logo img {
width: 50px;
height: 50px;
object-fit: cover;
border-radius: 50%;
flex-shrink: 0;
}
.nav-list {
display: flex;
list-style: none;
gap: 24px;
}
.nav-list a {
text-decoration: none;
color: var(--text-secondary);
font-weight: 500;
transition: color 0.3s;
}
.nav-list a:hover {
color: var(--accent);
}
.mandatory-notice {
font-size: 0.8rem;
color: var(--text-secondary);
background: var(--bg-secondary);
padding: 4px 12px;
border-radius: 4px;
white-space: nowrap;
}
.mobile-menu-toggle {
display: none;
flex-direction: column;
gap: 4px;
background: none;
border: none;
cursor: pointer;
padding: 8px;
}
.mobile-menu-toggle span {
width: 24px;
height: 2px;
background-color: var(--text-primary);
transition: 0.3s;
}
.hero {
min-height: 100vh;
position: relative;
display: flex;
align-items: center;
overflow: hidden;
}
.hero img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
}
.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to right, rgba(253, 251, 247, 0.95), rgba(253, 251, 247, 0.7));
display: flex;
align-items: center;
}
.hero-content {
max-width: 600px;
}
.hero-content h1 {
font-size: clamp(2.5rem, 5vw, 3.5rem);
margin-bottom: 16px;
}
.hero-subtitle {
font-size: 1.2rem;
color: var(--text-secondary);
margin-bottom: 32px;
}
.hero-benefits {
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 32px;
}
.hero-benefits span {
font-weight: 500;
color: var(--text-primary);
}
.btn {
display: inline-block;
padding: 14px 28px;
border-radius: 8px;
font-weight: 600;
text-decoration: none;
text-align: center;
cursor: pointer;
transition: background 0.3s, transform 0.2s;
border: none;
font-family: 'Inter', sans-serif;
}
.btn-primary {
background: var(--accent);
color: var(--white);
}
.btn-primary:hover {
background: var(--accent-hover);
transform: translateY(-2px);
}
.btn-secondary {
background: transparent;
color: var(--accent);
border: 2px solid var(--accent);
}
.btn-secondary:hover {
background: var(--accent);
color: var(--white);
}
.btn-large {
width: 100%;
padding: 16px;
font-size: 1.1rem;
}
.section {
padding: 48px 0;
}
.section-bg {
background-color: var(--bg-secondary);
}
.section-title {
font-size: clamp(2rem, 4vw, 2.5rem);
text-align: center;
margin-bottom: 16px;
}
.section-subtitle {
text-align: center;
color: var(--text-secondary);
margin-bottom: 48px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.grid-4 {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
}
.grid-3 {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.grid-2 {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 48px;
align-items: center;
}
.card {
background: var(--white);
padding: 32px;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(62, 39, 35, 0.05);
text-align: center;
}
.card-icon {
font-size: 2.5rem;
margin-bottom: 16px;
}
.card h3 {
margin-bottom: 12px;
font-size: 1.25rem;
}
.card p {
color: var(--text-secondary);
font-size: 0.95rem;
}
.lead {
font-size: 1.1rem;
margin-bottom: 24px;
color: var(--text-secondary);
}
.steps-list {
list-style: none;
margin-bottom: 32px;
}
.steps-list li {
margin-bottom: 16px;
padding-left: 24px;
position: relative;
}
.steps-list li::before {
content: "✓";
position: absolute;
left: 0;
color: var(--accent);
font-weight: bold;
}
.image-content img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 12px;
}
.calculation-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-bottom: 24px;
}
.calc-card {
background: var(--white);
padding: 24px;
border-radius: 12px;
text-align: center;
border: 1px solid var(--border);
}
.calc-card.highlight {
background: var(--accent);
color: var(--white);
border-color: var(--accent);
}
.calc-card.highlight .calc-label,
.calc-card.highlight .calc-value {
color: var(--white);
}
.calc-label {
display: block;
font-size: 0.9rem;
color: var(--text-secondary);
margin-bottom: 8px;
}
.calc-value {
display: block;
font-size: 1.5rem;
font-weight: 700;
font-family: 'Playfair Display', serif;
color: var(--text-primary);
}
.calc-note {
text-align: center;
font-size: 0.9rem;
color: var(--text-secondary);
font-style: italic;
}
.solution-card {
background: var(--white);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(62, 39, 35, 0.05);
}
.solution-card img {
width: 100%;
height: 250px;
object-fit: cover;
}
.solution-content {
padding: 32px;
}
.solution-content h3 {
margin-bottom: 16px;
font-size: 1.5rem;
}
.solution-content p {
color: var(--text-secondary);
margin-bottom: 24px;
}
.blog-preview {
background: var(--white);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(62, 39, 35, 0.05);
padding: 24px;
display: flex;
flex-direction: column;
}
.blog-preview img {
width: 100%;
height: 180px;
object-fit: cover;
border-radius: 8px;
margin-bottom: 16px;
}
.blog-preview h3 {
font-size: 1.2rem;
margin-bottom: 12px;
}
.blog-preview p {
color: var(--text-secondary);
font-size: 0.95rem;
margin-bottom: 16px;
flex-grow: 1;
}
.btn-text {
color: var(--accent);
text-decoration: none;
font-weight: 600;
align-self: flex-start;
}
.btn-text:hover {
text-decoration: underline;
}
.form-wrapper {
max-width: 800px;
margin: 0 auto;
background: var(--white);
padding: 48px;
border-radius: 12px;
box-shadow: 0 8px 32px rgba(62, 39, 35, 0.08);
}
.form-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
margin-bottom: 24px;
}
.form-group {
display: flex;
flex-direction: column;
gap: 8px;
}
.form-group.full-width {
grid-column: 1 / -1;
}
.form-group label {
font-weight: 500;
font-size: 0.95rem;
}
.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 12px 16px;
border: 1px solid var(--border);
border-radius: 8px;
font-family: 'Inter', sans-serif;
font-size: 1rem;
background: var(--bg-primary);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--accent);
}
.form-footer {
text-align: center;
margin-top: 32px;
}
.form-disclaimer {
font-size: 0.85rem;
color: var(--text-secondary);
margin-top: 16px;
}
.form-extra {
font-size: 0.9rem;
color: var(--accent);
font-weight: 600;
margin-top: 8px;
}
.footer {
margin-top: auto;
background: var(--bg-secondary);
padding: 48px 0 24px;
border-top: 1px solid var(--border);
}
.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 48px;
margin-bottom: 32px;
}
.footer-disclaimer {
font-size: 0.9rem;
color: var(--text-secondary);
margin-top: 24px;
line-height: 1.5;
}
.footer-info h4 {
margin-bottom: 16px;
font-size: 1.1rem;
}
.footer-info p {
font-size: 0.9rem;
color: var(--text-secondary);
margin-bottom: 8px;
}
.footer-bottom {
text-align: center;
padding-top: 24px;
border-top: 1px solid var(--border);
font-size: 0.9rem;
color: var(--text-secondary);
}
.page-title {
font-size: clamp(2.5rem, 5vw, 3.5rem);
text-align: center;
margin-bottom: 16px;
}
.page-subtitle {
text-align: center;
color: var(--text-secondary);
margin-bottom: 48px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.article-layout {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 48px;
}
.article-author {
color: var(--accent);
font-weight: 600;
margin-bottom: 8px;
}
.article-title {
font-size: clamp(2rem, 4vw, 2.5rem);
margin-bottom: 16px;
}
.article-subtitle {
font-size: 1.2rem;
color: var(--text-secondary);
margin-bottom: 32px;
}
.article-image {
width: 100%;
height: 400px;
object-fit: cover;
border-radius: 12px;
margin-bottom: 32px;
}
.article-content h2 {
font-size: 1.5rem;
margin-top: 32px;
margin-bottom: 16px;
}
.article-content p {
margin-bottom: 16px;
color: var(--text-secondary);
}
.article-back {
margin-top: 32px;
}
.sidebar-card {
background: var(--white);
padding: 24px;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(62, 39, 35, 0.05);
margin-bottom: 24px;
}
.sidebar-card h3 {
font-size: 1.1rem;
margin-bottom: 16px;
}
.thanks-main {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
padding: 48px 0;
}
.thanks-container {
text-align: center;
max-width: 600px;
background: var(--white);
padding: 48px;
border-radius: 16px;
box-shadow: 0 8px 32px rgba(62, 39, 35, 0.1);
}
.thanks-logo {
width: 50px;
height: 50px;
object-fit: cover;
border-radius: 50%;
margin-bottom: 24px;
}
.thanks-title {
font-size: 2rem;
margin-bottom: 24px;
}
.thanks-text {
font-size: 1.2rem;
color: var(--text-secondary);
margin-bottom: 16px;
line-height: 1.6;
}
@media (max-width: 992px) {
.grid-4, .grid-3, .calculation-grid {
grid-template-columns: repeat(2, 1fr);
}
.article-layout {
grid-template-columns: 1fr;
}
.article-sidebar {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
}
}
@media (max-width: 768px) {
.nav {
display: none;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: var(--bg-primary);
padding: 24px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.nav.active {
display: block;
}
.nav-list {
flex-direction: column;
gap: 16px;
}
.mobile-menu-toggle {
display: flex;
}
.mandatory-notice {
display: none;
}
.grid-4, .grid-3, .grid-2, .calculation-grid, .form-grid, .footer-grid, .article-sidebar {
grid-template-columns: 1fr;
}
.hero-content h1 {
font-size: 2rem;
}
.form-wrapper {
padding: 24px;
}
.thanks-container {
padding: 32px 24px;
}
}
.warranty-section {
background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
padding: 48px 0;
}

.warranty-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
margin-bottom: 32px;
}

.warranty-card {
background: var(--white);
padding: 32px 24px;
border-radius: 12px;
text-align: center;
box-shadow: 0 4px 20px rgba(62, 39, 35, 0.05);
border: 1px solid var(--border);
transition: transform 0.3s, box-shadow 0.3s;
}

.warranty-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 32px rgba(62, 39, 35, 0.1);
}

.warranty-icon {
font-size: 2.5rem;
margin-bottom: 16px;
}

.warranty-card h3 {
font-size: 1.1rem;
margin-bottom: 12px;
font-family: 'Playfair Display', serif;
}

.warranty-years {
font-size: 2rem;
font-weight: 700;
color: var(--accent);
font-family: 'Playfair Display', serif;
margin-bottom: 12px;
}

.warranty-desc {
font-size: 0.9rem;
color: var(--text-secondary);
line-height: 1.5;
}

.warranty-note {
background: var(--white);
padding: 20px 32px;
border-radius: 8px;
text-align: center;
border-left: 4px solid var(--accent);
box-shadow: 0 2px 12px rgba(62, 39, 35, 0.05);
}

.warranty-note p {
font-size: 0.95rem;
color: var(--text-primary);
font-weight: 500;
}

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

@media (max-width: 768px) {
.warranty-grid {
grid-template-columns: 1fr;
gap: 16px;
}

.warranty-card {
padding: 24px 20px;
}

.warranty-years {
font-size: 1.75rem;
}

.warranty-note {
padding: 16px 20px;
}

.warranty-note p {
font-size: 0.9rem;
}
}
.quick-benefits-bar {
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
padding: 20px 0;
color: var(--white);
}

.qbb-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 32px;
align-items: center;
}

.qbb-item {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
}

.qbb-icon {
font-size: 1.5rem;
}

.qbb-text {
font-weight: 600;
font-size: 0.95rem;
}

@media (max-width: 768px) {
.qbb-grid {
grid-template-columns: 1fr;
gap: 16px;
}

.qbb-item {
justify-content: flex-start;
}

.qbb-text {
font-size: 0.9rem;
}
}
.info-box {
background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--white) 100%);
border-left: 4px solid var(--accent);
padding: 20px 24px;
border-radius: 8px;
margin: 32px 0;
box-shadow: 0 2px 12px rgba(62, 39, 35, 0.05);
}

.info-box p {
font-size: 1rem;
line-height: 1.6;
color: var(--text-primary);
margin: 0;
}

.maintenance-schedule {
background: var(--white);
border: 1px solid var(--border);
border-radius: 8px;
padding: 24px;
margin: 24px 0;
}

.maintenance-schedule p {
margin-bottom: 12px;
font-size: 0.95rem;
line-height: 1.6;
}

.maintenance-schedule p:last-child {
margin-bottom: 0;
}

.article-content h2 {
font-size: 1.5rem;
margin-top: 32px;
margin-bottom: 16px;
}
.legal-content {
max-width: 800px;
margin: 48px auto;
padding: 48px;
background: var(--white);
border-radius: 16px;
box-shadow: 0 12px 40px rgba(62, 39, 35, 0.08);
border: 1px solid rgba(215, 204, 200, 0.5);
position: relative;
overflow: hidden;
}

.legal-content::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(90deg, var(--accent) 0%, var(--accent-hover) 100%);
}

.legal-content h1 {
font-size: 2.25rem;
margin-bottom: 8px;
font-family: 'Playfair Display', serif;
color: var(--text-primary);
}

.legal-content h2 {
font-size: 1.5rem;
margin-top: 40px;
margin-bottom: 16px;
font-family: 'Playfair Display', serif;
color: var(--text-primary);
padding-bottom: 8px;
border-bottom: 1px solid var(--border);
}

.legal-content p,
.legal-content li {
font-size: 1.05rem;
line-height: 1.7;
color: var(--text-secondary);
margin-bottom: 16px;
}

.legal-content ul {
padding-left: 1.5rem;
margin-bottom: 24px;
}

.legal-content ul li {
margin-bottom: 8px;
}

.legal-update-date {
font-size: 0.9rem;
color: var(--accent);
font-style: italic;
margin-bottom: 32px;
display: block;
font-weight: 500;
}

@media (max-width: 768px) {
.legal-content {
margin: 24px 16px;
padding: 32px 24px;
}

.legal-content h1 {
font-size: 1.75rem;
}

.legal-content h2 {
font-size: 1.25rem;
}

.legal-content p,
.legal-content li {
font-size: 1rem;
}
}

.footer-compact {
padding: 32px 0 24px;
}

.footer-compact .footer-grid {
gap: 24px;
margin-bottom: 24px;
}

.footer-legal-links {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin-bottom: 16px;
padding-top: 16px;
border-top: 1px solid var(--border);
}

.footer-legal-links a {
font-size: 0.9rem;
color: var(--text-secondary);
text-decoration: none;
transition: color 0.3s;
}

.footer-legal-links a:hover {
color: var(--accent);
text-decoration: underline;
}

@media (max-width: 768px) {
.legal-content {
padding: 32px 20px;
}

.legal-content h1 {
font-size: 1.75rem;
}

.legal-content h2 {
font-size: 1.25rem;
}

.footer-legal-links {
flex-direction: column;
gap: 12px;
}
}
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(253, 251, 247, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(62, 39, 35, 0.12);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__content {
  flex: 1 1 400px;
  min-width: 0;
}

.cookie-banner__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.cookie-banner__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.cookie-banner__link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-banner__link:hover {
  color: var(--accent-hover);
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 10px 22px;
  font-size: 0.95rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 20px 0;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie-banner__title {
    font-size: 1.1rem;
  }

  .cookie-banner__text {
    font-size: 0.9rem;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__btn {
    flex: 1;
    padding: 12px 16px;
  }
}