.hero-rolas {
  padding: 90px 0 70px;
  background: linear-gradient(180deg, #f7f7f7 0%, #efefef 100%);
  overflow: hidden;
}

.hero-rolas .container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.hero-rolas-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  background: rgba(177, 27, 46, 0.08);
  color: #b11b2e;
  border: 1px solid rgba(177, 27, 46, 0.16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.hero-rolas-content h1 {
  margin: 0 0 18px;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 700;
  color: #1f1f1f;
}

.hero-lead {
  margin: 0 0 24px;
  font-size: 21px;
  line-height: 1.7;
  color: #4b4b4b;
  max-width: 720px;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 14px;
}

.hero-benefits li {
  position: relative;
  padding-left: 34px;
  font-size: 18px;
  line-height: 1.5;
  color: #2e2e2e;
}

.hero-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #b11b2e;
  color: #fff;
  font-size: 13px;
  line-height: 22px;
  text-align: center;
  font-weight: 700;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-primary {
  background: #b11b2e;
  color: #fff;
  border: 1px solid #b11b2e;
  box-shadow: 0 12px 24px rgba(177, 27, 46, 0.16);
}

.btn-primary:hover {
  background: #971526;
  border-color: #971526;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #1f1f1f;
  border: 1px solid #cfcfcf;
}

.btn-secondary:hover {
  border-color: #9f9f9f;
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-box {
  min-width: 180px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  backdrop-filter: blur(6px);
}

.trust-box strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  color: #1f1f1f;
}

.trust-box span {
  font-size: 14px;
  color: #666;
}

.hero-rolas-visual {
  position: relative;
  min-height: 620px;
}

.hero-main-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 86%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,0.16);
}

.hero-main-image img,
.hero-floating-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-floating-image {
  position: absolute;
  left: 0;
  bottom: 34px;
  width: 42%;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

@media (max-width: 991px) {
  .hero-rolas {
    padding: 70px 0 50px;
  }

  .hero-rolas-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-rolas-content h1 {
    font-size: 42px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-rolas-visual {
    min-height: 520px;
  }

  .hero-main-image {
    width: 100%;
    position: relative;
    height: 520px;
  }

  .hero-floating-image {
    width: 44%;
    height: 190px;
    left: 16px;
    bottom: 16px;
  }
}

@media (max-width: 767px) {
  .hero-rolas-content h1 {
    font-size: 34px;
  }

  .hero-benefits li {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-rolas-visual {
    min-height: auto;
  }

  .hero-main-image {
    height: 420px;
  }

  .hero-floating-image {
    display: none;
  }
}





.rola-projects-section {
    padding: 90px 0;
    background: #f7f7f7;
}

.projects-heading {
    max-width: 900px;
    margin: 0 auto 55px auto;
}

.projects-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(177, 27, 46, 0.08);
    border: 1px solid rgba(177, 27, 46, 0.16);
    color: #b11b2e;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.projects-heading h2 {
    margin: 0 0 18px 0;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    color: #1f1f1f;
}

.projects-heading p {
    margin: 0;
    font-size: 19px;
    line-height: 1.8;
    color: #666;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.project-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.10);
}

.project-image-wrap {
    overflow: hidden;
}

.project-image-wrap img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image-wrap img {
    transform: scale(1.04);
}

.project-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.project-card-content {
    padding: 24px 24px 28px 24px;
}

.project-tag {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #b11b2e;
}

.project-card-content h3 {
    margin: 0 0 12px 0;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: #1f1f1f;
}

.project-card-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #666;
}

.projects-bottom-cta {
    margin-top: 45px;
}

.projects-bottom-cta p {
    margin-bottom: 18px;
    font-size: 17px;
    color: #666;
}

@media (max-width: 991px) {
    .rola-projects-section {
        padding: 70px 0;
    }

    .projects-heading h2 {
        font-size: 34px;
    }

    .projects-heading p {
        font-size: 17px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .large-card .project-image-wrap img,
    .small-card .project-image-wrap img {
        height: 420px;
    }
}

@media (max-width: 767px) {
    .rola-projects-section {
        padding: 55px 0;
    }

    .projects-heading {
        margin-bottom: 35px;
    }

    .projects-heading h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .projects-heading p {
        font-size: 16px;
        line-height: 1.7;
    }

    .project-card-content {
        padding: 20px;
    }

    .project-card-content h3 {
        font-size: 21px;
    }

    .large-card .project-image-wrap img,
    .small-card .project-image-wrap img {
        height: 300px;
    }
}




.rola-types-dark{

background:#0f1115;
padding:120px 0;

}

.types-dark-heading{

max-width:850px;
margin:0 auto 70px auto;

}

.types-dark-eyebrow{

display:inline-block;
padding:8px 18px;
border-radius:40px;

background:rgba(255,255,255,0.06);
color:#ff4a57;

font-size:13px;
font-weight:600;

margin-bottom:18px;

}

.types-dark-heading h2{

font-size:48px;
line-height:1.15;
font-weight:700;

color:#fff;

margin-bottom:18px;

}

.types-dark-heading p{

font-size:18px;
line-height:1.8;

color:#a5a5a5;

}

.rola-types-dark-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

/* CARD */

.rola-dark-card{

display:block;
background:#161a21;

border-radius:20px;
overflow:hidden;

text-decoration:none;

transition:all .3s ease;

}

.rola-dark-card:hover{

transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,0.45);

}

.rola-dark-image{

overflow:hidden;

}

.rola-dark-image img{

width:100%;
height:240px;
object-fit:cover;

transition:transform .5s;

}

.rola-dark-card:hover img{

transform:scale(1.05);

}

.rola-dark-content{

padding:24px;

}

.rola-dark-tag{

font-size:12px;
letter-spacing:.5px;



color:#ff4a57;
font-weight:700;

display:block;

margin-bottom:10px;

}

.rola-dark-content h3{

font-size:22px;
font-weight:700;

color:#fff;

margin-bottom:10px;

}

.rola-dark-content p{

font-size:15px;
line-height:1.7;

color:#9a9a9a;

}


/* responsive */

@media(max-width:991px){

.rola-types-dark-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:600px){

.rola-types-dark-grid{

grid-template-columns:1fr;

}

.types-dark-heading h2{

font-size:34px;

}

}





.rola-benefits-section {
    padding: 110px 0;
    background: #ffffff;
}

.benefits-intro {
    padding-right: 30px;
}

.benefits-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(177, 27, 46, 0.08);
    border: 1px solid rgba(177, 27, 46, 0.16);
    color: #b11b2e;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.benefits-intro h2 {
    margin: 0 0 18px 0;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
    color: #1f1f1f;
}

.benefits-intro p {
    margin: 0 0 28px 0;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    max-width: 580px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.benefit-card {
    background: #f8f8f8;
    border: 1px solid #ececec;
    border-radius: 22px;
    padding: 28px;
    min-height: 240px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.04);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.08);
}

.benefit-number {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 700;
    color: #b11b2e;
    letter-spacing: 1px;
}

.benefit-card h3 {
    margin: 0 0 12px 0;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: #1f1f1f;
}

.benefit-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #666;
}

@media (max-width: 991px) {
    .rola-benefits-section {
        padding: 80px 0;
    }

    .benefits-intro {
        padding-right: 0;
        margin-bottom: 35px;
    }

    .benefits-intro h2 {
        font-size: 34px;
    }

    .benefits-intro p {
        font-size: 17px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .rola-benefits-section {
        padding: 55px 0;
    }

    .benefits-intro h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .benefits-intro p {
        font-size: 16px;
        line-height: 1.7;
    }

    .benefit-card {
        padding: 22px;
        min-height: auto;
    }

    .benefit-card h3 {
        font-size: 21px;
    }

    .benefit-card p {
        font-size: 15px;
    }
}





.cta-final-section{

background:#111317;
padding:110px 0;

}

.cta-final-wrapper{

max-width:900px;
margin:auto;
text-align:center;

}

.cta-eyebrow{

display:inline-block;
margin-bottom:18px;

padding:8px 18px;
border-radius:40px;

background:rgba(255,255,255,0.08);
color:#ff4a57;

font-size:13px;
font-weight:600;

}

.cta-final-text h2{

font-size:44px;
line-height:1.15;
color:#fff;

margin-bottom:20px;

}

.cta-final-text p{

font-size:18px;
line-height:1.8;

color:#b6b6b6;

max-width:700px;
margin:0 auto 35px auto;

}

.cta-buttons{

display:flex;
justify-content:center;
gap:16px;
flex-wrap:wrap;

margin-bottom:45px;

}

.cta-stat{

display:inline-block;
margin:0 25px;
text-align:center;

}

.cta-stat strong{

display:block;

font-size:28px;
color:#fff;

}

.cta-stat span{

font-size:14px;
color:#9a9a9a;

}

@media(max-width:768px){

.cta-final-text h2{

font-size:32px;

}

.cta-final-text p{

font-size:16px;

}

}




.cta-light-section{

padding:120px 0;
background:#f7f7f7;

}

.cta-light-box{

max-width:900px;
margin:auto;
text-align:center;

background:#ffffff;

padding:70px 60px;

border-radius:24px;

box-shadow:0 20px 60px rgba(0,0,0,0.06);

}

.cta-light-eyebrow{

display:inline-block;
margin-bottom:18px;

padding:8px 18px;
border-radius:40px;

background:rgba(177,27,46,0.08);
border:1px solid rgba(177,27,46,0.18);

color:#b11b2e;

font-size:13px;
font-weight:600;

}

.cta-light-box h2{

font-size:42px;
line-height:1.15;
margin-bottom:20px;

color:#1f1f1f;

}

.cta-light-box p{

font-size:18px;
line-height:1.8;

color:#666;

max-width:650px;
margin:0 auto 35px auto;

}

.cta-light-buttons{

display:flex;
justify-content:center;
gap:16px;
flex-wrap:wrap;

margin-bottom:40px;

}

.cta-light-trust{

display:flex;
justify-content:center;
gap:40px;

}

.cta-light-stat{

text-align:center;

}

.cta-light-stat strong{

display:block;

font-size:26px;
color:#1f1f1f;

}

.cta-light-stat span{

font-size:14px;
color:#777;

}

@media(max-width:768px){

.cta-light-box{

padding:50px 35px;

}

.cta-light-box h2{

font-size:32px;

}

.cta-light-box p{

font-size:16px;

}

.cta-light-trust{

flex-direction:column;
gap:12px;

}

}


.hero-garage {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
  color: #fff;
  background: url('imgs/garazoportes/garazoportes.jpg') center/cover no-repeat;
}

/* overlay για premium contrast */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75) 30%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

/* content */
.hero-content {
  position: relative;
  max-width: 650px;
  z-index: 2;
}

/* heading */
.hero-content h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

/* subtext */
.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #e5e5e5;
}

/* benefits */
.hero-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.hero-benefits li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #c62828;
  color: #fff;
  padding: 14px 26px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #a61e1e;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 14px 26px;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  background: #fff;
  color: #000;
}

/* responsive */
@media (max-width: 768px) {
  .hero-garage {
    height: auto;
    padding: 80px 20px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-sub {
    font-size: 16px;
  }
}

.hero-content h1 {
  font-size: 46px;
  font-weight: 800;
  color: #ffffff;
}

text-shadow: 0 2px 10px rgba(0,0,0,0.4);

.hero-benefits li {
  color: #ffffff;
  opacity: 0.95;
}

.btn-secondary {
  border: 1.5px solid #fff;
}



.hero-benefits li {
  color: #ffffff !important;
  opacity: 1;
}

.garage-why-section {
  padding: 90px 0;
  background: #ffffff;
}

.garage-why-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.garage-why-image img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.10);
}

.garage-why-content {
  max-width: 620px;
}

.garage-section-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c62828;
}

.garage-why-content h2 {
  margin-bottom: 18px;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.5px;
}

.garage-why-intro {
  margin-bottom: 30px;
  font-size: 17px;
  line-height: 1.8;
  color: #5a5a5a;
}

.garage-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.garage-why-item {
  background: #f8f8f8;
  border: 1px solid #ededed;
  border-radius: 10px;
  padding: 24px 22px;
  transition: all 0.3s ease;
}

.garage-why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.garage-why-item h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: #111111;
}

.garage-why-item p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #5d5d5d;
}

@media (max-width: 991px) {
  .garage-why-wrap {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .garage-why-content {
    max-width: 100%;
  }

  .garage-why-content h2 {
    font-size: 32px;
  }

  .garage-why-grid {
    grid-template-columns: 1fr;
  }

  .garage-why-image img {
    max-height: 500px;
  }
}

@media (max-width: 767px) {
  .garage-why-section {
    padding: 70px 0;
  }

  .garage-why-content h2 {
    font-size: 28px;
  }

  .garage-why-intro {
    font-size: 16px;
  }

  .garage-why-item {
    padding: 20px 18px;
  }

  .garage-why-item h3 {
    font-size: 18px;
  }

  .garage-why-item p {
    font-size: 14px;
  }
}



.garage-solutions-section {
  padding: 90px 0;
  background: #f7f7f7;
}

.garage-solutions-heading {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
}

.garage-solutions-heading h2 {
  margin-bottom: 18px;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.5px;
}

.garage-solutions-heading p {
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.8;
  color: #5a5a5a;
}

.garage-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.garage-solution-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.garage-solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.garage-solution-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.garage-solution-content {
  padding: 26px 24px 28px;
}

.garage-solution-content h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  color: #111111;
}

.garage-solution-content p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #5d5d5d;
}

@media (max-width: 991px) {
  .garage-solutions-grid {
    grid-template-columns: 1fr;
  }

  .garage-solutions-heading h2 {
    font-size: 32px;
  }

  .garage-solution-image img {
    height: auto;
  }
}

@media (max-width: 767px) {
  .garage-solutions-section {
    padding: 70px 0;
  }

  .garage-solutions-heading h2 {
    font-size: 28px;
  }

  .garage-solutions-heading p {
    font-size: 16px;
  }

  .garage-solution-content {
    padding: 22px 20px 24px;
  }

  .garage-solution-content h3 {
    font-size: 20px;
  }

  .garage-solution-content p {
    font-size: 14px;
  }
}



.garage-types-section {
  padding: 90px 0;
  background: #ffffff;
}

.garage-types-heading {
  margin-bottom: 50px;
}

.garage-types-heading h2 {
  font-size: 40px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.5px;
}

/* GRID */
.garage-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* CARD = clickable */
.garage-type-card {
  display: block;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  position: relative;
  transition: all 0.3s ease;
}

/* IMAGE */
.garage-type-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* DARK OVERLAY */
.garage-type-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.1)
  );
}

/* TITLE πάνω στην εικόνα */
.garage-type-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}

.garage-type-content h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

/* HOVER EFFECT */
.garage-type-card:hover img {
  transform: scale(1.05);
}

.garage-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .garage-types-grid {
    grid-template-columns: 1fr;
  }

  .garage-type-image img {
    height: 280px;
  }

  .garage-types-heading h2 {
    font-size: 30px;
  }
}



.garage-types-dark-section {
  padding: 100px 0;
  background: #070b14;
}

.garage-types-dark-heading {
  max-width: 900px;
  margin: 0 auto 60px;
}

.garage-types-dark-kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d92b2b;
}

.garage-types-dark-heading h2 {
  margin-bottom: 18px;
  font-size: 56px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1px;
  color: #ffffff;
}

.garage-types-dark-heading p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.garage-types-dark-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.garage-dark-card {
  display: block;
  text-decoration: none;
  background: #0d1320;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.garage-dark-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.garage-dark-card-image {
  background: #111;
}

.garage-dark-card-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.garage-dark-card:hover .garage-dark-card-image img {
  transform: scale(1.04);
}

.garage-dark-card-content {
  padding: 24px 24px 28px;
}

.garage-dark-card-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #e53935;
}

.garage-dark-card-content h3 {
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.garage-dark-card-content p {
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1199px) {
  .garage-types-dark-heading h2 {
    font-size: 46px;
  }

  .garage-dark-card-content h3 {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .garage-types-dark-grid {
    grid-template-columns: 1fr
  }
}
.garage-types-dark-heading {
  max-width: 780px;
  margin: 0 auto 45px;
}

.garage-types-dark-heading h2 {
  margin-bottom: 16px;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: #ffffff;
}

.garage-types-dark-heading p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}

.garage-types-dark-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 460px));
  justify-content: center;
  gap: 26px;
}

.garage-dark-card-image img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  display: block;
  background: #f2f2f2;
  transition: transform 0.45s ease;
}

.garage-dark-card-content {
  padding: 18px 18px 20px;
}

.garage-dark-card-content h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.garage-dark-card-content p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.garage-types-dark-heading h2 {
  margin-bottom: 14px;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.garage-types-dark-heading p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.garage-types-dark-kicker {
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 2px;
  color: #d92b2b;
}

.garage-dark-card-content h3 {
  font-size: 22px;
}

.garage-dark-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}



.why-us {
  padding: 80px 20px;
  background: #f9f9f9;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-header p {
  color: #666;
  font-size: 16px;
}

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

.why-item {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 10px;
  transition: 0.3s;
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.icon {
  font-size: 28px;
  margin-bottom: 15px;
}

.why-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.why-item p {
  font-size: 14px;
  color: #666;
}


.garage-final-cta.light {
  padding: 90px 0;
  background: #f7f8fa;
}

.garage-final-cta.light .garage-final-cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;

  padding: 50px;
  border-radius: 16px;

  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.garage-final-cta.light .garage-final-cta-content {
  max-width: 700px;
}

.garage-final-cta.light .garage-final-cta-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #d92b2b;
}

.garage-final-cta.light h2 {
  margin-bottom: 16px;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  color: #111;
}

.garage-final-cta.light p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

.garage-final-cta.light .garage-final-cta-points {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.garage-final-cta.light .garage-final-cta-points li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  color: #333;
}

.garage-final-cta.light .garage-final-cta-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d92b2b;
}

/* buttons */

.garage-final-cta.light .garage-final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.garage-final-cta.light .garage-final-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.garage-final-cta.light .garage-final-btn.primary {
  background: #d92b2b;
  color: #fff;
}

.garage-final-cta.light .garage-final-btn.primary:hover {
  background: #b82323;
  transform: translateY(-2px);
}

.garage-final-cta.light .garage-final-btn.secondary {
  border: 1px solid #ddd;
  color: #111;
  background: #fff;
}

.garage-final-cta.light .garage-final-btn.secondary:hover {
  background: #f3f3f3;
  transform: translateY(-2px);
}

/* responsive */

@media (max-width: 991px) {
  .garage-final-cta.light .garage-final-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .garage-final-cta.light .garage-final-cta-actions {
    width: 100%;
  }

  .garage-final-cta.light .garage-final-btn {
    width: 100%;
  }
}


.rolas-v2-content {
  max-width: 540px;
}

.rolas-v2-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  color: #d92d20;
}

.rolas-v2-title {
  margin: 0 0 22px;
  font-size: 58px;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -1.4px;
  color: #4b4b52;
}

.rolas-v2-lead {
  margin: 0 0 24px;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  color: #5f6b7a;
}

.rolas-v2-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.rolas-v2-benefits li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: #7a8494;
}

.rolas-v2-benefits li:last-child {
  margin-bottom: 0;
}

.rolas-v2-benefits li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 13px;
  font-weight: 700;
  color: #d92d20;
}

.rolas-v2-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.rolas-v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.rolas-v2-btn-primary {
  background: #d92d20;
  color: #ffffff;
  border: 1px solid #d92d20;
}

.rolas-v2-btn-primary:hover {
  background: #b42318;
  border-color: #b42318;
  color: #ffffff;
}

.rolas-v2-btn-secondary {
  background: transparent;
  color: #5a5f68;
  border: 1px solid #d9d9de;
}

.rolas-v2-btn-secondary:hover {
  background: #f3f4f6;
  color: #3f434a;
}

.rolas-v2-trust {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.rolas-v2-trust-box {
  min-width: 162px;
  padding: 16px 18px;
  background: #f3f3f4;
  border-radius: 12px;
}

.rolas-v2-trust-box strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #4b4b52;
}

.rolas-v2-trust-box span {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  color: #7a8494;
}

@media (max-width: 991px) {
  .rolas-v2-title {
    font-size: 46px;
    line-height: 1.1;
  }
}

@media (max-width: 767px) {
  .rolas-v2-content {
    max-width: 100%;
  }

  .rolas-v2-title {
    font-size: 38px;
    line-height: 1.12;
    letter-spacing: -0.8px;
  }

  .rolas-v2-lead {
    font-size: 16px;
  }

  .rolas-v2-benefits li {
    font-size: 15px;
  }

  .rolas-v2-trust {
    flex-direction: column;
  }

  .rolas-v2-trust-box {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 767px) {
  .hero-rolas-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hero-main-image,
  .hero-floating-image {
    position: relative;
    width: 100%;
    max-width: 100%;
  }

  .hero-main-image img,
  .hero-floating-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .hero-floating-image {
    right: auto;
    left: auto;
    top: auto;
    bottom: auto;
    transform: none;
    z-index: 2;
  }
}
