
:root {
    --red: #C51D34;
    --darkgrey: #2E2E30;
    --darkgreytwo: #222223;
    --lightgrey: #808080;
    --bookgrey: #efefef;
    --thingrey: #f5f5f5;
    --white: #fff;
  --site-topbar-height: 40px;
  --site-header-height: 96px;
    --site-header-offset: calc(var(--site-topbar-height) + var(--site-header-height));
}

html {
    scroll-behavior: smooth;
  overflow-x: clip;
  }

body {
    font-family: Montserrat, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
  overflow-x: hidden;
  background: #0c0c0f;
  color: var(--white);
  transition: background-color 0.35s ease, color 0.35s ease;
}

body.nav-open {
  overflow: hidden;
}

::-webkit-scrollbar {
    width: 5px;
  }
  
  ::-webkit-scrollbar-track {
    background: #060112!important;
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--red);
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: var(--red);
  }

  a { text-decoration: none ; color: var(--white)}

input[type=radio] {
    display: inline;
    width: auto;
}

p.error {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 16px;
  background: rgba(197,29,52,0.1);
  border: 1px solid rgba(197,29,52,0.3);
  color: #f87171;
}

p.success {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 16px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  color: #4ade80;
}

.text-center {
    text-align: center;
}

.site-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1200;
  background: linear-gradient(90deg, #161618 0%, #2b1218 48%, #5f1322 100%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-topbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 12px 40px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.site-topbar__inner > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-topbar__item--mobile,
.site-topbar__label--mobile {
  display: none;
}

.site-topbar__item:hover {
  color: #ffffff;
}

.site-topbar__inner i {
  color: #f6cabd;
}

.site-header-shell {
  position: relative;
  padding-top: var(--site-header-offset);
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(197, 29, 52, 0.28), transparent 26%),
    linear-gradient(135deg, rgba(10, 11, 15, 0.96) 0%, rgba(20, 20, 24, 0.86) 50%, rgba(61, 11, 24, 0.9) 100%);
}

.site-header-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.94) 0%, rgba(8, 8, 10, 0.54) 44%, rgba(8, 8, 10, 0.86) 100%),
    var(--hero-image) center/cover no-repeat;
  transform: scale(1.04);
}

.site-header-shell::after {
  content: "";
  position: absolute;
  inset: auto -10% -120px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 238, 232, 0.18), rgba(255, 238, 232, 0));
  filter: blur(12px);
}

.site-header,
.site-hero {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  top: var(--site-topbar-height);
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1100;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.86), rgba(8, 8, 10, 0.62));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: visible;
  transition: top 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.site-brand__mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #ef475f, #8f1327);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.site-brand__copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.site-brand__copy strong {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-brand__copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header__phone,
.site-header__cta,
.site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-header__phone {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header__cta,
.site-button--primary {
  color: var(--white);
  background: linear-gradient(135deg, #e43650 0%, #b1172d 100%);
  box-shadow: 0 18px 34px rgba(156, 15, 38, 0.3);
}

.site-button--secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.site-header__phone:hover,
.site-header__cta:hover,
.site-button:hover {
  transform: translateY(-2px);
}

.site-nav-toggle {
  display: none;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.site-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.site-nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.98), rgba(18, 18, 24, 0.96));
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.26);
}

.site-mobile-nav.is-open {
  display: block;
  max-height: 80vh;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-mobile-nav__content {
  padding: 24px 22px 28px;
}

.site-mobile-nav__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.site-mobile-nav__eyebrow,
.site-hero__eyebrow,
.site-hero__panel-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-mobile-nav__eyebrow,
.site-hero__panel-eyebrow {
  color: #f6cabd;
}

.site-mobile-nav__meta a {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.site-mobile-nav__links {
  display: grid;
  gap: 10px;
}

.site-mobile-nav__links a {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-weight: 700;
}

.site-mobile-nav__links a.is-active {
  background: rgba(228, 54, 80, 0.22);
  border: 1px solid rgba(228, 54, 80, 0.35);
}

.site-mobile-nav__cta {
  justify-content: center;
  background: linear-gradient(135deg, #e43650 0%, #b1172d 100%) !important;
}

.site-hero {
  padding: 72px 0 82px;
}

.site-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(290px, 0.7fr);
  gap: 34px;
  align-items: start;
  min-width: 0;
}

.site-hero__copy {
  max-width: 760px;
  min-width: 0;
}

.site-hero__copy > * {
  max-width: 100%;
}

.site-hero__eyebrow {
  color: #f4c2c9;
  margin-bottom: 20px;
}

.site-hero__title {
  margin: 0;
  display: grid;
  gap: 6px;
  font-size: clamp(2.2rem, 4.4vw, 3.9rem);
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  max-width: 100%;
}

.site-hero__title span {
  display: block;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.site-hero__title .is-accent {
  color: #ff7d8f;
}

.site-hero__description {
  max-width: 640px;
  margin: 24px 0 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.site-hero__highlights {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  max-width: 760px;
}

.site-hero__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.5;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.site-hero__highlights i {
  color: #ff7d8f;
  margin-top: 4px;
}

.site-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.site-hero__pills {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-hero__pills span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
}

.site-hero__panel {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.site-hero__panel h2 {
  margin: 14px 0 12px;
  font-size: 1.5rem;
  line-height: 1.25;
}

.site-hero__panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.site-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.site-hero__stat {
  padding: 16px 14px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-hero__stat strong {
  display: block;
  font-size: 1.55rem;
  margin-bottom: 4px;
}

.site-hero__stat span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
  line-height: 1.4;
  word-break: break-word;
hyphens: auto;
white-space: normal;
}

.site-hero--home {
  padding-top: 92px;
  padding-bottom: 100px;
}

.progressbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    counter-reset: step;
}

.progressbar::before, .progress {
    content: "";
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    height: 4px;
    width:100%;
    background-color: #dcdcdc;
    z-index: 1;
}

.progress {
    background-color: var(--red);
    width: 0%;
    transition: 0.3s;
}

.progress-step {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 700;
}

.progress-step::before {
    counter-increment: step;
    content: counter(step);
}


.progress-step-active {
    background-color: var(--red);
    color: #fff;
}

.form {
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    color: var(--white);
}

.form label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 6px;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form input[type="number"],
.form input[type="date"],
.form select,
.form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 11px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--white);
    font-family: inherit;
    font-size: 0.96rem;
    outline: none;
    transition: border-color 0.25s;
}

.form input[type="text"]:focus,
.form input[type="email"]:focus,
.form input[type="tel"]:focus,
.form input[type="number"]:focus,
.form input[type="date"]:focus,
.form select:focus,
.form textarea:focus {
    border-color: rgba(197,29,52,0.6);
    background: rgba(255,255,255,0.07);
}

.form select option {
    background: #1a1a22;
    color: var(--white);
}

.form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) opacity(0.5);
}

.form-step h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.form-step h2 span {
  color: var(--red);
}

.two-grid {
    gap: 0rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.three-grid {
    gap: 0rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.input-group {
    margin: 1rem 0;
}

@keyframes animate {
    from {
        transform: scale(1,0);
        opacity: 0;
    }
    to {
        transform: scale(1,1);
        opacity: 1;
    }
}

.btns-group {
  display: flex;
  justify-content: flex-end; /* подравняване вдясно */
  gap: 15px; /* разстояние между бутоните */
  padding: 20px; /* по желание */
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 28px;
    text-decoration: none;
    background: linear-gradient(135deg, #e43650 0%, #b1172d 100%);
    box-shadow: 0 18px 34px rgba(156, 15, 38, 0.3);
    color: var(--white);
    font-weight: 700;
    font-size: 0.93rem;
    text-align: center;
    cursor: pointer;
    border-radius: 999px;
    border: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    letter-spacing: 0.02em;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(156, 15, 38, 0.42);
}

.width-50 {
    width:50%
}
.width-30 {
  width:30%
}

.width-20 {
  width:20%
}

.m-auto {
    margin: 0 auto;
}

.ml-auto {
  margin-left: auto;
}


.online-offert {
    background: #0c0c0f;
    color: var(--white);
    padding: 70px 50px;
}




.how-we-works {
  background: #13131a;
  color: var(--white);
  padding: 80px 40px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), inset 0 -1px 0 rgba(255,255,255,0.03);
}

.how-we-works__shell {
  max-width: 1280px;
  margin: 0 auto;
}

.how-we-works__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 46px;
}

.how-we-works__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.how-we-works__title {
  margin: 0 0 14px;
  font-size: clamp(1.95rem, 3.9vw, 2.9rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
}

.how-we-works__title span {
  color: var(--red);
}

.how-we-works__sub {
  margin: 0 auto;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.58);
}

.how-we-works .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-form-wrap {
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
}

.center-form-wrap label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}

.center-form-wrap textarea,
.center-form-wrap input:not(.btn),
.center-form-wrap select {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  margin-bottom: 18px;
  font-family: inherit;
  font-size: 0.97rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--white);
  outline: none;
  transition: border-color 0.25s;
}

.center-form-wrap textarea:focus,
.center-form-wrap input:not(.btn):focus,
.center-form-wrap select:focus {
  border-color: rgba(197,29,52,0.6);
  background: rgba(255,255,255,0.07);
}

.center-form-wrap input:not(.btn):disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.center-form-wrap input.btn {
  margin-top: 6px;
  margin-bottom: 0;
}

.center-form-wrap select option {
  background: #1a1a22;
  color: var(--white);
}

.how-we-works .row {  
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
    justify-content: center;
} 

.how-we-works .box {
    max-width: 320px;
    position: relative;
  background: linear-gradient(150deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
    padding: 100px 40px 60px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.how-we-works .box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--red);
    transform: scaleY(0);
    transform-origin: top;
    border-radius: 12px;
    transition: transform 0.5s;
}

.how-we-works .box:hover::before {
    transform: scaleY(1);
    transform-origin: bottom;
    transition: transform 0.5s;
}

.how-we-works .box h2 {
    position: absolute;
    left: 40px;
    top: 40px;
    font-size: 4em;
    font-weight: 800;
    z-index: 1;
    opacity: 1;
    transition: 0.5s;
  color: rgba(255,255,255,0.18);
}

.how-we-works .box:hover h2 {
    opacity: 1;
    color: #FFF;
    transform: translateY(-40px);
}

.how-we-works .box h3 {
    position: relative;
    font-size: 1.5em;
    z-index: 2;
  color: var(--white);
    transition: 0.5s;
}

.how-we-works .box p {
    position: relative;
    z-index: 2;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
    transition: 0.5s;
}

.how-we-works .box:hover h3,
.how-we-works .box:hover p {
    color: #FFF;
}


.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* автоматично подреждане */
  gap: 0.75rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.city-grid li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--dark-grey);
  font-weight: 500;
  font-size: 1rem;
  word-break: break-word; /* предотвратява излизане на текста извън li */
}

.icon {
  width: 25px;
  height: 25px;
  fill: var(--red);
  flex-shrink: 0;
}

/* ─── CTA Banner ──────────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(90deg, #161618 0%, #2b1218 48%, #5f1322 100%);
    border-top: 1px solid rgba(197, 29, 52, 0.15);
    border-bottom: 1px solid rgba(197, 29, 52, 0.15);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.cta-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.cta-banner__copy {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 580px;
}

.cta-banner__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
}

.cta-banner__title {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--white);
    margin: 0;
    line-height: 1.1;
}

.cta-banner__sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.52);
    line-height: 1.65;
    margin: 0;
}

.cta-banner__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.cta-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 28px;
    min-height: 52px;
    border-radius: 999px;
    font-size: 0.93rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.25s ease, box-shadow 0.25s ease, gap 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.cta-banner__btn:hover {
    gap: 16px;
}

.cta-banner__btn--primary {
    background: linear-gradient(135deg, #e43650 0%, #b1172d 100%);
    box-shadow: 0 18px 34px rgba(156, 15, 38, 0.3);
    color: var(--white);
    border: none;
}

.cta-banner__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(156, 15, 38, 0.42);
}

.cta-banner__btn--ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.2);
}

.cta-banner__btn--ghost:hover {
    border-color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
}

@media screen and (max-width: 900px) {
    .cta-banner {
        padding: 64px 24px;
    }
    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 36px;
    }
    .cta-banner__copy {
        align-items: center;
    }
    .cta-banner__actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .cta-banner {
        padding: 48px 16px;
    }
    .cta-banner__actions {
        flex-direction: column;
        width: 100%;
    }
    .cta-banner__btn {
        justify-content: center;
    }
}

.gallery {
  background: #0c0c0f;
  color: var(--white);
  padding: 80px 40px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), inset 0 -1px 0 rgba(255,255,255,0.03);
}

.gallery__shell {
  max-width: 1280px;
  margin: 0 auto;
}

.gallery__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.gallery__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.gallery__title {
  margin: 0 0 14px;
  font-size: clamp(1.95rem, 3.7vw, 2.95rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
}

.gallery__sub {
  margin: 0 auto;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.58);
}

.gallery__chips {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.gallery__chips span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.74);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.gallery .comparsison-wrapper {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
  padding-bottom: 20px;
  }
  
.gallery .comparsison-wrapper .comparison-container {
    position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  touch-action: none;
  background: #101016;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.gallery .comparsison-wrapper .comparison-container:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 29, 52, 0.5);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.gallery .comparsison-wrapper .comparison-container .comparison-labels {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  z-index: 12;
  pointer-events: none;
}

.gallery .comparsison-wrapper .comparison-container .comparison-label {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(2px);
}

.gallery .comparsison-wrapper .comparison-container .comparison-label--before {
  color: rgba(255,255,255,0.82);
  background: rgba(16,16,22,0.55);
}

.gallery .comparsison-wrapper .comparison-container .comparison-label--after {
  color: #fff;
  background: rgba(197, 29, 52, 0.45);
  border-color: rgba(197, 29, 52, 0.7);
}
  
.gallery .comparsison-wrapper .comparison-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
}
  
.gallery .comparsison-wrapper .comparison-container .after-img {
  clip-path: inset(0 50% 0 0);
}
  
.gallery .comparsison-wrapper .comparison-container .slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, rgba(197,29,52,0.85), rgba(197,29,52,0.75));
  z-index: 10;
  transform: translateX(-50%);
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
  
.gallery .comparsison-wrapper .comparison-container .slider-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: var(--white);
  background: linear-gradient(135deg, #c51d34, #8f1425);
  font-weight: bold;
  z-index: 11;
  display: flex;
  pointer-events: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 18px rgba(197, 29, 52, 0.4);
}

.gallery .comparsison-wrapper .comparison-container .slider-icon i {
  font-size: 11px;
}

.gallery .gallery__empty {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  background: rgba(197, 29, 52, 0.78);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 12px 16px;
  border-radius: 8px;
}
  

.user-reviews {
  background: #13131a;
  color: var(--white);
  padding: 80px 40px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), inset 0 -1px 0 rgba(255,255,255,0.03);
}

.user-reviews .reviews-shell {
  max-width: 1280px;
  margin: 0 auto;
}

.user-reviews .user-reviews__header {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.user-reviews .user-reviews__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.user-reviews .user-reviews__title {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--white);
}

.user-reviews .user-reviews__title .count {
  color: var(--red);
}

.user-reviews .user-reviews__sub {
  margin: 0 auto;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.58);
}

.user-reviews .user-reviews__sub span {
  color: rgba(255,255,255,0.86);
  font-weight: 700;
}

.user-reviews .user-reviews__footer {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.user-reviews .user-reviews__cta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #e43650 0%, #b1172d 100%);
  box-shadow: 0 18px 34px rgba(156, 15, 38, 0.3);
  color: var(--white);
  text-decoration: none;
  font-size: 0.93rem;
  letter-spacing: 0.02em;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.user-reviews .user-reviews__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(156, 15, 38, 0.42);
}

.gallery__cta {
  display: flex;
  width: fit-content;
  margin: 36px auto 0;
}

.user-reviews .testimonials-wrap {
  position: relative;
  z-index: 1;
}

.user-reviews .testimonials-column-set {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
  grid-auto-rows: 10px;
}

.user-reviews .testimonials-column-set .testimonials {
  height: fit-content;
  align-self: start;
}

.user-reviews .testimonials-wrap .testimonials {
  background: linear-gradient(145deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px;
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.user-reviews .testimonials-wrap .testimonials::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 46px;
  line-height: 1;
  color: rgba(197, 29, 52, 0.28);
  font-family: Georgia, serif;
}

.user-reviews .testimonials-wrap .testimonials:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 29, 52, 0.42);
  background: linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.26);
}

.user-reviews .testimonials-wrap .testimonials .user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.user-reviews .testimonials-wrap .testimonials .user .img {
  background: linear-gradient(145deg, var(--red), #8e1525);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 14px rgba(197, 29, 52, 0.3);
}

.user-reviews .testimonials-wrap .testimonials .user .img .user-initials {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.user-reviews .testimonials-wrap .testimonials .user span.userinfo {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.user-reviews .review-source {
  margin-left: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.84);
  background: rgba(255,255,255,0.05);
}

.user-reviews .review-source i {
  font-size: 12px;
}

.user-reviews .review-source .review-source-logo {
  width: 14px;
  height: 14px;
  object-fit: contain;
  border-radius: 3px;
}

.user-reviews .review-source .review-source-logo-fallback {
  display: none;
  font-size: 12px;
}

.user-reviews .review-source-google,
.user-reviews .review-source-myhammer,
.user-reviews .review-source-website {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.84);
}

.user-reviews .review-context {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 12px;
}

.user-reviews .review-city {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 6px 10px;
}

.user-reviews .review-city i {
  color: var(--red);
}

.user-reviews .review-text {
  margin: 0 0 16px;
  color: rgba(255,255,255,0.74);
  line-height: 1.72;
  font-size: 0.95rem;
}

.user-reviews .review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.11);
  flex-wrap: wrap;
}

.user-reviews .review-date {
  margin: 0;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

.user-reviews .review-stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #ffcc43;
  font-size: 14px;
}

.user-reviews .review-stars .dimmed {
  opacity: 0.32;
}

.user-reviews .review-empty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  background: rgba(197, 29, 52, 0.82);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 14px;
  border-radius: 8px;
  margin: 0;
}

.clear {
    clear: both;
}

.form-group a {
  color: var(--red);
  font-weight: 600;
  transition: color 0.2s;
}

.form-group a:hover {
  color: rgba(255,255,255,0.85);
}

.agb-impressum-datenschutz-wrap {
  padding: 70px 50px;
  background: #0c0c0f;
  color: var(--white);
}

.legal-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.legal-header__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.legal-header__title {
  margin: 0 0 14px;
  font-size: clamp(1.95rem, 3.7vw, 2.95rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
}

.legal-header__sub {
  margin: 0 auto;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.58);
}

.agb-impressum-datenschutz-container {
  background: rgba(255,255,255,0.025);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 50px;
}

.agb-impressum-datenschutz-container .section {
  padding: 22px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.agb-impressum-datenschutz-container .section:last-child {
  border-bottom: none;
}

.agb-impressum-datenschutz-container .section p,
.agb-impressum-datenschutz-container .section li {
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
}

.agb-impressum-datenschutz-container .section ul {
  padding-left: 1.3em;
  margin-top: 6px;
}

.agb-impressum-datenschutz-container .section a {
  color: var(--red);
  font-weight: 500;
  transition: .3s;
}

.agb-impressum-datenschutz-container .section a:hover {
  color: rgba(255,255,255,0.9);
}

.agb-impressum-datenschutz-container .section h2 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 12px;
  text-align: left;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.agb-impressum-datenschutz-container .section h2 span {
  color: var(--red);
}

/* ─── Write Review Section ─────────────────────────────────────── */
.write-review-section {
  background: #0c0c0f;
  padding: 80px 50px 60px;
}

.write-review-section__shell {
  max-width: 720px;
  margin: 0 auto;
}

.write-review-section__form {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 40px 36px;
}

#form-message p {
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

#form-message p.success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  color: #4ade80;
}

#form-message p.error {
  background: rgba(197,29,52,0.1);
  border: 1px solid rgba(197,29,52,0.3);
  color: #f87171;
}


.prefooter {
    background: linear-gradient(90deg, #161618 0%, #2b1218 48%, #5f1322 100%);
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 60px 40px;
    gap: 32px;
    border-top: 1px solid rgba(197, 29, 52, 0.15);
    border-bottom: 1px solid rgba(197, 29, 52, 0.15);
  }
  
  .prefooter .left {
    flex: 1 1 300px;
  }
  
  .prefooter .left h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  
  .prefooter .left p {
    font-size: 1rem;
    margin-bottom: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
  }
  
  .prefooter .left span {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .prefooter .left i {
    margin-right: 10px;
    color: var(--red);
  }
  
  .prefooter .right {
    flex: 0 0 auto;
  }
  
  .prefooter__btn {
    background: linear-gradient(135deg, #e43650 0%, #b1172d 100%);
    box-shadow: 0 18px 34px rgba(156, 15, 38, 0.3);
    color: var(--white);
    border: none;
    font-weight: 700;
    padding: 0 28px;
    min-height: 52px;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, gap 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.93rem;
    letter-spacing: 0.03em;
  }
  
  .prefooter__btn:hover { 
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(156, 15, 38, 0.42);
    gap: 14px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .prefooter {
      flex-direction: column;
      text-align: center;
    }
  
    .prefooter .left,
    .prefooter .right {
      flex: 1 1 100%;
    }
  
    .prefooter .btn {
      margin-top: 20px;
    }
  }

footer {
  background-color: var(--darkgreytwo);
  color: var(--thingrey);
  padding: 50px 50px 0px 50px;
}

footer .grid {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-bottom: 20px;
}

footer .grid > div h3 {
  color: var(--red);
}

footer .grid > div ul {
  list-style: none; padding: 0;
}

footer .grid > div ul li {
  margin-block-start: 1em;margin-block-end: 1em;margin-inline-start: 0px;margin-inline-end: 0px;
}

footer .grid > div ul li a { color: #fff; text-decoration: none; transition: .3s; }

footer .grid > div i {
  color: var(--red);
  margin-right: 5px;
  transition: .3s;
}

footer .grid > div a:hover { 
  letter-spacing: 2px;
  transition: .3s;
}

footer .grid > div a:hover i { margin-left: 5px; color: var(--white); transition: .3s; }

footer .copyright {
  border-top: 1px solid var(--darkgrey); padding: 30px 0px; color: var(--lightgrey); font-size: 14px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px;
}

footer .copyright .devignix {
  background: linear-gradient(131.8deg, #04e4ff 0, #009cff 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #04e4ff;
  color: transparent;
  text-shadow: 0 0 10px rgba(4, 228, 255, .5);
  font-weight:600;
}

a.devignix {
  color: #fc7104!important;
  font-weight:500;
  transition: .3s;
}

a.devignix:hover {
  color: var(--darkgreytwo)!important;
}


/* ─── Services page – svc-section ─────────────────────────────── */
.svc-section {
    background: linear-gradient(180deg, #0c0c0f 0%, #13131a 100%);
    padding: 80px 40px;
}

.svc-section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px;
}

.svc-section__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
}

.svc-section__title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--white);
    margin: 0 0 16px;
    line-height: 1.1;
}

.svc-section__subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
    line-height: 1.65;
}

/* ─── Service blocks list ──────────────────────────────────────── */
.svc-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.svc-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    transition: border-color 0.3s ease;
    min-height: 380px;
}

.svc-block:hover {
    border-color: rgba(197, 29, 52, 0.35);
}

.svc-block--reverse {
    direction: rtl;
}

.svc-block--reverse > * {
    direction: ltr;
}

/* Image side */
.svc-block__media {
    height: 100%;
    min-height: 380px;
    overflow: hidden;
    position: relative;
}

.svc-block__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12,12,15,0) 60%, rgba(12,12,15,0.7) 100%);
    pointer-events: none;
}

.svc-block--reverse .svc-block__media::after {
    background: linear-gradient(270deg, rgba(12,12,15,0) 60%, rgba(12,12,15,0.7) 100%);
}

.svc-block__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.svc-block:hover .svc-block__media img {
    transform: scale(1.04);
}

/* Body side */
.svc-block__body {
    padding: 52px 56px;
}

.svc-block__num {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(197, 29, 52, 0.18);
    letter-spacing: -0.04em;
    margin-bottom: 12px;
    user-select: none;
}

.svc-block__title {
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--white);
    margin: 0 0 14px;
}

.svc-block__desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.58);
    line-height: 1.65;
    margin: 0 0 24px;
}

.svc-block__checks {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.svc-block__checks li {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.svc-block__checks li i {
    flex-shrink: 0;
    margin-top: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.svc-block__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--red);
    border-bottom: 1px solid rgba(197, 29, 52, 0.35);
    padding-bottom: 3px;
    transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}

.svc-block__cta:hover {
    color: #e8364f;
    border-color: #e8364f;
    gap: 14px;
}

/* ─── Responsive ───────────────────────────────────────────────── */
@media screen and (max-width: 900px) {
    .svc-section {
        padding: 60px 24px;
    }
    .svc-block,
    .svc-block--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .svc-block__media,
    .svc-block--reverse .svc-block__media::after {
        min-height: 240px;
    }
    .svc-block__media::after,
    .svc-block--reverse .svc-block__media::after {
        background: linear-gradient(180deg, transparent 50%, rgba(12,12,15,0.8) 100%);
    }
    .svc-block__body {
        padding: 32px 28px 36px;
    }
    .svc-block__num {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 500px) {
    .svc-section {
        padding: 48px 16px;
    }
    .svc-section__header {
        margin-bottom: 48px;
    }
    .svc-block__body {
        padding: 24px 20px 28px;
    }
}

/* ─── Homepage services preview – svc-preview ─────────────────── */
.svc-preview {
  background: #0c0c0f;
  padding: 80px 40px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), inset 0 -1px 0 rgba(255,255,255,0.03);
}

.svc-preview__header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 52px;
}

.svc-preview__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.svc-card {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    transition: border-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.svc-card:hover {
    border-color: rgba(197, 29, 52, 0.4);
    transform: translateY(-4px);
}

.svc-card__media {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.svc-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.svc-card:hover .svc-card__media img {
    transform: scale(1.06);
}

.svc-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12,12,15,0.1) 0%, rgba(12,12,15,0.7) 100%);
    pointer-events: none;
}

.svc-card__num {
    position: absolute;
    bottom: 14px;
    right: 18px;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,0.15);
    letter-spacing: -0.04em;
    z-index: 1;
    user-select: none;
}

.svc-card__body {
    padding: 28px 30px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.svc-card__title {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--white);
    margin: 0 0 10px;
}

.svc-card__desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.52);
    line-height: 1.6;
    margin: 0 0 18px;
}

.svc-card__checks {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.svc-card__checks li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    gap: 8px;
}

.svc-card__checks li i {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-size: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.svc-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--red);
    margin-top: auto;
    transition: gap 0.2s ease;
}

.svc-card:hover .svc-card__link {
    gap: 12px;
}

.svc-preview__footer {
    max-width: 1200px;
    margin: 40px auto 0;
    text-align: center;
}

/* Responsive */
@media screen and (max-width: 900px) {
    .svc-preview {
        padding: 60px 24px;
    }
    .svc-preview__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .svc-card__media {
        height: 180px;
    }
    .svc-card__body {
        padding: 20px 22px 24px;
    }
}

@media screen and (max-width: 550px) {
    .svc-preview {
        padding: 48px 16px;
    }
    .svc-preview__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .svc-card__media {
        height: 200px;
    }
}

/* ─── Why-us – feat-section ───────────────────────────────────── */
.feat-section {
  background: #0c0c0f;
    padding: 100px 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.feat-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 72px;
    align-items: start;
}

/* Left sticky lead */
.feat-section__lead {
    position: sticky;
    top: calc(var(--site-header-offset) + 28px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feat-section__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
}

.feat-section__title {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--white);
    margin: 0;
    line-height: 1.1;
}

.feat-section__sub {
    font-size: 0.96rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin: 0;
}

.feat-section__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    margin-top: 8px;
    padding: 0 28px;
    min-height: 52px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e43650 0%, #b1172d 100%);
    box-shadow: 0 18px 34px rgba(156, 15, 38, 0.3);
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, gap 0.2s ease;
}

.feat-section__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(156, 15, 38, 0.42);
    gap: 16px;
}

/* Right feature grid */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    overflow: hidden;
}

.feat-item {
    padding: 32px 36px;
    border-right: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    position: relative;
    transition: background 0.25s ease;
}

/* Remove right border on even cols, bottom border on last row */
.feat-item:nth-child(2n) {
    border-right: none;
}
.feat-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.feat-item::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feat-item:hover {
    background: rgba(255,255,255,0.03);
}

.feat-item:hover::before {
    transform: scaleX(1);
}

.feat-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(197, 29, 52, 0.12);
    border: 1px solid rgba(197, 29, 52, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.feat-item__icon i {
    font-size: 1.1rem;
    color: var(--red);
    transition: color 0.25s ease;
}

.feat-item:hover .feat-item__icon {
    background: rgba(197, 29, 52, 0.2);
    border-color: rgba(197, 29, 52, 0.5);
}

.feat-item__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}

.feat-item__desc {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media screen and (max-width: 1000px) {
    .feat-section__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .feat-section__lead {
        position: static;
        text-align: center;
        align-items: center;
    }
    .feat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 900px) {
    .feat-section {
        padding: 64px 24px;
    }
    .feat-item {
        padding: 24px 24px;
    }
}

@media screen and (max-width: 480px) {
    .feat-section {
        padding: 48px 16px;
    }
    .feat-grid {
        grid-template-columns: 1fr;
    }
    .feat-item:nth-child(2n) {
        border-right: none;
    }
    .feat-item:nth-last-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .feat-item:last-child {
        border-bottom: none;
    }
}

  /* ─── City Local Section ──────────────────────────────────────── */
  .city-local {
    position: relative;
    padding: 84px 40px;
    background:
      radial-gradient(circle at 20% 0%, rgba(197, 29, 52, 0.12), transparent 32%),
      linear-gradient(180deg, #0e0f14 0%, #15161d 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), inset 0 -1px 0 rgba(255,255,255,0.03);
  }

  .city-local__inner {
    max-width: 1220px;
    margin: 0 auto;
  }

  .city-local__intro {
    max-width: 760px;
    margin-bottom: 36px;
  }

  .city-local__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
  }

  .city-local__title {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--white);
  }

  .city-local__sub {
    margin: 0;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.58);
  }

  .city-local__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: start;
    gap: 20px;
  }

  .city-local__panel {
    min-height: 0%;
    padding: 30px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
  }

  .city-local__panel--primary {
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  }

  .city-local__panel--accent {
    background: linear-gradient(160deg, rgba(197,29,52,0.16), rgba(255,255,255,0.03));
  }

  .city-local__label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.48);
  }

  .city-local__panel-title {
    margin: 0 0 12px;
    font-size: 1.45rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--white);
  }

  .city-local__panel-copy {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
  }

  .city-local__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
  }

  .city-local__chip {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
  }

  .city-local__list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 12px;
  }

  .city-local__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.82);
  }

  .city-local__list i {
    color: #ff8a9a;
  }

  @media screen and (max-width: 960px) {
    .city-local__layout {
      grid-template-columns: 1fr;
    }
  }

  @media screen and (max-width: 680px) {
    .city-local {
      padding: 64px 24px;
    }

    .city-local__panel {
      padding: 24px;
      border-radius: 18px;
    }
  }

  @media screen and (max-width: 480px) {
    .city-local {
      padding: 48px 16px;
    }

    .city-local__chips {
      gap: 8px;
    }

    .city-local__chip {
      width: 100%;
      justify-content: center;
    }
  }

/* ─── Cities Section ───────────────────────────────────────────── */
.cities-section {
    background: #13131a;
    padding: 80px 40px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), inset 0 -1px 0 rgba(255,255,255,0.03);
}

.cities-section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.cities-section__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.cities-section__title {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--white);
    margin: 0 0 16px;
    line-height: 1.1;
}

.cities-section__sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    margin: 0;
}

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

.city-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 32px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    text-decoration: none;
    color: inherit;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.city-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(197, 29, 52, 0.4);
    transform: translateY(-4px);
}

.city-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(197, 29, 52, 0.15);
    border: 1px solid rgba(197, 29, 52, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.city-card__icon i {
    font-size: 1.4rem;
    color: var(--red);
}

.city-card:hover .city-card__icon {
    background: rgba(197, 29, 52, 0.25);
    border-color: rgba(197, 29, 52, 0.6);
}

.city-card__name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    letter-spacing: -0.01em;
}

.city-card__desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin: 0;
}

.city-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--red);
    margin-top: auto;
    transition: gap 0.2s ease;
}

.city-card:hover .city-card__link {
    gap: 12px;
}

.cities-section__footer {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
}

/* Responsive */
@media screen and (max-width: 1000px) {
    .cities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

@media screen and (max-width: 680px) {
    .cities-section {
        padding: 64px 24px;
    }
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .city-card {
        padding: 24px;
    }
}

@media screen and (max-width: 480px) {
    .cities-section {
        padding: 48px 16px;
    }
    .cities-section__header {
        margin-bottom: 40px;
    }
}

/* ─── Contact Section ──────────────────────────────────────────── */
.contact-section {
    background: #0c0c0f;
    padding: 80px 40px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), inset 0 -1px 0 rgba(255,255,255,0.03);
}

.contact-section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.contact-section__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.contact-section__title {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--white);
    margin: 0 0 16px;
    line-height: 1.1;
}

.contact-section__sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    margin: 0;
}

.contact-section__form {
    max-width: 800px;
    margin: 0 auto;
}

@media screen and (max-width: 900px) {
    .contact-section {
        padding: 64px 24px;
    }
}

@media screen and (max-width: 480px) {
    .contact-section {
        padding: 48px 16px;
    }
    .contact-section__header {
        margin-bottom: 40px;
    }
}

/* ─── FAQ Section ──────────────────────────────────────────────── */
.faq-section {
    background: #13131a;
    padding: 80px 40px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), inset 0 -1px 0 rgba(255,255,255,0.03);
}

.faq-section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.faq-section__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.faq-section__title {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--white);
    margin: 0 0 16px;
    line-height: 1.1;
}

.faq-section__sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    margin: 0;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    overflow: hidden;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover,
.faq-item.faq-open {
    background: rgba(255,255,255,0.02);
    border-color: rgba(197, 29, 52, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: transparent;
    border: none;
    padding: 22px 28px;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}

.faq-question-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(197, 29, 52, 0.15);
    border: 1px solid rgba(197, 29, 52, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 12px;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.faq-item.faq-open .faq-icon {
    transform: rotate(180deg);
    background: rgba(197, 29, 52, 0.25);
    border-color: rgba(197, 29, 52, 0.6);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.faq-open .faq-answer {
    max-height: 500px;
    padding: 0 28px 22px;
}

.faq-answer p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

@media screen and (max-width: 900px) {
    .faq-section {
        padding: 64px 24px;
    }
    .faq-question {
        padding: 18px 20px;
    }
    .faq-answer {
        padding: 0 20px 18px;
    }
}

@media screen and (max-width: 480px) {
    .faq-section {
        padding: 48px 16px;
    }
    .faq-section__header {
        margin-bottom: 40px;
    }
    .faq-question {
        padding: 16px 16px;
        gap: 12px;
    }
    .faq-question-text {
        font-size: 0.95rem;
    }
}

/* ─── Contact Form ─────────────────────────────────────────────── */
.contact-form {
    display: contents;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form__field--full {
    grid-column: 1 / -1;
}

.contact-form__field label {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.01em;
}

.contact-form__field label span {
    color: var(--red);
}

.contact-form__field input,
.contact-form__field textarea,
.contact-form__field select {
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus,
.contact-form__field select:focus {
    outline: none;
    border-color: rgba(197, 29, 52, 0.5);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 3px rgba(197, 29, 52, 0.1);
}

.contact-form__field textarea {
    resize: none;
    min-height: 140px;
}

.contact-form__field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c51d34' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 32px;
}

.contact-form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-form__checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}

.contact-form__checkbox label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    cursor: pointer;
    margin: 0;
}

.contact-form__checkbox label a {
    color: var(--red);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.contact-form__checkbox label a:hover {
    color: #e8364f;
}

.contact-form__actions {
    display: flex;
    justify-content: flex-end;
}

.contact-form__submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 28px;
    min-height: 52px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #e43650 0%, #b1172d 100%);
    box-shadow: 0 18px 34px rgba(156, 15, 38, 0.3);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, gap 0.2s ease;
}

.contact-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(156, 15, 38, 0.42);
    gap: 16px;
}

.contact-form__submit:active {
    transform: translateY(0);
    box-shadow: 0 14px 28px rgba(156, 15, 38, 0.3);
}

@media screen and (max-width: 768px) {
    .contact-form__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .contact-form__actions {
        justify-content: center;
    }
}

/* ─── Contact Map ──────────────────────────────────────────────── */
.contact-map-wrapper {
    width: 100%;
    height: 400px;
    margin-bottom: 60px;
    border-radius: 12px;
    overflow: hidden;
    background: #0c0c0f;
    border: 1px solid rgba(255,255,255,0.07);
}

.contact-map-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(20,20,24,0.8), rgba(40,20,30,0.8));
    cursor: pointer;
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    padding: 20px;
    transition: background 0.3s ease;
}

.contact-map-overlay:hover {
    background: linear-gradient(135deg, rgba(30,30,35,0.9), rgba(50,25,35,0.9));
}

.contact-map-overlay small {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-top: 4px;
}

.contact-map {
    width: 100%;
    height: 100%;
    border: none;
}

@media screen and (max-width: 900px) {
    .contact-map-wrapper {
        height: 300px;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 480px) {
    .contact-map-wrapper {
        height: 250px;
        margin-bottom: 32px;
    }
}
