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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  color: #000;
  background: #fff;
  overflow-x: hidden; 
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
}

/* Inter Regular (400) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter/inter-v19-latin-regular.woff2') format('woff2');
}

/* Inter Medium (500) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter/inter-v19-latin-500.woff2') format('woff2');
}

/* Inter Bold (700) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/inter/inter-v19-latin-700.woff2') format('woff2');
}

/* Inter Black (900) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('fonts/inter/inter-v19-latin-900.woff2') format('woff2');
}

/* Desktop Header */
.header-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}

.header-mobile {
  display: none;
}

.logo img {
  height: 80px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.main-nav a {
  text-decoration: none !important;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: opacity 0.3s;
}

.main-nav a:hover {
  opacity: 0.7;
}

.lang-switch {
  display: flex;
  gap: 15px;
  margin-left: 20px;
}

.lang {
  font-weight: 600;
}

.lang.active {
  color: #7D9D30;
}

/* Hero Section */
.hero {
  padding: 40px 0 0; 
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.hero-text h1 {
  font-size: 72px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 40px;
}

/* Hide mobile elements on desktop */
.price-badge-mobile {
  display: none;
}

.benefits {
  list-style: none;
  margin-bottom: 40px;
}

.benefits li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.4;
}

.benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  background: url("img/icon.svg") center/contain no-repeat;
}

.cta-button {
  display: inline-block;
  background: #022A05;
  color: #fff;
  padding: 16px 36px;
  text-decoration: none !important;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 0px;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #034206;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  margin-bottom: -8px; 
}

.image-composition {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  margin-bottom: 0;
}

.image-left {
  width: 35%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px 8px 0 0; 
}

.image-right {
  width: 65%;
  height: 600px; 
  object-fit: cover;
  border-radius: 8px 8px 0 0; 
}

.price-badge {
  position: absolute;
  top: -30px;
  left: -60px;
  width: 320px;
  height: 320px;
  background: #022A05;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.badge-content {
  text-align: center;
  color: #fff;
}

.badge-title {
  color: #7D9D30;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 5px;
}

.badge-old {
  font-size: 24px;
  opacity: 0.8;
  margin-bottom: 5px;
}

.badge-price {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.badge-price span {
  font-size: 32px;
}

.badge-info {
  color: #7D9D30;
  font-size: 18px;
  line-height: 1.2;
}

/* WHY SECTION - Desktop */
.why-section {
  background: #ECECEC;
  padding: 100px 0;
  margin: 0; 
  width: 100vw; 
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* why-section */
.why-section .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
}

.why-section h2 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: #022A05;
  border-radius: 8px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  width: 48px;
  height: 100%;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.benefit-card p {
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .container {
    padding: 0 40px;
  }
  
  .hero-content {
    gap: 60px;
  }
  
  .hero-text h1 {
    font-size: 56px;
  }
  
  .price-badge {
    width: 320px;
    height: 320px;
    left: -40px;
  }
  
  .badge-title {
    font-size: 36px;
  }
  
  .badge-price {
    font-size: 40px;
  }
  
  .why-section h2 {
    font-size: 36px;
    padding: 0 20px;
  }
  
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .container {
    padding: 0;
  }
  
  /* Mobile Header */
  .header-desktop {
    display: none;
  }
  
  .header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    margin: 15px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }
  
  .header-mobile .logo img {
    height: 80px;
  }
  
  .social-links {
    display: flex;
    gap: 16px;
    align-items: center;
  }
  
  .social-links img {
    width: 24px;
    height: 24px;
  }
  
  .menu-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .menu-toggle span {
    width: 24px;
    height: 2px;
    background: #000;
    transition: all 0.3s;
  }
  
  /* Mobile Hero */
  .hero {
    padding: 0;
    position: relative;
  }
  
  .hero-content {
    display: block;
    position: relative;
  }
  
  /* Background Image */
  .hero-visual {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    margin-bottom: 0; 
  }
  
  .image-composition {
    display: block;
    height: 100vh;
  }
  
  .image-left {
    display: none;
  }
  
  .image-right {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: opacity(0.5);
    border-radius: 0; 
  }
  
  /* Hide desktop price badge */
  .price-badge {
    display: none;
  }
  
  /* Mobile Content Card */
  .hero-text {
    margin: 20px;
    padding: 30px 20px 0;
    border-radius: 0px;
    overflow: hidden;
  }
  
  .hero-text h1 {
    font-size: 40px;
    line-height: 0.9;
    letter-spacing: 1px;
    margin: 0 0 30px 0;
  }
  
  /* Show mobile price badge */
  .price-badge-mobile {
    display: block;
    background: #022A05;
    color: #fff;
    padding: 25px 20px;
    margin: 0 -20px 30px;
    text-align: center;
  }
  
  .price-badge-mobile .badge-title {
    font-size: 24px;
    color: #7D9D30;
    font-weight: 700;
    margin-bottom: 8px;
  }
  
  .price-badge-mobile .badge-old {
    font-size: 16px;
    margin-bottom: 5px;
  }
  
  .price-badge-mobile .badge-price {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
  }
  
  .price-badge-mobile .badge-price span {
    font-size: 24px;
  }
  
  .price-badge-mobile .badge-info {
    font-size: 15px;
    color: #7D9D30;
    line-height: 1.2;
  }
  
  /* Benefits */
  .benefits {
    margin: 0 0 30px 0;
    padding: 0;
  }
  
  .benefits li {
    font-size: 16px;
    line-height: 1.4;
    padding-left: 26px;
    margin-bottom: 12px;
    color: #333;
  }
  
  .benefits li:last-child {
    margin-bottom: 0;
  }
  
  .benefits li::before {
    top: 4px;
    width: 18px;
    height: 18px;
  }
  
  /* Mobile CTA button */
  .hero-text .cta-button {
    display: block;
    width: calc(100% + 40px);
    margin: 0 -20px;
    text-align: center;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0 0 0px 0px;
    background: #022A05;
  }
  
  /* Mobile Why Section */
  .why-section {
    background: #FFFFFF;
    padding: 60px 0;
  }
  
  .why-section .container {
    padding: 0 20px;
  }
  
  .why-section h2 {font-size:20px;margin-bottom:16px}
  
  .benefit-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .benefit-card {
    background: #022A05;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  
  .benefit-icon {
    width: 32px;
    height: 100%;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
  }
  
  .benefit-card p {
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
  }
}

/* VORHER-NACHHER */
.projects-section{
  background:#FFFFFF;  
  padding:80px 0;
  text-align:center;
}
.projects-section .container{
  max-width:1120px;margin:0 auto;padding:0 16px;
}
.projects-section h2{
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}
.projects-sub{
  font-size:16px;max-width:640px;margin:0 auto 48px;
}

.projects-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:200px;
  gap:20px;
}

.proj img{
  width:100%;height:100%;object-fit:cover;border-radius:4px;
}

.proj-big{grid-row:span 2;}

/* CTA-btn */
.insta-btn{
  display:inline-block;margin:48px auto 0;text-decoration: none;
  background:#022A05;color:#fff;
  padding:14px 26px;font-size:15px;font-weight:500;
  text-transform:uppercase;border-radius:2px;
}

/* TABLET (≤1024 px) */
@media(max-width:1024px){
  .projects-grid{grid-template-columns:repeat(2,1fr);}
  .proj-big{grid-row:span 1;} 
}

/* MOBILE (≤768 px) */
@media(max-width:768px){
  .projects-section{
    background:#ECECEC;
    padding:40px 0;
  }
  .projects-section h2{font-size:20px;margin-bottom:16px}
  .projects-sub{font-size:14px;margin-bottom:24px}
  .projects-grid{
    grid-template-columns:repeat(2,1fr);
    grid-auto-rows:140px;gap:10px;
  }
  .insta-btn{
    width:100%;margin-top:24px;border-radius:0;
  }
}

/* mini-lightbox */
.lb-overlay{
  position:fixed;inset:0;background:rgba(0,0,0,.8);display:flex;
  justify-content:center;align-items:center;z-index:2500;
}
.lb-overlay img{max-width:90vw;max-height:90vh;border-radius:4px}
.lb-overlay span{
  position:absolute;top:20px;right:30px;font-size:40px;
  color:#fff;cursor:pointer;font-weight:700;line-height:1;
}

/* mini-lightbox – arrow */
.lb-arrow{
  all:unset;  
  position:absolute;  
  top:50%; transform:translateY(-50%);
  width:48px; height:48px; 
  cursor:pointer;
}
.lb-arrow:hover{background:none;}

.lb-prev{left:30px;}
.lb-next{right:30px;}

.lb-arrow::before{
  content:"";
  position:absolute; inset:0;
  margin:auto; 
  width:18px; height:18px;
  border:solid #fff;
  border-width:0 4px 4px 0;
}

.lb-next::before{
  transform:rotate(-45deg);
}

.lb-prev::before{
  transform:rotate(135deg);
}

/* STEPS SECTION */
.steps-section{
  background:#ECECEC;
  padding:80px 0;text-align:center;
  position:relative;
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
  width:100vw;
}
.steps-section .container{
  max-width:900px;margin:0 auto;padding:0 16px;
}

.steps-section h2{
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}
.steps-sub{
  font-size:16px;margin-bottom:48px;line-height:1.4;
}

.steps-list{
  list-style:none;display:flex;flex-direction:column;gap:12px;
  counter-reset:step;
}
.step-box{
  display:flex;align-items:center;
  background:#022A05;border-radius:2px;
  padding:18px 24px;gap:24px;color:#fff;
}
.step-num{
  font-size:20px;font-weight:700;
  width:24px;text-align:center;flex-shrink:0;
}
.step-text{font-size:16px;line-height:1.35;text-align:left}
.step-text small{font-size:14px;font-weight:400}

/* MOBILE ≤768px */
@media(max-width:768px){
  .steps-section{
    background:#FFFFFF !important;
    position:static;
    left:auto;right:auto;margin:0;width:100%;
    padding:40px 0; 
  }
  .steps-section h2{font-size:20px;margin-bottom:16px}
  .steps-sub{font-size:14px;margin-bottom:24px}
  .step-box{flex-direction:row;padding:16px 20px}
  .step-num{font-size:18px}
  .step-text{font-size:15px}
  .step-text small{font-size:13px}
}

/* REVIEWS + TRUST */
.reviews-section {
  background: #fff;
  padding: 80px 0;
  text-align: center;
}

.reviews-section h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto 40px;
  text-transform: uppercase;
}

.reviews-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

.reviews-wrap h2 {
  font: 700 24px/1.25 inherit;
  text-transform: uppercase;
  margin: 0 0 32px;
}

/* Slider */
.slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 32px; 
}

.slider input {
  display: none;
}

.slides {
  display: flex;
  width: 100%;
}

.slide {
  display: none;
  gap: 24px;
  justify-content: space-between;
}

#rev-1:checked ~ .slides .slide:nth-child(1),
#rev-2:checked ~ .slides .slide:nth-child(2),
#rev-3:checked ~ .slides .slide:nth-child(3),
#rev-4:checked ~ .slides .slide:nth-child(4),
#rev-5:checked ~ .slides .slide:nth-child(5) {
  display: flex;
}

/* Navigation */
.slider .nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.slider .nav .arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 24px;
  text-align: center;
  background: none;
  color: #666;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  user-select: none;
}

.slider .nav .prev { left: 0px; }
.slider .nav .next { right: 0px; }

#rev-1:checked ~ .nav .prev-1,
#rev-1:checked ~ .nav .next-1,
#rev-2:checked ~ .nav .prev-2,
#rev-2:checked ~ .nav .next-2,
#rev-3:checked ~ .nav .prev-3,
#rev-3:checked ~ .nav .next-3,
#rev-4:checked ~ .nav .prev-4,
#rev-4:checked ~ .nav .next-4,
#rev-5:checked ~ .nav .prev-5,
#rev-5:checked ~ .nav .next-5 {
  display: block;
}

/* On desktop we show only two scrolls */
@media (min-width: 769px) {
  #rev-3,
  #rev-4,
  #rev-5 {
    display: none;
  }

  #rev-3:checked ~ .slides .slide:nth-child(3),
  #rev-4:checked ~ .slides .slide:nth-child(4),
  #rev-5:checked ~ .slides .slide:nth-child(5) {
    display: none !important;
  }

/* Hide arrows for "dead" slides */
  .slider .nav .prev-3,
  .slider .nav .next-3,
  .slider .nav .prev-4,
  .slider .nav .next-4,
  .slider .nav .prev-5,
  .slider .nav .next-5 {
    display: none !important;
  }
}

/* Reviews */
.review {
  flex: 1 1 calc(33.333% - 24px);
  background: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 2px;
  padding: 32px;
  font: 15px/1.45 inherit;
  box-sizing: border-box;
}

.reviews-btn {
  display: inline-block;
  background: #022A05;
  color: #fff;
  text-decoration: none;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 2px;
}

/* TRUST */
.trust-wrap {
  margin-top: 80px;
}

.trust-wrap h3 {
  font: 700 22px/1 inherit;
  text-transform: uppercase;
  margin: 0 0 32px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.trust-card {
  background: #022A05;
  color: #fff;
  border-radius: 2px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px;
}

.trust-card img {
  width: 40px;
  height: auto;
  flex-shrink: 0;
}

.trust-card > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.trust-card p {
  font-size: 16px;
  margin: 0 0 6px;
}

.trust-card small {
  font-size: 14px;
  line-height: 1.35;
  margin: 0;
}

/* DESKTOP ≥1025 px */
@media (min-width: 1025px) {
  .reviews-wrap {
    background: #ECECEC;
    padding: 60px 16px 80px;
    border-radius: 0;
  }
  .trust-wrap {
    padding-left: 0;
    padding-right: 0;
  }
  .trust-grid {
    margin-left: calc(50% - 450px);
  }
  .trust-card p,
  .trust-card small {
    text-align: left;
  }
}

/* MOBILE ≤768 px */
@media (max-width: 768px) {
  .reviews-section {
    background: #ECECEC;
    padding: 40px 0;
  }
  .reviews-section h2,
  .reviews-wrap h2 {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .slide {
    flex-direction: column;
  }
  .slide .review:nth-child(n + 2) {
    display: none;
  }
  .reviews-btn {
    width: 100%;
    margin: 24px 0 56px;
  }
  .trust-wrap {
    background: #fff;
    padding: 40px 16px;
    margin-top: 0;
  }
  .trust-grid {
    gap: 16px;
    margin-left: 0;
  }
  .trust-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    gap: 12px;
  }
  .trust-card img {
    width: 36px;
    height: 36px;
  }
  .trust-card p {
    font-size: 15px;
  }
  .trust-card small {
    font-size: 13px;
  }
}

/* PREIS-INHALT */
.price-included{
  background:#ECECEC;
  padding:80px 0;
  text-align:center;
}

.price-included__wrap{max-width:1200px;margin:0 auto;padding:0 16px}

.price-included h2{
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}

.price-included__subtitle{
  font:400 16px/1.4 inherit;
  margin:0 0 48px;
}

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

.included-card{
  background:#022A05;
  color:#fff;
  padding:48px 26px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  border-radius:2px;
}

.included-card img{
  width:64px;height:64px;margin-bottom:24px;
}

.included-card p{
  font-size:16px;
  line-height:1.35;
}

/* MOBILE ≤ 768 px */
@media(max-width:768px){

  .price-included{padding:40px 0}

  .price-included h2{font-size:20px;margin-bottom:16px}
  .price-included__subtitle{font-size:15px;margin-bottom:32px}

  .included-grid{
    grid-template-columns:1fr;   /* одна карточка в ряд */
    gap:16px;
  }

  .included-card{
    padding:28px 20px;
  }

  .included-card img{
    width:48px;height:48px;margin-bottom:20px;
  }

  .included-card p{font-size:15px;text-align:left}
}

.price-included{
  position:relative;
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
  width:100vw;
}

@media (max-width:768px){
  .included-card{
    flex-direction:row;
    align-items:flex-start;
    gap:16px;
    text-align:left;
    justify-content:flex-start; 
    text-align:left; 
  }
  .included-card img{
    width:36px;
    height:100%;
    margin:0;
  }
}

/* ABOUT (ÜBER MICH) */
.about-section{
  background:#fff;
  padding:80px 0;
  text-align:center;
}
.about-section h2{
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}

.about-info{
  display:flex;
  align-items:flex-start;
  gap:20px;
  max-width:900px;
  margin:0 auto 56px;
}
.about-photo{
  width:150px;
  height:100%;
  object-fit:cover;
  border-radius:2px;
  flex-shrink:0;
}
.about-text{
  font-size:16px;
  line-height:1.45;
  text-align:left;
}

/* mini-grid mit 4 Fakten */
.about-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  max-width:1000px;
  margin:0 auto;
}
.about-card{
  background:#022A05;
  color:#fff;
  padding:24px 20px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:24px;
  border-radius:2px;
  min-height: 200px;
  box-sizing: border-box;
  overflow: visible;   
}
.about-card a {
  color: inherit;    
  text-decoration: none;
  font: inherit;  
}
.about-card img{width:48px;height:100%}
.about-card p{
  font-size:16px;
  line-height:1.35;
  font-weight:500;
  margin:0;
  text-align:center;
}

/* ≤768 px  (mobile) */
@media(max-width:768px){
  .about-section{padding:56px 0}
  .about-section h2{font-size:20px;margin-bottom:16px}
  .about-card {
    min-height: auto;
  }

 .about-info{
    display:block;   
    padding:0 16px; 
    text-align: left;
  }

  .about-text{text-align:left;font-size:15px}

  .about-grid{
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    padding:0 16px;
  }
  .about-card{
    padding:24px 16px;
    gap:16px;
    overflow-wrap: anywhere;
  }
  .about-card img{width:40px;height:40px}
  .about-card p{font-size:15px}
  
  .about-photo{
  float:left;            
  height:auto;            
  margin: 0px 16px 0px 0px;   
  border-radius:2px;
}
}

/* ≥1440 px */
@media(min-width:1440px){
  .about-section .container{max-width:1200px}
}

@media (min-width: 1025px){
  .about-photo{
    width: 260px;    
    height:auto;        
    margin-right: 20px; 
    flex-shrink: 0;      
  }
}

/* ABOUT-GRID */
/* desktop ≥ 1025 px */
.about-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  max-width:1000px;
  margin:0 auto;
  grid-auto-rows:1fr;
}

.about-card{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  align-items:center;
  padding:32px 24px;
  background:#022A05;
  color:#fff;
  border-radius:4px;
  box-sizing:border-box;
  text-align:center;
  height:100%; 
}

.about-card img{width:56px;height:56px}
.about-card p{
  font-size:18px;
  line-height:1.35;
  font-weight:500;
  margin:0;
  word-break:break-word;
  padding-top:10px;
}

/* ≤1024 px (tablet) */
@media(max-width:1024px){
  .about-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:20px;
    padding:0 24px;
    grid-auto-rows:1fr;
  }
}

/* MOBILE */
@media (max-width: 768px){
  .about-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 стовпці */
    gap: 16px;
    padding: 0 16px;
  }

  .about-card{
    padding: 24px 16px;
  }
  .about-card img{width:48px;height:48px}
  .about-card p {font-size:16px}
}

/* OFFER SECTION */
.offer-section{
  position:relative;
  padding:100px 0 120px;
  text-align:center;
  background:#fff;
  overflow:hidden;
}

.offer-section h2{
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}

.offer-form{
  position:relative;  
  z-index:1;
  max-width:460px;
  margin:0 auto;
  background:#ECECEC;
  padding:32px 28px 40px;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.offer-form input,
.offer-form textarea{
  width:100%;
  border:0;
  outline:0;
  background:#fff;
  padding:14px 18px;
  font-size:15px;
  line-height:1.35;
}

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

.offer-form button{
  cursor:pointer;
  background:#022A05;
  color:#fff;
  border:0;
  padding:16px;
  font:500 15px/1 inherit;
  text-transform:uppercase;
}

.offer-note{
  position:relative;
  z-index:1;
  font-size:16px;
  font-weight: bold;
  line-height:1.4;
  margin-top:32px;
}

/* Wide ≥1025px */
@media (min-width:1025px){
  .offer-section{
    margin-left:calc(-50vw + 50%);
    margin-right:calc(-50vw + 50%);
    width:100vw;
    isolation:isolate; 
  }

  .offer-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:url("img/interior-painting-team.webp") center / cover no-repeat;
    filter:brightness(105%) opacity(.15);
    z-index:-1;  
  }
}

/*  Mobile ≤768px  */
@media (max-width:768px){
  .offer-section{
    padding:56px 0 72px;
    background:#fff; 
  }

  .offer-section h2{
    font-size:20px;
    margin-bottom:16px;
    padding:0 16px;
  }

  .offer-form{
    max-width:none;
    margin:0 16px;    
    padding:24px 20px 32px;
    gap:16px;
    background:#ECECEC;     
    border:1px solid #E0E0E0;
  }

  .offer-form textarea{min-height:150px}

  .offer-note{
    background:#ECECEC;  
    margin:0 16px;
    padding:12px 20px 20px;
    text-align:center;
    border-bottom-left-radius:4px;
    border-bottom-right-radius:4px;
  }
}

/* CONTACT SECTION */
.contact-section{
  background:#ECECEC;
  width:100vw;
  margin-left:calc(50% - 50vw);
  padding:60px 16px;
  text-align:center;
}

.contact-heading{
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}

.contact-row{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:32px;
  margin-bottom:48px;
  flex-wrap:wrap; 
}

.contact-label{
  font:500 20px/1.3 var(--font, inherit);
  margin:0;
  white-space:nowrap;
  font-size: 18px;
  font-weight: bold;
}

.contact-label{font-size:18px;text-align:center;width:100%}

.icon-bar{
  display:flex;
  gap:24px;
}

.ci{
  width:56px;height:56px;
  display:flex;align-items:center;justify-content:center;
  background:#022A05;border-radius:8px;
  transition:transform .2s ease, box-shadow .2s ease;
}
.ci:hover{transform:translateY(-3px);box-shadow:0 4px 8px rgba(0,0,0,.25);}
.ci img{width:24px;height:24px}

.contact-hours{font-size:18px;margin:0 0 8px}
.contact-response{font-size:16px;margin:0}

/* ===== Mobile ≤768 px ===== */
@media(max-width:768px){
  .contact-section{padding:40px 16px;background:#fff}
  .contact-heading{font-size:20px;margin-bottom:16px}

  .contact-row{gap:20px;margin-bottom:32px}
  .contact-label{font-size:18px;text-align:center;width:100%}
  .icon-bar{justify-content:center;gap:16px}

  .ci{width:48px;height:48px;border-radius:6px}
  .ci img{width:22px;height:22px}

  .contact-hours{font-size:16px}
  .contact-response{font-size:15px}
}

/* FAQ SECTION */
.faq-section{
  padding:100px 0;
  text-align:center;
  background:#fff;
}

.faq-section h2{
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}

.faq-list{
  max-width:900px;
  margin:0 auto;
  text-align:left;
}

.faq-list details{border-bottom:1px solid #d7d7d7}
.faq-list details:last-child{border-bottom:none}

.faq-list summary{
  cursor:pointer;
  list-style:none;
  padding:18px 0;
  font:500 18px/1.3 inherit;
  position:relative;
}

.faq-list summary::-webkit-details-marker{display:none}

.faq-list summary::after{
  content:"";
  position:absolute; right:16px; top:50%;
  width:10px; height:10px;
  border-right:2px solid #022A05;
  border-bottom:2px solid #022A05;
  transform:translateY(-50%) rotate(45deg);
  transition:.3s;
}

.faq-list details[open] summary::after{
  transform:translateY(-50%) rotate(-135deg);
}

.faq-list details p{
  padding:0 0 18px;
  font-size:16px; line-height:1.45; color:#333;
  animation:fade-in .35s ease;
}

@keyframes fade-in{
  from{opacity:.0; transform:translateY(-4px)}
  to  {opacity:1;  transform:none}
}

/* MOBILE ≤768 px */
@media(max-width:768px){

  .faq-section{padding:56px 0; background:#ECECEC}

  .faq-section h2{
    font-size:20px; margin-bottom:16px; padding:0 16px;
  }

  .faq-list{
    background:#ECECEC;
    border:1px solid #E0E0E0;
    margin:0 16px;
  }

  .faq-list summary{padding:18px 16px; font-size:16px}
  .faq-list details p{padding:0 16px 18px; font-size:15px}
}

/* DESKTOP ≥1025 px */
@media(min-width:1025px){
  .faq-section{
    margin-left:calc(-50vw + 50%);
    margin-right:calc(-50vw + 50%);
    width:100vw;
    background:#ECECEC;   
    isolation:isolate;
  }
  .faq-section h2{margin-bottom:56px}
  .faq-list{background:transparent; border:none}
  .faq-list summary{font-size:18px}
}

.faq-section{background:#fff !important;}

@media (min-width:1025px){
  .faq-section{
    background:#fff !important;
  }
}

/* MOBILE ≤768 px */
@media (max-width:768px){
  .faq-section{background:#fff !important;} 

  .faq-list{
    background:#ECECEC !important;
    border:1px solid #E0E0E0 !important;
  }
}

/* Sticky header_desktop_mobile */
.header-desktop,
.header-mobile{
  position:sticky;
  top:0;
  z-index:1000;
  background:#FFF;
  -webkit-backdrop-filter:saturate(180%) blur(6px); 
  backdrop-filter:saturate(180%) blur(6px);
}

.header-desktop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0px 40px;
  box-shadow:0 2px 4px rgba(0,0,0,.05);
  margin-left : -20px;  
  margin-right: -20px;
  height: 80px;
}

.header-desktop .social-links{
  display:flex;
  gap:24px;
}
.header-desktop .social-links img{
  width:30px; height:30px;
  display:block;
}

/* Mobile ≤ 768 px */
@media (max-width:768px){
  .header-mobile{
    box-shadow:0 2px 4px rgba(0,0,0,.06);
  }
  .header-desktop{
  display:none !important;
}
}

/* Pop-up mail */
.popup{
  position:fixed; inset:0;
  background:rgba(0,0,0,.8);
  display:none; align-items:center; justify-content:center;
  z-index:3000;
}
.popup.show{display:flex;}

.popup-box{
  background:#fff;
  padding:32px 40px;
  text-align:center;
  border-radius:4px;
  max-width:320px;
  font-size:16px;
}
.popup-box button{
  margin-top:24px;
  padding:10px 24px;
  border:0;
  background:#022A05;
  color:#fff;
  cursor:pointer;
}

/* LEGAL FOOTER */
.legal-footer{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:20px;
  margin:40px auto 24px;
  font: 700 14px/1.4 var(--font, Inter, sans-serif);
  max-width:100%;
  text-decoration: underline;
}

.lf-link{
  color:#000;
  text-decoration:none;
  transition:color .2s;
}
.lf-link:hover{
  color:#022A05;
  text-decoration:underline;
}

/* mobile ≤768 px: */
@media(max-width:768px){
  .legal-footer{
    flex-direction:column;
    gap:12px;
    padding:0 16px;
  }
}

/* ===== Language Switcher ===== */
.lang-inline{
  display:flex;
  gap:18px;          
  align-items:center;
  margin-left:16px;
}

.lang-link{
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-weight:700;
  font-size:14px;
  color:#022A05;
  opacity:.55;       
  padding:6px 0;
  transition:opacity .2s ease;
}

.lang-link:hover,
.lang-link:focus{
  opacity:.85;
  outline:none;
}

.lang-link.active{
  opacity:1;
}

.lang-link.active::after{
  content:none !important;
  display:none !important;
}

.header-mobile .lang-inline{
  margin-top:0;
  margin-left:0;
  gap:12px;
  flex-direction:row;
  align-items:center;
  justify-content:flex-end;
}

@media (max-width:768px){
  .header-mobile-right{
    display:flex;
    flex-direction:column;   
    align-items:flex-end;
    gap:8px;
  }
}

/* Extra services */
.why-section .extra-services-sub{
  max-width: 900px;
  margin: 10px auto 28px;
  line-height: 1.45;
  opacity: .9;
  text-align: center;
}

.benefit-grid--2{
  grid-template-columns: repeat(2, 1fr);
}

.benefit-card--link{
  text-decoration: none;
  color: inherit;
}

.benefit-content h3{
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

.benefit-content p{
  margin: 0;
  line-height: 1.45;
  opacity: .95;
}

/* CTA line */
.benefit-cta{
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
}

/* Mobile */
@media (max-width: 768px){
  .benefit-grid--2{ grid-template-columns: 1fr; }
  .why-section .extra-services-sub{ margin-bottom: 18px; }
}

#services .benefit-card--link,
#services .benefit-card--link:visited,
#services .benefit-card--link *{
  color:#fff !important;
}

#services .benefit-icon{
  width:64px;
  height:64px;
}

#services .benefit-content h3{
  font-size:16px;
  line-height:1.25;
  margin:0 0 8px;
  font-weight:800;
}

#services .benefit-content p{
  font-size:16px;
  line-height:1.45;
  margin:0;
  opacity:.95;
}

#services .benefit-cta{
  font-size:16px;
  font-weight:700;
  opacity:.95;
}

/* Additional services */
.header-extra-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border:1px solid #022A05;
  border-radius:8px;
  background:#022A05;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  line-height:1;
  white-space:nowrap;
}

.header-extra-btn:hover,
.header-extra-btn:focus-visible{
  background:#022A05;
  outline:none;
}

@media (max-width:768px){
  .header-extra-btn{
    font-size:12.5px;
    padding:8px 10px;
  }
}

#services{
  scroll-margin-top:80px;
}

/* PACKAGES / QUALITÄTSSTUFEN */
.packages-section{
  background:#fff;
  padding:80px 0 0 0;
  text-align:center;
  position:relative;
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
  width:100vw;
}

.packages-wrap{max-width:1200px;margin:0 auto;padding:0 16px}

.packages-section h2{
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 20px;
  line-height: 1.2;
  max-width: 900px;
  text-transform: uppercase;
}

.packages-sub{
  font:400 16px/1.4 inherit;
  margin:0 auto 48px;
  max-width: 900px;
}

.packages-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  max-width:1100px;
  margin:0 auto;
}

.package-card{
  background:#022A05;
  color:#fff;
  padding:44px 32px;
  border-radius:2px;
  text-align:left;
}

.package-card h3{
  margin:0 0 14px;
  font:700 22px/1.25 inherit;
  text-transform: uppercase;
}

.package-card p{
  margin:0 0 12px;
  font-size:16px;
  line-height:1.45;
}

.package-card .package-includes{opacity:.95}

.package-card .package-price{
  margin-top:20px;
  font:800 28px/1.1 Inter,system-ui,Arial,sans-serif;
  color:#7D9D30;
}

.packages-note{
  margin:28px auto 0;
  max-width:900px;
  font-size:14px;
  line-height:1.45;
  opacity:.8;
  text-align:center;
}

/* MOBILE ≤ 768 px */
@media(max-width:768px){
  .packages-section{padding:40px 0}
  .packages-section h2{font-size:20px;margin-bottom:16px}
  .packages-sub{font-size:15px;margin-bottom:32px}
  .packages-grid{grid-template-columns:1fr;gap:16px}
  .package-card{padding:28px 20px}
  .package-card h3{font-size:18px}
  .package-card p{font-size:15px}
  .package-card .package-price{font-size:22px}
  .packages-note{font-size:13px}
}
