/* ====== RESET & FOUNDATION ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #009640;
  --green-dark:  #007a33;
  --green-light: #00b34a;
  --blue:        #054da5;
  --blue-dark:   #043a7d;
  --blue-light:  #1a6ad4;
  --white:       #ffffff;
  --off-white:   #f5f7fa;
  --light-gray:  #e8ecf2;
  --cta-red:     #d42b2b;
  --cta-red-hover: #b91f1f;
  --cta-red-light: #e84545;
  --text-dark:   #1a1d29;
  --text-body:   #3a3f4b;
  --text-muted:  #6b7280;
  --text-on-dark:#d6dce6;
  --silver:      #f1f2f6;
  --success:     #2ecc71;
  --font-display: 'Manrope', system-ui, sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  /* Type scale */
  --fs-xs:   0.75rem;   /* badges, labels, footer copy */
  --fs-sm:   0.85rem;   /* captions, nav, secondary */
  --fs-md:   0.9rem;    /* card body, descriptions */
  --fs-base: 1rem;      /* body, buttons, subtitles */
  --fs-lg:   1.25rem;   /* card titles */
  --fs-xl:   1.5rem;    /* price values, counters */
  --fs-2xl:  2rem;      /* stat numbers */
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ====== UTILITY ====== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 80px 0; }
.section--white { background: var(--white); color: var(--text-dark); position: relative; overflow: hidden; }
.section--gray { background: var(--off-white); color: var(--text-dark); position: relative; overflow: hidden; }
.section--blue { background: var(--blue); color: var(--white); position: relative; overflow: hidden; }
.section--green { background: var(--green); color: var(--white); position: relative; overflow: hidden; }
.section--silver { background: var(--silver); color: var(--text-dark); position: relative; overflow: hidden; }

.section-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.section-deco--right {
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(140px, 18vw, 220px);
  height: auto;
}
.section-deco--left {
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(120px, 15vw, 180px);
  height: auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section--blue .section-label,
.section--green .section-label { color: rgba(255,255,255,0.7); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}
.section--blue .section-title,
.section--green .section-title { color: var(--white); }

.section-subtitle {
  font-size: var(--fs-base);
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}
.section--blue .section-subtitle,
.section--green .section-subtitle { color: rgba(255,255,255,0.75); }

.accent-line {
  width: 48px;
  height: 3px;
  background: var(--green);
  margin-bottom: 24px;
  border-radius: 2px;
}
.section--blue .accent-line { background: var(--white); }
.section--green .accent-line { background: var(--white); }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn--cta {
  background: var(--cta-red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(212, 43, 43, 0.35);
}
.btn--cta:hover {
  background: var(--cta-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 43, 43, 0.45);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--blue);
}

.btn--white {
  background: var(--white);
  color: var(--blue);
}
.btn--white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

.btn--green {
  background: var(--green);
  color: var(--white);
}
.btn--green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn--phone-attention svg {
  transform-origin: 60% 60%;
  will-change: transform;
  animation: phone-ring 2.4s ease-in-out infinite;
}

@keyframes phone-ring {
  0%, 70%, 100% { transform: rotate(0deg) scale(1); }
  6% { transform: rotate(-16deg) scale(1.04); }
  12% { transform: rotate(14deg) scale(1.06); }
  18% { transform: rotate(-11deg) scale(1.04); }
  24% { transform: rotate(9deg) scale(1.03); }
  30% { transform: rotate(-5deg) scale(1.02); }
  36% { transform: rotate(0deg) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .btn--phone-attention svg {
    animation: none;
  }
}

/* ====== HEADER ====== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.header.scrolled {
  background: rgba(5, 77, 165, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.header__logo img {
  height: 32px;
  width: auto;
  display: block;
}
.header__logo span {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .header__logo img { height: 38px; }
}

.header__nav {
  display: none;
  gap: 28px;
  list-style: none;
}
.header__nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.header__nav a:hover { color: var(--white); }

.header__phone {
  display: none;
  align-items: center;
  gap: 8px;
}
.header__phone a {
  color: var(--white);
  text-decoration: none;
  font-size: var(--fs-base);
  font-weight: 600;
  transition: color 0.2s;
}
.header__phone a:hover { color: var(--green-light); }
.header__phone-label {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.header__cta-mobile {
  display: flex;
}

@media (min-width: 768px) {
  .header__nav { display: flex; }
  .header__phone { display: flex; }
  .header__cta-mobile { display: none; }
}

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(0,150,64,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(5,77,165,0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Inner wrapper — keeps content + images within 1200px grid */
.hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 80px);
}

.hero__content {
  position: relative;
  z-index: 2;
  flex: 1 1 0;
  max-width: 640px;
}

/* — hero image composition — */
.hero__media {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 46%;
  height: 80%;
  z-index: 1;
  pointer-events: none;
  display: none;
}

.hero__media-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.7;
}

.hero__media-glow--green {
  right: 38%;
  top: 10%;
  width: 45%;
  height: 45%;
  background: radial-gradient(circle, rgba(0,179,74,0.35) 0%, rgba(0,179,74,0.08) 60%, transparent 80%);
}

.hero__media-glow--blue {
  right: 5%;
  bottom: 5%;
  width: 55%;
  height: 55%;
  background: radial-gradient(circle, rgba(79,149,255,0.25) 0%, rgba(79,149,255,0.08) 55%, transparent 80%);
}

.hero__image {
  position: absolute;
  height: auto;
  user-select: none;
  filter: drop-shadow(0 20px 40px rgba(1,17,44,0.3));
  animation: heroImgIn 1s ease both;
}

/* Main lock (largest, front-right) */
.hero__image--main {
  right: 2%;
  top: 50%;
  width: 58%;
  transform: translateY(-50%) rotate(-3deg);
  z-index: 4;
  animation-delay: 0.15s;
}

/* Secondary lock (behind-left of main) */
.hero__image--secondary {
  right: 36%;
  top: 12%;
  width: 38%;
  opacity: 0.88;
  transform: rotate(6deg);
  z-index: 2;
  animation-delay: 0.3s;
}

/* Small accent cylinder (top-right corner) */
.hero__image--accent {
  right: 6%;
  top: 2%;
  width: 26%;
  opacity: 0.7;
  transform: rotate(-12deg);
  z-index: 1;
  animation-delay: 0.45s;
}

/* Padlock (bottom-left) */
.hero__image--padlock {
  right: 10%;
  bottom: 0%;
  width: 30%;
  opacity: 0.82;
  transform: rotate(-3deg);
  z-index: 3;
  animation-delay: 0.55s;
}

@keyframes heroImgIn {
  from { opacity: 0; filter: drop-shadow(0 20px 40px rgba(1,17,44,0.3)) blur(6px); }
  to   { opacity: 1; filter: drop-shadow(0 20px 40px rgba(1,17,44,0.3)) blur(0); }
}

/* Desktop: show media, text on left, images on right within container */
@media (min-width: 1024px) {
  .hero__media { display: block; }
}

/* Tablet: images below content */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero__inner {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 48px;
  }
  .hero__content {
    max-width: 100%;
    order: 1;
  }
  .hero__media {
    display: block;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 460px;
    height: 300px;
    margin: 32px auto 0;
    order: 2;
  }
  .hero__image--main   { width: 46%; right: 4%; }
  .hero__image--secondary { width: 30%; right: 38%; top: 8%; }
  .hero__image--accent { width: 22%; right: 8%; top: 0; }
  .hero__image--padlock { width: 26%; right: 52%; bottom: 2%; }
}

/* Mobile: images below content, single column */
@media (max-width: 767px) {
  .hero {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 36px;
  }
  .hero__inner {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }
  .hero__content {
    max-width: 100%;
    order: 1;
  }
  .hero__media {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: calc(100% + 40px);
    margin: 28px -20px 0;
    height: auto;
    order: 2;
    padding: 0 12px;
  }
  .hero__image {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: 25%;
    flex-shrink: 0;
    transform: none;
    opacity: 1;
    filter: drop-shadow(0 8px 20px rgba(1,17,44,0.25));
  }
  .hero__image--main   { width: 28%; }
  .hero__image--secondary { width: 26%; }
  .hero__image--accent { width: 24%; opacity: 0.9; }
  .hero__image--padlock { width: 22%; opacity: 0.9; }

  .hero__media-glow { display: none; }

  .hero__stats { grid-template-columns: repeat(3, 1fr); }
  .hero__stat { border-right: 1px solid rgba(255,255,255,0.1); border-bottom: none; }
  .hero__stat:last-child { border-right: none; }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero__badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 700px;
  animation: fadeInUp 0.8s 0.1s ease both;
  letter-spacing: -0.03em;
}
.hero h1 em {
  font-style: normal;
  color: var(--green-light);
}

.hero__sub {
  font-size: var(--fs-base);
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero__phone-block {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  animation: fadeInUp 0.8s 0.4s ease both;
}

.hero__phone-icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__phone-info a {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-size: var(--fs-lg);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.hero__phone-info a:hover { color: var(--green-light); }
.hero__phone-info small {
  color: rgba(255,255,255,0.6);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 20px;
  animation: fadeInUp 0.8s 0.5s ease both;
}

.hero__stat {
  padding: 20px 0;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero__stat:last-child { border-right: none; }

.hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero__stat-label {
  font-size: clamp(var(--fs-xs), 2vw, var(--fs-sm));
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}

/* ====== WHY MOTTURA ====== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.why-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(5,77,165,0.1);
}

.why-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 150, 64, 0.1);
  border-radius: 10px;
  margin-bottom: 20px;
  color: var(--green);
}

.why-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.why-card__text {
  font-size: var(--fs-md);
  color: var(--text-muted);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ====== SERVICES ====== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}

.service-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 77, 165, 0.08);
  border-radius: 10px;
  flex-shrink: 0;
  color: var(--blue);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.service-card__text {
  font-size: var(--fs-md);
  color: var(--text-muted);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  #why.section,
  #services.section {
    padding: 56px 0;
  }

  #why .section-subtitle,
  #services .section-subtitle {
    font-size: var(--fs-md);
    line-height: 1.55;
    margin-bottom: 0;
  }

  #why .why-grid,
  #services .services-grid {
    margin-top: 26px;
    gap: 12px;
  }

  #why .why-card {
    padding: 18px 16px;
    border-radius: 10px;
  }

  #why .why-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin-bottom: 12px;
  }

  #why .why-card__icon svg {
    width: 20px;
    height: 20px;
  }

  #why .why-card__title {
    font-size: var(--fs-base);
    margin-bottom: 6px;
  }

  #why .why-card__text {
    font-size: var(--fs-sm);
    line-height: 1.5;
  }

  #services .service-card {
    gap: 12px;
    padding: 16px 14px;
    border-radius: 10px;
  }

  #services .service-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }

  #services .service-card__icon svg {
    width: 18px;
    height: 18px;
  }

  #services .service-card__title {
    font-size: var(--fs-base);
    margin-bottom: 4px;
  }

  #services .service-card__text {
    font-size: var(--fs-sm);
    line-height: 1.48;
  }
}

/* ====== GEOGRAPHY ====== */
.geo__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

.geo__info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.geo__info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.geo__info-text strong {
  display: block;
  font-size: var(--fs-base);
  color: var(--text-dark);
  margin-bottom: 2px;
}
.geo__info-text span {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.geo__districts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.geo__district {
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  font-size: var(--fs-sm);
  color: var(--text-dark);
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.geo__district:hover { box-shadow: 0 2px 10px rgba(0,0,0,0.06); transform: translateY(-1px); }

@media (min-width: 768px) {
  .geo__districts { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .geo__content { grid-template-columns: 1fr 1fr; }
  .geo__districts { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  #geo.section,
  #prices.section {
    padding: 56px 0;
  }

  #geo .section-subtitle,
  #prices .section-subtitle {
    font-size: var(--fs-md);
    line-height: 1.55;
    margin-bottom: 0;
  }

  #geo .geo__content {
    margin-top: 24px;
    gap: 24px;
  }

  #geo .geo__info-card {
    gap: 12px;
    padding: 14px 14px;
    border-radius: 10px;
    margin-bottom: 14px;
  }

  #geo .geo__info-icon {
    width: 38px;
    height: 38px;
  }

  #geo .geo__info-icon svg {
    width: 16px;
    height: 16px;
  }

  #geo .geo__info-text strong {
    font-size: var(--fs-md);
  }

  #geo .geo__info-text span {
    font-size: var(--fs-sm);
  }

  #geo .geo__districts {
    gap: 8px;
  }

  #geo .geo__district {
    padding: 8px 10px;
    font-size: var(--fs-xs);
    border-radius: 6px;
  }

  #prices .prices-grid {
    margin-top: 24px;
    gap: 10px;
  }

  #prices .price-card {
    padding: 16px 14px;
    gap: 10px;
    border-radius: 10px;
  }

  #prices .price-card__name {
    font-size: var(--fs-sm);
  }

  #prices .price-card__value {
    font-size: var(--fs-lg);
  }

  #prices .price-note {
    margin-top: 18px;
    padding: 14px 16px;
    font-size: var(--fs-sm);
    line-height: 1.55;
  }

  #prices .price-badge {
    margin-top: 10px;
    font-size: var(--fs-xs);
  }
}

/* ====== PRICES ====== */
.prices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}

.price-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s ease;
}
.price-card:hover { transform: translateY(-2px); }

.price-card__name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: var(--fs-base);
}

.price-card__value {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--blue);
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.price-note {
  margin-top: 28px;
  padding: 20px 24px;
  background: rgba(5, 77, 165, 0.05);
  border-left: 3px solid var(--blue);
  border-radius: 0 8px 8px 0;
  font-size: var(--fs-md);
  line-height: 1.7;
  color: var(--text-body);
}

.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 8px 16px;
  background: rgba(0, 150, 64, 0.08);
  border: 1px solid rgba(0, 150, 64, 0.2);
  border-radius: 8px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--green);
}

@media (min-width: 768px) {
  .prices-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ====== STEPS ====== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  counter-increment: step;
}

.step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--blue);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.step__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step__text {
  font-size: var(--fs-md);
  color: var(--text-muted);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 767px) {
  #how.section {
    padding: 56px 0;
  }

  #how .section-subtitle {
    font-size: var(--fs-md);
    line-height: 1.55;
    margin-bottom: 0;
  }

  #how .steps {
    margin-top: 24px;
    gap: 12px;
  }

  #how .step {
    padding: 18px 16px;
    border-radius: 10px;
  }

  #how .step::before {
    width: 32px;
    height: 32px;
    font-size: var(--fs-base);
    margin-bottom: 10px;
  }

  #how .step__title {
    font-size: var(--fs-base);
    margin-bottom: 4px;
  }

  #how .step__text {
    font-size: var(--fs-sm);
    line-height: 1.5;
  }
}

/* ====== TRUST ====== */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.trust-stat {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.trust-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.trust-stat__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  background: rgba(0, 150, 64, 0.1);
  border-radius: 50%;
  color: var(--green);
}

.trust-stat__value {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.trust-stat__label {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-top: 4px;
}

.trust-legal {
  margin-top: 40px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.trust-legal__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-legal__text {
  font-size: var(--fs-md);
  color: var(--text-muted);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .trust-stats { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 767px) {
  #trust.section {
    padding: 56px 0;
  }
  #trust .section-title {
    font-size: var(--fs-lg);
  }
  #trust .trust-stats {
    gap: 12px;
    margin-top: 28px;
  }
  #trust .trust-stat {
    padding: 18px 14px;
  }
  #trust .trust-stat__icon {
    width: 38px;
    height: 38px;
    margin-bottom: 10px;
  }
  #trust .trust-stat__icon svg {
    width: 18px;
    height: 18px;
  }
  #trust .trust-stat__value {
    font-size: var(--fs-xl);
  }
  #trust .trust-stat__label {
    font-size: var(--fs-xs);
  }
  #trust .trust-legal {
    margin-top: 28px;
    padding: 18px;
  }
  #trust .trust-legal__title {
    font-size: var(--fs-base);
    margin-bottom: 8px;
  }
  #trust .trust-legal__text {
    font-size: var(--fs-sm);
  }
}

/* ====== MOBILE SLIDER ====== */
.slider-wrapper {
  position: relative;
}

.slider-nav {
  display: none;
}

@media (max-width: 767px) {
  .slider-wrapper > .reviews-grid,
  .slider-wrapper > .gallery-grid {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    gap: 0;
    margin-top: 28px;
  }

  .slider-wrapper > .reviews-grid > .review-card,
  .slider-wrapper > .gallery-grid > .gallery-item {
    min-width: 100%;
    flex: 0 0 100%;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .slider-wrapper > .reviews-grid > .review-card {
    margin: 0 0;
  }

  .slider-wrapper > .gallery-grid > .gallery-item:hover {
    transform: none;
    box-shadow: none;
  }

  .slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
  }

  .slider-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--light-gray);
    background: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
  }

  .slider-arrow:active {
    transform: scale(0.92);
  }

  .slider-arrow:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
  }

  .slider-arrow:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
  }

  .slider-dots {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--light-gray);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s;
  }

  .slider-dot.active {
    background: var(--blue);
    width: 24px;
    border-radius: 4px;
  }
}

/* ====== REVIEWS ====== */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.review-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
}

.review-card__stars {
  color: #f5a623;
  font-size: var(--fs-md);
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: var(--fs-md);
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-base);
  color: var(--white);
}

.review-card__name {
  font-weight: 600;
  font-size: var(--fs-md);
  color: var(--text-dark);
}

.review-card__location {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ====== FAQ ====== */
.faq-list {
  margin-top: 40px;
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid var(--light-gray);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--blue); }

.faq-question__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--light-gray);
  border-radius: 50%;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  color: var(--blue);
}
.faq-item.active .faq-question__icon {
  transform: rotate(45deg);
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer__inner {
  padding: 0 0 22px;
  font-size: var(--fs-md);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ====== CTA / FORM ====== */
.cta-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background: var(--silver);
}

.cta-call-wrapper {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.cta-call__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  margin-bottom: 24px;
}

.cta-call-wrapper .section-title {
  color: var(--text-dark);
  margin-bottom: 16px;
}

.cta-call__text {
  font-size: var(--fs-base);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta-call__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

.cta-call__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--text-dark);
}

.cta-call__feature svg {
  color: var(--green);
  flex-shrink: 0;
}

.cta-call__btn {
  display: inline-flex;
  padding: 18px 48px;
  font-size: var(--fs-base);
  font-weight: 700;
  gap: 10px;
}

.cta-call__note {
  margin-top: 16px;
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

/* ====== GALLERY ====== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--light-gray);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

img.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  padding: 14px 16px;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  font-weight: 500;
  text-align: center;
  margin-top: auto;
}

@media (min-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  img.gallery-img { height: 200px; }
}

@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(5, 1fr); }
  img.gallery-img { height: 180px; }
}

@media (max-width: 767px) {
  #gallery.section {
    padding: 56px 0;
  }
  #gallery .section-title {
    font-size: var(--fs-lg);
  }
  #gallery .gallery-grid {
    gap: 10px;
    margin-top: 28px;
  }
  #gallery .gallery-caption {
    padding: 10px 12px;
    font-size: var(--fs-xs);
  }
  #gallery img.gallery-img {
    height: 180px;
  }
}

/* ====== FOOTER ====== */
.footer {
  padding: 48px 0 120px;
  border-top: 1px solid var(--light-gray);
  background: var(--white);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.footer__logo {
  display: flex;
  justify-content: center;
}
.footer__logo img {
  height: 34px;
  width: auto;
  display: block;
}

.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: var(--fs-sm);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--blue); }

.footer__copy {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .footer { padding: 48px 0 40px; }
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ====== FLOATING MOBILE BAR ====== */
.mobile-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  gap: 1px;
  z-index: 200;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.mobile-bar.visible { transform: translateY(0); }

.mobile-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 8px;
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.mobile-bar__btn--call svg {
  transform-origin: 60% 60%;
  animation: phone-ring 2.4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .mobile-bar__btn--call svg { animation: none; }
}

.mobile-bar__btn--call {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(110deg, #c82020 0%, var(--cta-red) 45%, var(--cta-red-light) 100%);
  background-size: 200% 100%;
  color: var(--white);
  animation: mobile-call-bg-shift 2.8s ease-in-out infinite, mobile-call-bg-glow 2.8s ease-in-out infinite;
}

.mobile-bar__btn--call::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.26) 45%, transparent 72%);
  transform: translateX(-120%);
  animation: mobile-call-shine 2.8s ease-in-out infinite;
  z-index: 0;
}

.mobile-bar__btn--call > * {
  position: relative;
  z-index: 1;
}
.mobile-bar__btn--form {
  background: var(--blue);
  color: var(--white);
}

@media (min-width: 768px) {
  .mobile-bar { display: none; }
}

/* ====== ANIMATIONS ====== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.5); }
}

@keyframes mobile-call-bg-shift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

@keyframes mobile-call-bg-glow {
  0%, 100% { box-shadow: inset 0 0 0 rgba(255,255,255,0), 0 0 0 rgba(212,43,43,0.1); }
  50%      { box-shadow: inset 0 0 24px rgba(255,255,255,0.12), 0 0 20px rgba(212,43,43,0.35); }
}

@keyframes mobile-call-shine {
  0%, 55%, 100% { transform: translateX(-120%); }
  70%           { transform: translateX(120%); }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-bar__btn--call {
    animation: none;
    background-position: 50% 50%;
  }

  .mobile-bar__btn--call::before {
    animation: none;
    transform: translateX(-120%);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}



/* ====== PROMO COUNTDOWN BAR ====== */
.promo-bar {
  background: var(--text-dark);
  padding: 28px 0;
  overflow: hidden;
}

.promo-bar__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.promo-bar__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  background: rgba(212, 43, 43, 0.15);
  border: 1px solid rgba(212, 43, 43, 0.3);
  border-radius: 100px;
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cta-red-light);
  margin-bottom: 8px;
}

.promo-bar__title {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-lg), 3vw, var(--fs-xl));
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.promo-bar__sub {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.promo-bar__sub strong {
  color: var(--cta-red-light);
  font-weight: 700;
}

.promo-bar__timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.promo-bar__countdown {
  display: flex;
  align-items: center;
  gap: 8px;
}

.countdown__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 54px;
  padding: 10px 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
}

.countdown__num {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.countdown__label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  font-weight: 500;
}

.countdown__sep {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  margin-bottom: 14px;
}

.promo-bar__cta {
  padding: 14px 32px;
  font-size: var(--fs-base);
}

@media (min-width: 768px) {
  .promo-bar { padding: 20px 0; }
  .promo-bar__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 32px;
  }
  .promo-bar__timer {
    flex-direction: row;
    gap: 24px;
    flex-shrink: 0;
  }
  .countdown__block { min-width: 62px; padding: 12px 10px; }
}
