:root {
    --green-dark:    #00a64e;
    --green-light:   #d8f07a;
    --green-accent:  #c6f030;
    --orange-accent: #ff923d;

    --white: #ffffff;
    --black: #111111;

    --gradient-green-main: linear-gradient(135deg, #00a64e 0%, #6dd62a 50%, #c6f030 100%);
    --gradient-green-soft: linear-gradient(135deg, #d8f07a 0%, #c6f030 100%);
    --gradient-accent:     linear-gradient(135deg, #c6f030 0%, #ff923d 100%);
    --gradient-dark:       linear-gradient(150deg, #007836 0%, #00a64e 55%, #00c458 100%);

    --container-width: 1440px;
    --transition: all 0.4s ease;
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.15);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { background: var(--white); color: var(--black); }
  .container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }

  .header-top {
    background: #0d0d0d;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 9px 0;
    flex-wrap: nowrap;
  }

  .ht-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
  }

  .ht-center {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .ht-center svg { width: 14px; height: 14px; fill: var(--green-accent); flex-shrink: 0; }

  .ht-right {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
  }

  .ht-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
  }
  .ht-item svg { width: 15px; height: 15px; fill: var(--green-accent); flex-shrink: 0; }
  .ht-item:hover { color: var(--green-accent); }

  .ht-sep {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
  }

  .ht-msg {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  .ht-msg svg { width: 15px; height: 15px; flex-shrink: 0; }
  .ht-msg:hover {
    background: rgba(198,240,48,0.12);
    border-color: rgba(198,240,48,0.4);
    color: var(--green-accent);
  }
  .ht-msg.tg svg  { fill: #2AABEE; }
  .ht-msg.vk svg  { fill: #4680C2; }
  .ht-msg.tg:hover svg { fill: #5cc8ff; }
  .ht-msg.vk:hover svg { fill: #7baae0; }

  .max-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #6E2CE3;
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
    line-height: 1;
    font-family: Arial, sans-serif;
  }

  .btn-ht {
    padding: 7px 16px;
    background: var(--orange-accent);
    color: #000;
    border: none;
    border-radius: 7px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.35s ease;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .btn-ht:hover { background: #ffa455; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(255,146,61,0.35); }

  .header-bottom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--gradient-dark);
    transition: top 0.38s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.4s ease;
  }

  .header-bottom.ht-offset {
    top: var(--ht-h, 44px);
  }

  .header-bottom.elevated {
    box-shadow: 0 4px 28px rgba(0,0,0,0.5);
  }

  .header-top {
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1),
                opacity 0.3s ease;
    will-change: transform;
  }
  .header-top.ht-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
  }

  .header-bottom-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 9px 0;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    flex-shrink: 0;
    margin-right: auto;
  }

  .logo-box {
    width: 38px;
    height: 38px;
    background: var(--gradient-accent);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
  }

  .brand:hover .logo-box { transform: rotate(-8deg) scale(1.1); }

  .logo-box svg { width: 22px; height: 22px; fill: #000; }

  .brand-title strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green-light);
    display: block;
    line-height: 1.15;
    letter-spacing: -0.2px;
  }

  .brand-title span {
    font-size: 0.72rem;
    opacity: 0.65;
    display: block;
    color: var(--white);
  }

  .main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
  }

  .navlink {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.89rem;
    font-weight: 500;
    padding: 6px 11px;
    border-radius: 7px;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
  }

  .navlink::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--green-accent);
    border-radius: 2px;
    transition: transform 0.3s ease;
  }

  .navlink:hover { color: var(--green-accent); background: rgba(255,255,255,0.07); }
  .navlink:hover::after { transform: translateX(-50%) scaleX(1); }

  .btn-hb {
    padding: 8px 18px;
    background: var(--orange-accent);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.35s ease;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 8px;
  }
  .btn-hb:hover { background: #ffa455; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(255,146,61,0.38); }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px 10px;
    width: 42px;
    height: 38px;
    flex-shrink: 0;
    transition: all 0.3s;
  }
  .burger:hover { background: rgba(255,255,255,0.15); }

  .burger span {
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    display: block;
    transition: all 0.4s cubic-bezier(0.77,0,0.18,1);
  }

  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform 0.44s cubic-bezier(0.77,0,0.18,1);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .mobile-menu.active { transform: translateX(0); }

  .mm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
  }

  .mm-close {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
  }
  .mm-close:hover { background: rgba(198,240,48,0.15); border-color: var(--green-accent); color: var(--green-accent); }

  .mm-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    -webkit-overflow-scrolling: touch;
  }

  .mm-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 32px;
  }

  .mm-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 500;
    padding: 13px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
  }
  .mm-nav a:hover, .mm-nav a:active {
    background: rgba(198,240,48,0.08);
    border-color: rgba(198,240,48,0.2);
    color: var(--green-light);
    padding-left: 22px;
  }

  .mm-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 12px 0 24px; }

  .mm-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }

  .mm-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    text-decoration: none;
    padding: 8px 0;
  }
  .mm-contact-row svg { width: 16px; height: 16px; fill: var(--green-accent); flex-shrink: 0; }
  .mm-contact-row.phone { font-size: 1.2rem; font-weight: 600; color: var(--green-accent); }

  .mm-messengers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 28px;
  }

  .mm-msg-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.3s;
  }
  .mm-msg-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
  .mm-msg-btn.tg  svg { fill: #2AABEE; }
  .mm-msg-btn.vk  svg { fill: #4680C2; }
  .mm-msg-btn.tg:hover, .mm-msg-btn.vk:hover { background: rgba(198,240,48,0.1); border-color: rgba(198,240,48,0.3); }

  .mm-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mm-btn-p {
    padding: 15px;
    background: var(--orange-accent);
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    letter-spacing: 0.2px;
  }
  .mm-btn-p:hover { background: #ffa455; }

  .mm-btn-g {
    padding: 14px;
    background: transparent;
    border: 1.5px solid rgba(198,240,48,0.4);
    color: var(--green-light);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
  }
  .mm-btn-g:hover { background: rgba(198,240,48,0.08); border-color: rgba(198,240,48,0.6); }

  @media (max-width: 1280px) {
    .navlink { font-size: 0.84rem; padding: 6px 9px; }
    .ht-center { display: none; }
  }

  @media (max-width: 1100px) {
    .main-nav .navlink:nth-child(n+6) { display: none; }
  }

  @media (max-width: 1023px) {
    .header-top { display: none; }
    .main-nav, .btn-hb { display: none !important; }
    .burger { display: flex; }
    .brand { margin-right: 0; }
    .header-bottom-inner { justify-content: space-between; }
    .brand-title span { display: none; }
    .brand-title strong { font-size: 1rem; }
    .logo-box { width: 34px; height: 34px; border-radius: 8px; }
    .logo-box svg { width: 20px; height: 20px; }
  }

  @media (max-width: 480px) {
    .logo-box { width: 32px; height: 32px; border-radius: 7px; }
    .logo-box svg { width: 18px; height: 18px; }
    .brand-title strong { font-size: 0.95rem; }
    .container { padding: 0 16px; }
    .header-bottom-inner { padding: 8px 0; }
  }

  @media (max-width: 360px) {
    .brand-title strong { font-size: 0.88rem; }
    .logo-box { width: 30px; height: 30px; }
  }
  
  
  
  
  
  
  
  
  
  


.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
 
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/userfiles/images/remont/bg-hero.webp') center / cover no-repeat;
  transform: scale(1.05);
  will-change: transform;
  z-index: 0;
}
 
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,60,15,0.88) 0%,
    rgba(0,100,30,0.60) 45%,
    rgba(0,0,0,0.50) 100%
  );
  z-index: 1;
}
 
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
}
.hero-glow-1 {
  width: 700px; height: 700px;
  background: rgba(198,240,48,0.09);
  top: -150px; right: -150px;
  animation: glowPulse 7s ease-in-out infinite alternate;
}
.hero-glow-2 {
  width: 450px; height: 450px;
  background: rgba(255,146,61,0.07);
  bottom: -80px; left: 3%;
  animation: glowPulse 9s ease-in-out infinite alternate-reverse;
}
.hero-glow-3 {
  width: 300px; height: 300px;
  background: rgba(198,240,48,0.06);
  top: 40%; right: 35%;
  animation: glowPulse 11s ease-in-out infinite alternate;
}
 
@keyframes glowPulse {
  0%   { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.2); }
}
 
.hero > .container { position: relative; z-index: 2; width: 100%; }
 
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 52px;
  align-items: stretch;
}
 
.hero-main {
  background: rgba(4,16,8,0.62);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(198,240,48,0.18);
  border-radius: 28px;
  padding: 48px 44px;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 96% 100%, 4% 100%, 0 94%);
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1), box-shadow 0.55s ease;
  animation: cardEntrance 0.9s cubic-bezier(0.22,1,0.36,1) both;
  position: relative;
  overflow: hidden;
}
 
.hero-main::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(198,240,48,0.12) 0%,
    transparent 40%,
    transparent 60%,
    rgba(255,146,61,0.06) 100%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.hero-main:hover::before { opacity: 1; }
.hero-main:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(198,240,48,0.22);
}
 
@keyframes cardEntrance {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
.hero-h1 {
  font-size: clamp(1.7rem, 3.2vw, 3.3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
  background: var(--gradient-green-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
  animation: cardEntrance 1s 0.12s cubic-bezier(0.22,1,0.36,1) both;
}
 
.hero-h1::after {
  content: '';
  display: block;
  margin-top: 12px;
  width: 0;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
  animation: lineExpand 0.9s 0.9s ease forwards;
}
 
@keyframes lineExpand {
  to { width: 70px; }
}
 
.hero-lead {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.58;
  color: rgba(255,255,255,0.88);
  margin-bottom: 34px;
  animation: cardEntrance 1s 0.22s cubic-bezier(0.22,1,0.36,1) both;
}
 
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 34px;
}
 
.stat-item {
  background: rgba(198,240,48,0.07);
  border: 1px solid rgba(198,240,48,0.18);
  border-radius: 14px;
  padding: 16px 10px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
  cursor: default;
  position: relative;
  overflow: hidden;
}
 
.stat-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(198,240,48,0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
 
.stat-item:hover {
  background: rgba(198,240,48,0.13);
  border-color: rgba(198,240,48,0.42);
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35), 0 0 20px rgba(198,240,48,0.12);
}
.stat-item:hover::after { opacity: 1; }
 
.stat-num {
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  font-weight: 800;
  color: var(--green-accent);
  line-height: 1;
  display: block;
  margin-bottom: 5px;
  font-variant-numeric: tabular-nums;
  position: relative; z-index: 1;
}
 
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.3;
  position: relative; z-index: 1;
}
 
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: cardEntrance 1s 0.38s cubic-bezier(0.22,1,0.36,1) both;
}
 
.btn-hero-p {
  padding: 15px 30px;
  background: var(--orange-accent);
  color: #000;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}
 
.btn-hero-p::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: rgba(255,255,255,0.22);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn-hero-p:hover::before { left: 150%; }
.btn-hero-p:hover {
  background: #ffaa5c;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,146,61,0.45);
}
.btn-hero-p:active { transform: translateY(0); }
 
.btn-hero-p.pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 15px;
  border: 2px solid var(--orange-accent);
  animation: btnPulse 2.5s ease-in-out infinite;
  pointer-events: none;
}
 
@keyframes btnPulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(1.06); }
}
 
.btn-hero-g {
  padding: 15px 26px;
  background: transparent;
  border: 1.5px solid rgba(216,240,122,0.42);
  color: var(--green-light);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.btn-hero-g::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(198,240,48,0);
  transition: background 0.35s ease;
}
.btn-hero-g:hover {
  background: rgba(198,240,48,0.10);
  border-color: var(--green-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(198,240,48,0.15);
}
 
.hero-worker {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  animation: workerEntrance 1.1s 0.25s cubic-bezier(0.22,1,0.36,1) both;
  min-height: 380px;
  max-height: 680px;
  display: flex;
  align-items: stretch;
}
 
@keyframes workerEntrance {
  from { opacity: 0; transform: translateX(60px) scale(0.96); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
 
.worker-img-wrap {
  position: relative;
  width: 100%;
  flex: 1;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(198,240,48,0.18);
  cursor: pointer;
}
 
.worker-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1),
              filter 0.5s ease;
  filter: saturate(0.9) brightness(0.88);
}
.worker-img-wrap:hover img {
  transform: scale(1.04);
  filter: saturate(1.05) brightness(0.95);
}
 
.worker-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,40,10,0.80) 0%, transparent 40%),
    linear-gradient(to right, rgba(0,40,10,0.35) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}
 
.worker-img-wrap::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(198,240,48,0.07), transparent);
  z-index: 2;
  pointer-events: none;
  transition: none;
}
.worker-img-wrap:hover::after {
  transition: left 0.8s ease;
  left: 160%;
}
 
.worker-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  background: rgba(4,14,6,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(198,240,48,0.30);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: badgePop 0.7s 1s cubic-bezier(0.34,1.56,0.64,1) both;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.worker-badge:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}
 
@keyframes badgePop {
  from { opacity: 0; transform: scale(0.6) translateY(-10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
 
.worker-badge-icon {
  font-size: 1.5rem;
  line-height: 1;
  animation: iconWiggle 3.5s 2s ease-in-out infinite;
}
 
@keyframes iconWiggle {
  0%, 80%, 100% { transform: rotate(0deg); }
  85%            { transform: rotate(-8deg); }
  90%            { transform: rotate(8deg); }
  95%            { transform: rotate(-4deg); }
}
 
.worker-badge-text strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-accent);
  line-height: 1;
}
.worker-badge-text span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.3;
}
 
.worker-rating {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  background: rgba(4,14,6,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,146,61,0.30);
  border-radius: 12px;
  padding: 10px 14px;
  text-align: center;
  animation: badgePop 0.7s 1.2s cubic-bezier(0.34,1.56,0.64,1) both;
  cursor: default;
  transition: transform 0.35s ease;
}
.worker-rating:hover { transform: scale(1.06) translateY(-2px); }
 
.worker-rating .stars {
  font-size: 0.88rem;
  letter-spacing: 1px;
  color: #ffb830;
  display: block;
  margin-bottom: 2px;
}
.worker-rating .rating-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1;
}
.worker-rating .rating-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
}
 
.worker-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 22px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(to top, rgba(2,12,4,0.92) 0%, transparent 100%);
}
 
.worker-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
 
.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: default;
  transition: all 0.3s ease;
  animation: chipSlideUp 0.5s ease both;
}
 
.chip:nth-child(1) { animation-delay: 1.3s; }
.chip:nth-child(2) { animation-delay: 1.45s; }
.chip:nth-child(3) { animation-delay: 1.6s; }
 
@keyframes chipSlideUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
.chip-green {
  background: rgba(198,240,48,0.13);
  border: 1px solid rgba(198,240,48,0.28);
  color: var(--green-light);
}
.chip-green:hover {
  background: rgba(198,240,48,0.22);
  border-color: rgba(198,240,48,0.55);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(198,240,48,0.15);
}
.chip-orange {
  background: rgba(255,146,61,0.12);
  border: 1px solid rgba(255,146,61,0.26);
  color: #ffc08a;
}
.chip-orange:hover {
  background: rgba(255,146,61,0.22);
  border-color: rgba(255,146,61,0.5);
  transform: translateY(-2px);
}
 
.worker-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: rgba(255,146,61,0.88);
  border-radius: 12px;
  cursor: pointer;
  border: none;
  width: 100%;
  font-size: 0.92rem;
  font-weight: 700;
  color: #000;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.worker-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.worker-cta:hover::before { left: 160%; }
.worker-cta:hover {
  background: rgba(255,170,85,0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,146,61,0.4);
}
.worker-cta .cta-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  animation: arrowPulse 2s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(4px); }
}
.worker-cta .cta-text {
  flex: 1;
  text-align: left;
  line-height: 1.2;
}
.worker-cta .cta-text small {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.75;
  margin-top: 1px;
}
 
@keyframes borderGlow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(198,240,48,0.18), 0 0 0 0 rgba(198,240,48,0); }
  50%       { box-shadow: 0 0 0 1px rgba(198,240,48,0.32), 0 0 24px 0 rgba(198,240,48,0.12); }
}
.worker-img-wrap { animation: borderGlow 4s ease-in-out infinite 2s; }

.anim-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}
.anim-up.visible { opacity: 1; transform: translateY(0); }
 
@media (max-width: 1200px) {
  .hero-grid { grid-template-columns: 1fr 380px; gap: 36px; }
}
 
@media (max-width: 1024px) {
  .hero { padding: 100px 0 70px; }
  .hero-grid { grid-template-columns: 1fr 320px; gap: 28px; }
  .hero-main { padding: 38px 32px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-worker { min-height: 400px; }
}
 
@media (max-width: 860px) {
  .hero { padding: 90px 0 60px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-main { padding: 34px 28px; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); gap: 10px; }
 
  .hero-worker { min-height: 360px; }
  .worker-img-wrap { min-height: 360px; }
}
 
@media (max-width: 640px) {
  .hero { padding: 85px 0 55px; }
  .hero-main { padding: 28px 20px; border-radius: 20px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 9px; margin-bottom: 26px; }
  .stat-item { padding: 13px 8px; border-radius: 12px; }
  .hero-lead { margin-bottom: 26px; }
  .hero-btns { gap: 10px; }
  .hero-worker { min-height: 300px; }
  .worker-img-wrap { min-height: 300px; border-radius: 20px; }
  .worker-badge { padding: 10px 12px; }
}
 
@media (max-width: 480px) {
  .hero { padding: 80px 0 50px; align-items: flex-start; }
  .container { padding: 0 14px; }
  .hero-main { padding: 24px 16px; border-radius: 18px; clip-path: polygon(0 0,100% 0,100% 96%,94% 100%,6% 100%,0 96%); }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-hero-p, .btn-hero-g { width: 100%; text-align: center; padding: 15px; border-radius: 11px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .stat-item { padding: 12px 7px; }
  .hero-worker { min-height: 260px; border-radius: 18px; }
  .worker-img-wrap { min-height: 260px; border-radius: 18px; }
  .worker-badge { top: 14px; left: 14px; padding: 9px 12px; border-radius: 12px; }
  .worker-badge-icon { font-size: 1.3rem; }
  .worker-badge-text strong { font-size: 1rem; }
  .worker-rating { top: 14px; right: 14px; padding: 8px 12px; border-radius: 10px; }
  .worker-bottom { padding: 18px 14px 18px; gap: 10px; }
  .chip { font-size: 0.73rem; padding: 5px 10px; }
  .worker-cta { font-size: 0.88rem; padding: 12px 14px; border-radius: 11px; }
}
 
@media (max-width: 380px) {
  .hero-main { padding: 20px 14px; }
  .worker-badge, .worker-rating { display: none; } 
  .hero-stats { gap: 7px; }
  .stat-item { padding: 10px 6px; }
  .hero-worker { min-height: 220px; }
  .worker-img-wrap { min-height: 220px; }
  .worker-chips { gap: 6px; }
  .chip { font-size: 0.7rem; padding: 5px 9px; }
}
  
  
  
  
  
  
  
  /* Какой ремонт вам нужен */
  .sc-section {
    --sc-green-dark:   #00a64e;
    --sc-green-light:  #d8f07a;
    --sc-green-accent: #c6f030;
    --sc-orange:       #ff923d;
    --sc-black:        #111111;
    --sc-white:        #ffffff;
    --sc-bg:           #d8f07a;  
  }

  .sc-section {
    background: var(--sc-bg);
    color: var(--sc-black);
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
  }

  .sc-section::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 480px; height: 480px;
    background: rgba(198,240,48,0.25);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
  }

  .sc-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }

  .sc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 52px;
    flex-wrap: wrap;
  }

  .sc-header h2 {
    font-size: clamp(1.9rem, 3.5vw, 3.2rem);
    font-weight: 800;
    color: var(--sc-green-dark);
    margin: 0 0 10px;
    line-height: 1.1;
  }

  .sc-lead {
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    opacity: 0.85;
    margin: 0;
    line-height: 1.4;
  }

  .sc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.35s ease;
    border: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .sc-btn svg {
    width: 18px; height: 18px;
    stroke: currentColor; fill: none;
    stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
  }

  .sc-btn-primary {
    background: var(--sc-orange);
    color: #000;
    box-shadow: 0 4px 14px rgba(255,146,61,0.28);
  }
  .sc-btn-primary:hover { background: #ffa455; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(255,146,61,0.38); }

  .sc-btn-ghost {
    background: transparent;
    border: 1.5px solid var(--sc-green-dark);
    color: var(--sc-green-dark);
  }
  .sc-btn-ghost:hover { background: rgba(0,166,78,0.08); }

  .sc-tiles {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 80px;
  }

  .sc-tile {
    background: var(--sc-white);
    border-radius: 20px;
    padding: 24px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 6px 24px rgba(0,128,55,0.09);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.38s cubic-bezier(0.22,1,0.36,1);
    clip-path: polygon(0 0,100% 0,100% 88%,92% 100%,8% 100%,0 88%);
    position: relative;
    outline: none;
  }

  .sc-tile:hover,
  .sc-tile:focus-visible {
    transform: translateY(-10px);
    box-shadow: 0 18px 48px rgba(0,166,78,0.16);
    border-color: var(--sc-green-accent);
  }

  .sc-tile-accent {
    background: linear-gradient(145deg, #00a64e 0%, #00c458 100%);
    color: var(--sc-white);
  }
  .sc-tile-accent .sc-tile-title { color: var(--sc-white); }
  .sc-tile-accent .sc-tile-desc  { color: rgba(255,255,255,0.78); }
  .sc-tile-accent .sc-tile-btn {
    background: var(--sc-white);
    color: var(--sc-green-dark);
  }
  .sc-tile-accent .sc-tile-btn:hover { background: var(--sc-green-light); }
  .sc-tile-accent:hover { border-color: var(--sc-green-light); }

  .sc-tile-icon {
    font-size: 1.8rem;
    line-height: 1;
  }

  .sc-tile-body { flex: 1; }

  .sc-tile-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sc-green-dark);
    margin-bottom: 5px;
    line-height: 1.3;
  }

  .sc-tile-desc {
    font-size: 0.84rem;
    opacity: 0.72;
    line-height: 1.4;
  }

  .sc-tile-btn {
    display: block;
    width: 100%;
    padding: 9px 14px;
    background: var(--sc-orange);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
  }
  .sc-tile-btn:hover { background: #ffa455; transform: translateY(-1px); }

  .sc-process {
    padding-top: 60px;
    border-top: 1.5px solid rgba(0,166,78,0.15);
  }

  .sc-process-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    margin-bottom: 48px;
    flex-wrap: wrap;
  }

  .sc-process-header h2 {
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--sc-green-dark);
    margin: 0 0 10px;
    line-height: 1.15;
  }

  .sc-process-lead {
    font-size: clamp(0.95rem, 1.6vw, 1.25rem);
    opacity: 0.85;
    margin: 0;
    line-height: 1.5;
  }

  .sc-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .sc-trust-card {
    background: var(--sc-white);
    border-radius: 22px;
    padding: 28px 28px 22px;
    box-shadow: 0 8px 32px rgba(0,128,55,0.08);
      transition: all 0.4s ease;
      clip-path: polygon(0 0, 100% 0, 100% 88%, 92% 100%, 8% 100%, 0 88%);
      position: relative;
      overflow: hidden;
  }
  .sc-trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 52px rgba(0,128,55,0.14);
    border-color: rgba(198,240,48,0.5);
  }

  .sc-trust-card-dark {
    background: linear-gradient(150deg, #005c2c 0%, #007836 55%, #009444 100%);
    color: var(--sc-white);
  }
  .sc-trust-card-dark h3 { color: var(--sc-green-light); }
  .sc-trust-card-dark .sc-trust-item b { color: var(--sc-white); }
  .sc-trust-card-dark .sc-trust-item span { color: rgba(255,255,255,0.72); }
  .sc-trust-card-dark:hover { border-color: rgba(216,240,122,0.4); }

  .sc-trust-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 16px;
  }

  .sc-trust-top h3 {
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    font-weight: 700;
    color: var(--sc-green-dark);
    margin: 0;
    line-height: 1.2;
  }

  .sc-trust-img {
     position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      width: 55%;
      height: auto;
      max-width: 200px;
      opacity: 0.7;
      pointer-events: none;
      z-index: 1; 
  }
  .sc-trust-img img { width: 100%; height: auto; display: block; }

  .sc-trust-list {
    list-style: none;
    padding: 0; margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
  }

  .sc-trust-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }

  .sc-dot {
    width: 8px; height: 8px;
    background: var(--sc-green-accent);
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
    display: block;
  }
  .sc-trust-card-dark .sc-dot { background: var(--sc-green-light); }

  .sc-trust-item b {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sc-green-dark);
    display: block;
    margin-bottom: 1px;
    line-height: 1.2;
  }

  .sc-trust-item span {
    font-size: 0.88rem;
    opacity: 0.8;
    line-height: 1.35;
    display: block;
  }

  .sc-fadein {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .sc-fadein.sc-visible {
    opacity: 1;
    transform: translateY(0);
  }
  @media (max-width: 1280px) {
    .sc-trust-img { width: 70px; }
  }

  @media (max-width: 1100px) {
    .sc-tiles {
      grid-template-columns: repeat(3, 1fr);
    }
    .sc-tile:nth-child(4),
    .sc-tile:nth-child(5) {
    }
  }

  @media (max-width: 1023px) {
    .sc-section { padding: 80px 0 90px; }

    .sc-header { align-items: flex-start; }

    .sc-tiles { grid-template-columns: repeat(2, 1fr); gap: 14px; }

    .sc-tile-arrow { display: none; }

    .sc-trust-grid { grid-template-columns: 1fr; gap: 20px; }

    .sc-trust-img { width: 80px; }

    .sc-process-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }
  }

  @media (max-width: 768px) {
    .sc-container { padding: 0 16px; }
    .sc-section { padding: 64px 0 72px; }

    .sc-header { flex-direction: column; align-items: flex-start; margin-bottom: 36px; }
    .sc-btn-ghost { width: 100%; justify-content: center; }

    .sc-tiles {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-bottom: 56px;
    }

    .sc-tile:last-child {
      grid-column: 1 / -1;
      clip-path: polygon(0 0,100% 0,100% 92%,97% 100%,3% 100%,0 92%);
      flex-direction: row;
      align-items: center;
      padding: 20px 20px;
    }
    .sc-tile:last-child .sc-tile-body { flex: 1; }
    .sc-tile:last-child .sc-tile-btn { width: auto; white-space: nowrap; }

    .sc-trust-card { padding: 28px 24px 24px; }
    .sc-trust-img { width: 64px; }
  }

  @media (max-width: 640px) {
    .sc-tiles {
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .sc-tile {
      flex-direction: row;
      align-items: center;
      padding: 16px 18px;
      clip-path: none;
      border-radius: 16px;
      gap: 14px;
    }

    .sc-tile:last-child {
      grid-column: auto;
      flex-direction: row;
      clip-path: none;
      padding: 16px 18px;
    }

    .sc-tile-icon { font-size: 1.5rem; flex-shrink: 0; }
    .sc-tile-body { flex: 1; min-width: 0; }
    .sc-tile-title { font-size: 0.97rem; }
    .sc-tile-desc  { font-size: 0.8rem; }
    .sc-tile-btn {
      width: auto;
      white-space: nowrap;
      padding: 8px 14px;
      font-size: 0.83rem;
      flex-shrink: 0;
    }

    .sc-process { padding-top: 44px; }
    .sc-trust-card { padding: 24px 18px 20px; border-radius: 18px; clip-path: none; }
    .sc-trust-top { flex-direction: row; align-items: center; }
    .sc-trust-img { width: 56px; }
    .sc-trust-top h3 { font-size: 1.25rem; }
    .sc-trust-cta { width: 100%; justify-content: center; }

    .sc-btn { font-size: 0.95rem; padding: 11px 20px; }
    .sc-btn-ghost { width: 100%; justify-content: center; }
    .sc-btn-primary { width: 100%; justify-content: center; }
  }

  @media (max-width: 480px) {
    .sc-container { padding: 0 14px; }
    .sc-section { padding: 56px 0 64px; }

    .sc-tile { padding: 14px 15px; gap: 12px; }
    .sc-tile-icon { font-size: 1.35rem; }
    .sc-tile-title { font-size: 0.92rem; }
    .sc-tile-desc  { font-size: 0.76rem; }
    .sc-tile-btn { padding: 7px 12px; font-size: 0.79rem; }

    .sc-trust-item b { font-size: 0.97rem; }
    .sc-trust-item span { font-size: 0.86rem; }
  }

  @media (max-width: 360px) {
    .sc-container { padding: 0 12px; }
    .sc-section { padding: 48px 0 56px; }

    .sc-header h2 { font-size: 1.65rem; }
    .sc-lead { font-size: 0.92rem; }

    .sc-tile { flex-direction: column; align-items: flex-start; gap: 10px; padding: 14px 14px 12px; }
    .sc-tile-btn { width: 100%; }

    .sc-trust-card { padding: 20px 14px 18px; }
    .sc-trust-top { flex-direction: column; gap: 10px; }
    .sc-trust-img { width: 50px; }
    .sc-process-header h2 { font-size: 1.5rem; }
  }
  
  
  
  
  
  
  
  
  
  
  
  
  .svc-section {
    background: linear-gradient(150deg, #004d20 0%, #006a2f 45%, #008540 100%);
    color: #fff;
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
  }

  .svc-section::before {
    content: '';
    position: absolute;
    top: -160px; right: -160px;
    width: 560px; height: 560px;
    background: rgba(198,240,48,0.07);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
  }
  .svc-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 400px; height: 400px;
    background: rgba(0,0,0,0.15);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
  }

  .svc-wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }

  .svc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  .svc-header-text { flex: 1; min-width: 0; }

  .svc-header h2 {
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    font-weight: 800;
    color: #d8f07a;
    margin: 0 0 10px;
    line-height: 1.1;
  }

  .svc-lead {
    font-size: clamp(0.95rem, 1.6vw, 1.3rem);
    color: rgba(255,255,255,0.82);
    margin: 0;
    line-height: 1.45;
  }

  .svc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    font-size: 0.97rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.35s ease;
    border: none;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .svc-btn-primary {
    background: #ff923d;
    color: #000;
    box-shadow: 0 4px 14px rgba(255,146,61,0.3);
  }
  .svc-btn-primary:hover { background: #ffa455; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(255,146,61,0.42); }

  .svc-btn-ghost {
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(216,240,122,0.4);
    color: #d8f07a;
  }
  .svc-btn-ghost:hover { background: rgba(216,240,122,0.12); border-color: #d8f07a; }

  .svc-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
  }

  .svc-filter {
    padding: 7px 18px;
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.14);
    border-radius: 50px;
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .svc-filter:hover {
    background: rgba(198,240,48,0.1);
    border-color: rgba(198,240,48,0.4);
    color: #d8f07a;
  }

  .svc-filter.active {
    background: #c6f030;
    border-color: #c6f030;
    color: #000;
    box-shadow: 0 3px 10px rgba(198,240,48,0.35);
  }

  .svc-swiper-shell {
    position: relative;
    margin: 0 -8px;
    padding: 0 8px 56px;
  }

  .svc-swiper { width: 100%; overflow: visible; }

  .svc-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: default;
    transition: transform 0.42s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.42s ease;
    clip-path: polygon(0 0,100% 0,100% 88%,92% 100%,8% 100%,0 88%);
    box-shadow: 0 10px 36px rgba(0,0,0,0.35);
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
  }

  .svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.82) 0%,
      rgba(0,0,0,0.42) 50%,
      rgba(0,0,0,0.1) 100%
    );
    z-index: 0;
    transition: background 0.4s ease;
  }

  .svc-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  }

  .svc-card:hover::before {
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.88) 0%,
      rgba(0,0,0,0.55) 55%,
      rgba(0,0,0,0.15) 100%
    );
  }

  .svc-card-inner {
    position: relative;
    z-index: 1;
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .svc-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(198,240,48,0.18);
    border: 1px solid rgba(198,240,48,0.35);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #c6f030;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    align-self: flex-start;
  }

  .svc-name {
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
  }

  .svc-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
  }

  .svc-order-btn {
    display: block;
    width: 100%;
    padding: 11px;
    background: #ff923d;
    color: #000;
    border: none;
    border-radius: 9px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 4px;
    text-align: center;
  }
  .svc-order-btn:hover { background: #ffa455; transform: translateY(-1px); box-shadow: 0 5px 16px rgba(255,146,61,0.4); }

  .svc-card.svc-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .svc-card.svc-visible {
    opacity: 1;
    transition: opacity 0.3s ease;
  }

  .svc-nav {
    position: absolute;
    top: calc(50% - 28px);
    width: 52px; height: 52px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #c6f030;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.3s ease;
  }
  .svc-nav:hover {
    background: rgba(0,0,0,0.8);
    border-color: rgba(198,240,48,0.5);
    transform: scale(1.08);
  }
  .svc-nav:active { transform: scale(0.95); }
  .svc-nav.swiper-button-disabled { opacity: 0.3; pointer-events: none; }

  .svc-nav svg {
    width: 22px; height: 22px;
    stroke: currentColor; fill: none;
    stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  }

  .svc-nav-prev { left: -26px; }
  .svc-nav-next { right: -26px; }

  .svc-pagination {
    position: absolute;
    bottom: 12px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 7px;
  }

  .svc-pagination .swiper-pagination-bullet {
    width: 8px; height: 8px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
  }
  .svc-pagination .swiper-pagination-bullet-active {
    background: #d8f07a;
    width: 24px;
    border-radius: 4px;
  }

  .svc-cta-banner {
    margin-top: 52px;
    background: #fff;
    border-radius: 18px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  }

  .svc-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
  }

  .svc-cta-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
    line-height: 1;
  }

  .svc-cta-banner h3 {
    font-size: clamp(1.15rem, 2vw, 1.7rem);
    font-weight: 700;
    color: #007836;
    margin: 0 0 5px;
    line-height: 1.2;
  }

  .svc-cta-banner p {
    font-size: clamp(0.82rem, 1.3vw, 1rem);
    color: #333;
    margin: 0;
    line-height: 1.45;
    opacity: 0.85;
  }

  .svc-fadein {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .svc-fadein.svc-visible { opacity: 1; transform: translateY(0); }


  

  @media (max-width: 1280px) {
    .svc-nav-prev { left: -20px; }
    .svc-nav-next { right: -20px; }
  }

  @media (max-width: 1023px) {
    .svc-section { padding: 80px 0 90px; }
    .svc-nav-prev { left: 0; }
    .svc-nav-next { right: 0; }
    .svc-swiper-shell { margin: 0; padding: 0 0 52px; }
    .svc-nav { width: 44px; height: 44px; top: calc(50% - 22px); }
    .svc-nav svg { width: 18px; height: 18px; }
  }

  @media (max-width: 768px) {
    .svc-wrap { padding: 0 16px; }
    .svc-section { padding: 64px 0 72px; }
    .svc-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
    .svc-btn-ghost { width: 100%; justify-content: center; }
    .svc-filters { gap: 6px; margin-bottom: 28px; }
    .svc-filter { padding: 6px 14px; font-size: 0.82rem; }
    .svc-card { min-height: 320px; }
    .svc-card-inner { padding: 22px 22px 26px; }
    .svc-cta-banner { flex-direction: column; align-items: flex-start; padding: 24px 22px; gap: 20px; }
    .svc-cta-left { gap: 14px; }
    .svc-btn-primary { width: 100%; justify-content: center; }
  }

  @media (max-width: 640px) {
    .svc-section { padding: 56px 0 64px; }
    .svc-nav { display: none; }
    .svc-swiper-shell { padding-bottom: 48px; }
    .svc-card { min-height: 300px; border-radius: 16px; clip-path: none; }
    .svc-card-inner { padding: 18px 18px 22px; gap: 8px; }
    .svc-name { font-size: 1.25rem; }
    .svc-desc { font-size: 0.9rem; }
    .svc-order-btn { padding: 10px; font-size: 0.9rem; }
    .svc-cta-banner { border-radius: 14px; padding: 20px 18px; }
    .svc-cta-icon { font-size: 1.8rem; }
  }

  @media (max-width: 480px) {
    .svc-wrap { padding: 0 14px; }
    .svc-section { padding: 48px 0 56px; }
    .svc-filters { gap: 5px; margin-bottom: 22px; }
    .svc-filter { padding: 5px 12px; font-size: 0.78rem; }
    .svc-card { min-height: 280px; }
    .svc-card-inner { padding: 16px 16px 20px; }
    .svc-name { font-size: 1.15rem; }
    .svc-desc { font-size: 0.85rem; }
    .svc-cta-left { flex-direction: column; gap: 10px; }
    .svc-cta-icon { display: none; }
  }

  @media (max-width: 360px) {
    .svc-wrap { padding: 0 12px; }
    .svc-section { padding: 44px 0 52px; }
    .svc-header h2 { font-size: 1.6rem; }
    .svc-lead { font-size: 0.88rem; }
    .svc-filter { padding: 5px 10px; font-size: 0.75rem; }
    .svc-card { min-height: 260px; }
    .svc-name { font-size: 1.05rem; }
    .svc-desc { font-size: 0.82rem; }
    .svc-order-btn { font-size: 0.85rem; padding: 9px; }
    .svc-cta-banner h3 { font-size: 1.1rem; }
    .svc-cta-banner p { font-size: 0.8rem; }
  }
  
  
  
  
  
  
  
  
  
  
   .inc-section {
    background: #d8f07a; 
    color: #111;
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
  }

  .inc-section::before {
    content: '';
    position: absolute;
    top: -140px; right: -100px;
    width: 520px; height: 520px;
    background: rgba(198,240,48,0.3);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
  }
  .inc-section::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -80px;
    width: 400px; height: 400px;
    background: rgba(0,166,78,0.1);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
  }

  .inc-wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }

  .inc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 28px;
    margin-bottom: 56px;
    flex-wrap: wrap;
  }

  .inc-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #00a64e;
    background: rgba(0,166,78,0.1);
    border: 1px solid rgba(0,166,78,0.25);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
  }

  .inc-header h2 {
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    font-weight: 800;
    color: #00a64e;
    margin: 0 0 10px;
    line-height: 1.1;
  }

  .inc-lead {
    font-size: clamp(0.95rem, 1.6vw, 1.25rem);
    color: rgba(17,17,17,0.75);
    margin: 0;
    line-height: 1.5;
    max-width: 560px;
  }

  .inc-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 26px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 11px;
    cursor: pointer;
    transition: all 0.35s ease;
    border: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .inc-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

  .inc-btn-primary {
    background: #ff923d;
    color: #000;
    box-shadow: 0 4px 14px rgba(255,146,61,0.3);
  }
  .inc-btn-primary:hover { background: #ffa455; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(255,146,61,0.42); }

  .inc-btn-ghost {
    background: transparent;
    border: 1.5px solid rgba(0,166,78,0.45);
    color: #00a64e;
  }
  .inc-btn-ghost:hover { background: rgba(0,166,78,0.08); border-color: #00a64e; }

  .inc-body {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
  }

  .inc-checklist {
    background: #fff;
    border-radius: 22px;
    padding: 36px 36px 32px;
    box-shadow: 0 8px 32px rgba(0,128,55,0.1);
    clip-path: polygon(0 0,100% 0,100% 94%,96% 100%,4% 100%,0 94%);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .inc-checklist:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(0,128,55,0.15);
  }

  .inc-phase {}

  .inc-phase-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
  }

  .inc-phase-num {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, #00a64e, #c6f030);
    color: #000;
    font-size: 0.78rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.5px;
  }

  .inc-phase-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #00a64e;
    text-transform: uppercase;
    letter-spacing: 0.8px;
  }

  .inc-phase + .inc-phase {
    padding-top: 28px;
    border-top: 1px dashed rgba(0,166,78,0.2);
  }

  .inc-items {
    list-style: none;
    padding: 0; margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
  }

  .inc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #222;
    line-height: 1.4;
    padding: 9px 5px;
    border-radius: 9px;
    background: transparent;
    transition: background 0.25s ease, transform 0.25s ease;
    cursor: default;
  }
  .inc-item:hover {
    background: rgba(0,166,78,0.06);
    transform: translateX(3px);
  }

  .inc-check {
    width: 22px; height: 22px;
    background: linear-gradient(135deg, #00a64e, #c6f030);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }
  .inc-item:hover .inc-check { transform: scale(1.15); }

  .inc-check svg {
    width: 12px; height: 12px;
    stroke: #000;
  }

  .inc-aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .inc-photo-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    flex-shrink: 0;
  }

  .inc-photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }
  .inc-photo-wrap:hover .inc-photo { transform: scale(1.04); }

  .inc-photo-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(5,20,5,0.78);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(198,240,48,0.35);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .inc-badge-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: #c6f030;
    line-height: 1;
  }

  .inc-badge-text {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.2;
  }

  .inc-guarantees {
    background: #fff;
    border-radius: 18px;
    padding: 22px 22px 18px;
    box-shadow: 0 6px 24px rgba(0,128,55,0.09);
    display: flex;
    flex-direction: column;
    gap: 16px;
    clip-path: polygon(0 0,100% 0,100% 92%,94% 100%,6% 100%,0 92%);
    transition: transform 0.4s ease;
  }
  .inc-guarantees:hover { transform: translateY(-4px); }

  .inc-guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(0,166,78,0.04);
    border: 1px solid rgba(0,166,78,0.1);
    transition: all 0.3s ease;
  }
  .inc-guarantee-item:hover {
    background: rgba(0,166,78,0.08);
    border-color: rgba(0,166,78,0.25);
    transform: translateX(3px);
  }

  .inc-gi-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 1px;
  }

  .inc-guarantee-item b {
    display: block;
    font-size: 0.97rem;
    font-weight: 700;
    color: #00a64e;
    margin-bottom: 2px;
    line-height: 1.2;
  }

  .inc-guarantee-item span {
    font-size: 0.85rem;
    color: rgba(17,17,17,0.68);
    line-height: 1.35;
    display: block;
  }

  .inc-aside-cta { width: 100%; justify-content: center; }

  .inc-fadein {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .inc-fadein.inc-visible { opacity: 1; transform: translateY(0); }


  @media (max-width: 1280px) {
    .inc-body { grid-template-columns: 1fr 340px; }
  }

  @media (max-width: 1100px) {
    .inc-body { grid-template-columns: 1fr 300px; gap: 28px; }
    .inc-photo { height: 220px; }
  }

  @media (max-width: 1023px) {
    .inc-section { padding: 80px 0 90px; }

    .inc-body {
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .inc-aside {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .inc-photo-wrap { grid-column: 1 / -1; }
    .inc-photo { height: 240px; }
    .inc-aside-cta { grid-column: 1 / -1; }
  }

  @media (max-width: 768px) {
    .inc-wrap { padding: 0 16px; }
    .inc-section { padding: 64px 0 72px; }
    .inc-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 40px; }
    .inc-btn-primary { width: 100%; justify-content: center; }
    .inc-checklist { padding: 28px 24px 24px; gap: 24px; }
    .inc-items { grid-template-columns: 1fr; gap: 10px; }
    .inc-phase:nth-child(2) .inc-items { grid-template-columns: 1fr; }
    .inc-item { font-size: 0.97rem; }
    .inc-aside { grid-template-columns: 1fr; }
    .inc-photo { height: 210px; }
  }

  @media (max-width: 640px) {
    .inc-section { padding: 56px 0 64px; }
    .inc-checklist { border-radius: 18px; clip-path: none; padding: 24px 20px; }
    .inc-item { font-size: 0.93rem; padding: 8px 10px; gap: 10px; }
    .inc-check { width: 20px; height: 20px; }
    .inc-check svg { width: 10px; height: 10px; }
    .inc-guarantees { clip-path: none; border-radius: 16px; padding: 18px 16px; }
    .inc-photo { height: 190px; }
    .inc-photo-badge { padding: 8px 13px; }
    .inc-badge-num { font-size: 1.3rem; }
  }

  @media (max-width: 480px) {
    .inc-wrap { padding: 0 14px; }
    .inc-section { padding: 48px 0 56px; }
    .inc-header h2 { font-size: 1.65rem; }
    .inc-lead { font-size: 0.92rem; }
    .inc-phase-label { gap: 10px; margin-bottom: 14px; }
    .inc-phase-num { width: 30px; height: 30px; font-size: 0.72rem; }
    .inc-phase-title { font-size: 0.95rem; }
    .inc-item { font-size: 0.88rem; padding: 7px 9px; gap: 9px; }
    .inc-check { width: 18px; height: 18px; }
    .inc-check svg { width: 9px; height: 9px; }
    .inc-guarantee-item { padding: 9px 10px; }
    .inc-gi-icon { font-size: 1.2rem; }
    .inc-guarantee-item b { font-size: 0.9rem; }
    .inc-guarantee-item span { font-size: 0.8rem; }
    .inc-photo { height: 170px; }
  }

  @media (max-width: 360px) {
    .inc-wrap { padding: 0 12px; }
    .inc-section { padding: 44px 0 52px; }
    .inc-header h2 { font-size: 1.5rem; }
    .inc-eyebrow { font-size: 0.7rem; padding: 3px 10px; }
    .inc-checklist { padding: 20px 16px; gap: 20px; }
    .inc-item { font-size: 0.84rem; }
    .inc-phase + .inc-phase { padding-top: 20px; }
    .inc-photo { height: 155px; }
    .inc-badge-num { font-size: 1.1rem; }
    .inc-badge-text { font-size: 0.72rem; }
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  .pr-section {
    background: linear-gradient(150deg, #004d20 0%, #006a2f 45%, #008540 100%);
    color: #fff;
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
  }

  .pr-section::before {
    content: '';
    position: absolute;
    top: -160px; left: -120px;
    width: 600px; height: 600px;
    background: rgba(198,240,48,0.06);
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
  }
  .pr-section::after {
    content: '';
    position: absolute;
    bottom: -80px; right: -100px;
    width: 500px; height: 500px;
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
  }

  .pr-wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }

  .pr-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 28px;
    margin-bottom: 52px;
    flex-wrap: wrap;
  }

  .pr-eyebrow {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #c6f030;
    background: rgba(198,240,48,0.1);
    border: 1px solid rgba(198,240,48,0.25);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
  }

  .pr-header h2 {
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    font-weight: 800;
    color: #d8f07a;
    margin: 0 0 10px;
    line-height: 1.1;
  }

  .pr-lead {
    font-size: clamp(0.95rem, 1.6vw, 1.2rem);
    color: rgba(255,255,255,0.78);
    margin: 0;
    line-height: 1.5;
    max-width: 540px;
  }

  .pr-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 11px;
    cursor: pointer;
    transition: all 0.35s ease;
    border: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .pr-btn-primary {
    background: #ff923d;
    color: #000;
    box-shadow: 0 4px 14px rgba(255,146,61,0.3);
  }
  .pr-btn-primary:hover { background: #ffa455; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(255,146,61,0.42); }

  .pr-btn-ghost {
    background: transparent;
    border: 1.5px solid rgba(216,240,122,0.4);
    color: #d8f07a;
  }
  .pr-btn-ghost:hover { background: rgba(216,240,122,0.1); border-color: #d8f07a; }

  .pr-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }

  .pr-pkg {
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(14px);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
    position: relative;
    overflow: hidden;
  }
  .pr-pkg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00a64e, #c6f030);
    border-radius: 20px 20px 0 0;
  }
  .pr-pkg:hover {
    transform: translateY(-8px);
    border-color: rgba(198,240,48,0.35);
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
    background: rgba(0,0,0,0.55);
  }

  .pr-pkg-accent {
    background: rgba(0,100,45,0.5);
    border-color: rgba(198,240,48,0.3);
  }
  .pr-pkg-accent::before { background: linear-gradient(90deg, #c6f030, #ff923d); }
  .pr-pkg-accent:hover { border-color: rgba(198,240,48,0.6); background: rgba(0,120,55,0.55); }

  .pr-pkg-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .pr-pkg-label {
    font-size: 1.15rem;
    font-weight: 700;
    color: #d8f07a;
  }

  .pr-pkg-badge {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 4px 10px;
    border-radius: 50px;
    white-space: nowrap;
  }
  .pr-badge-accent {
    color: #c6f030;
    background: rgba(198,240,48,0.12);
    border-color: rgba(198,240,48,0.3);
  }

  .pr-pkg-popular {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff923d;
    background: rgba(255,146,61,0.12);
    border: 1px solid rgba(255,146,61,0.3);
    padding: 3px 12px;
    border-radius: 50px;
    align-self: flex-start;
    margin-top: -6px;
  }

  .pr-pkg-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
  }
  .pr-pkg-list li {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.82);
    padding-left: 18px;
    position: relative;
    line-height: 1.4;
  }
  .pr-pkg-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c6f030;
    font-weight: 700;
    font-size: 0.88rem;
  }

  .pr-pkg-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    line-height: 1.35;
  }

  .pr-pkg-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.18);
    border-radius: 9px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
  }
  .pr-pkg-btn:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.35); transform: translateY(-1px); }

  .pr-pkg-btn-accent {
    background: #ff923d;
    border-color: #ff923d;
    color: #000;
  }
  .pr-pkg-btn-accent:hover { background: #ffa455; border-color: #ffa455; box-shadow: 0 5px 16px rgba(255,146,61,0.4); }

  .pr-grid {
    display: grid;
    grid-template-columns: 58% 42%;
    gap: 24px;
  }

  .pr-card {
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(16px);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
    clip-path: polygon(0 0,100% 0,100% 92%,94% 100%,6% 100%,0 92%);
  }
  .pr-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
    border-color: rgba(198,240,48,0.25);
  }

  .pr-card-stripe {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00a64e, #c6f030, #ff923d);
    z-index: 2;
  }

  .pr-card-bg {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  .pr-card:hover .pr-card-bg { opacity: 0.18; }

  .pr-card-factors .pr-card-bg {
    background-image: url('/userfiles/images/remont/fon-1.webp');
  }
  .pr-card-bg-tools {
    background-image: url('/userfiles/images/remont/fon-2.webp');
  }

  .pr-card-content {
    position: relative;
    z-index: 1;
    padding: 36px 32px 32px;
  }

  .pr-card h3 {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    font-weight: 700;
    color: #d8f07a;
    margin: 0 0 28px;
    line-height: 1.2;
  }

  .pr-factors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .pr-chip {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    background: rgba(198,240,48,0.06);
    border: 1px solid rgba(198,240,48,0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: default;
  }
  .pr-chip:hover {
    background: rgba(198,240,48,0.1);
    border-color: rgba(198,240,48,0.3);
    transform: translateY(-2px);
  }

  .pr-chip-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 1px;
  }

  .pr-chip b {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
    line-height: 1.2;
  }
  .pr-chip span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.35;
    display: block;
  }

  .pr-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
  }

  .pr-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 14px 16px;
    background: rgba(198,240,48,0.06);
    border: 1px solid rgba(198,240,48,0.12);
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  .pr-step:hover {
    background: rgba(198,240,48,0.1);
    border-color: rgba(198,240,48,0.25);
    transform: translateX(4px);
  }

  .pr-step-num {
    width: 30px; height: 30px;
    background: linear-gradient(135deg, #00a64e, #c6f030);
    color: #000;
    font-size: 0.82rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .pr-step b {
    display: block;
    font-size: 0.97rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
  }
  .pr-step span {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.35;
  }

  .pr-actions-btns {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 24px;
  }
  .pr-actions-btns .pr-btn { width: 50%; justify-content: center; }

  .pr-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 16px 18px;
    background: rgba(198,240,48,0.06);
    border: 1px solid rgba(198,240,48,0.14);
    border-radius: 12px;
  }

  .pr-stat {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .pr-stat-num {
    font-size: 1.2rem;
    font-weight: 800;
    color: #c6f030;
    line-height: 1;
  }

  .pr-stat-text {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.2;
  }

  .pr-stat-sep {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
  }

  .pr-fadein {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .pr-fadein.pr-visible { opacity: 1; transform: translateY(0); }




  @media (max-width: 1280px) {
    .pr-factors { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 1100px) {
    .pr-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 1023px) {
    .pr-section { padding: 80px 0 90px; }
    .pr-packages { grid-template-columns: 1fr 1fr; }
    .pr-pkg:last-child { grid-column: 1 / -1; }
    .pr-pkg:last-child .pr-pkg-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }
    .pr-grid { grid-template-columns: 1fr; }
    .pr-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .pr-btn.pr-header > .pr-btn-primary { width: 100%; justify-content: center; }
  }

  @media (max-width: 768px) {
    .pr-wrap { padding: 0 16px; }
    .pr-section { padding: 64px 0 72px; }
    .pr-header { margin-bottom: 40px; }
    .pr-btn-primary { width: 100%; justify-content: center; }
    .pr-packages { gap: 14px; }
    .pr-pkg { padding: 22px 18px 20px; gap: 12px; }
    .pr-card-content { padding: 28px 24px 26px; }
    .pr-factors { gap: 10px; }
    .pr-chip { padding: 12px; }
    .pr-stats { padding: 14px; }
    .pr-stat-num { font-size: 1.05rem; }
	.pr-actions-btns .pr-btn { font-size: 0.7rem; padding: 11px; }
  }

  @media (max-width: 640px) {
    .pr-section { padding: 56px 0 64px; }
    .pr-packages { grid-template-columns: 1fr; }
    .pr-pkg:last-child { grid-column: auto; }
    .pr-pkg:last-child .pr-pkg-list { grid-template-columns: 1fr; }
    .pr-factors { grid-template-columns: 1fr; }
    .pr-card { clip-path: none; border-radius: 18px; }
    .pr-card-content { padding: 24px 20px 22px; }
    .pr-chip { padding: 11px 12px; }
  }

  @media (max-width: 480px) {
    .pr-wrap { padding: 0 14px; }
    .pr-section { padding: 48px 0 56px; }
    .pr-header h2 { font-size: 1.65rem; }
    .pr-lead { font-size: 0.92rem; }
    .pr-pkg { padding: 18px 16px; gap: 10px; border-radius: 16px; }
    .pr-pkg-label { font-size: 1.05rem; }
    .pr-pkg-list li { font-size: 0.87rem; }
    .pr-card-content { padding: 20px 16px 18px; }
    .pr-step { padding: 12px 13px; gap: 12px; }
    .pr-step b { font-size: 0.92rem; }
    .pr-step span { font-size: 0.8rem; }
    .pr-chip-icon { font-size: 1.1rem; }
    .pr-chip b { font-size: 0.88rem; }
    .pr-chip span { font-size: 0.78rem; }
    .pr-stats { flex-wrap: wrap; gap: 10px; justify-content: center; }
    .pr-stat-sep { display: none; }
    .pr-stat { flex: 0 0 auto; min-width: 80px; }
  }

  @media (max-width: 360px) {
    .pr-wrap { padding: 0 12px; }
    .pr-section { padding: 44px 0 52px; }
    .pr-header h2 { font-size: 1.5rem; }
    .pr-eyebrow { font-size: 0.68rem; }
    .pr-pkg { padding: 16px 14px; }
    .pr-pkg-label { font-size: 0.97rem; }
    .pr-pkg-list li { font-size: 0.82rem; }
    .pr-card-content { padding: 18px 14px; }
    .pr-chip { padding: 10px; gap: 9px; }
    .pr-step { padding: 10px 12px; gap: 10px; }
    .pr-step-num { width: 26px; height: 26px; font-size: 0.75rem; }
    .pr-actions-btns .pr-btn { font-size: 0.5rem; padding: 11px; }
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  .tl-section {
    background: #d8f07a;
    color: #111;
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
  }

  .tl-section::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 500px; height: 500px;
    background: rgba(198,240,48,0.35);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
  }
  .tl-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 420px; height: 420px;
    background: rgba(0,166,78,0.1);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
  }

  .tl-wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }

  .tl-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 28px;
    margin-bottom: 64px;
    flex-wrap: wrap;
  }

  .tl-eyebrow {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #00a64e;
    background: rgba(0,166,78,0.1);
    border: 1px solid rgba(0,166,78,0.25);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
  }

  .tl-header h2 {
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    font-weight: 800;
    color: #00a64e;
    margin: 0 0 10px;
    line-height: 1.1;
  }

  .tl-lead {
    font-size: clamp(0.95rem, 1.5vw, 1.2rem);
    color: rgba(17,17,17,0.72);
    margin: 0;
    max-width: 560px;
    line-height: 1.5;
  }

  .tl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 11px;
    cursor: pointer;
    transition: all 0.35s ease;
    border: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .tl-btn-primary {
    background: #ff923d;
    color: #000;
    box-shadow: 0 4px 14px rgba(255,146,61,0.3);
  }
  .tl-btn-primary:hover { background: #ffa455; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(255,146,61,0.42); }

  .tl-btn-ghost {
    background: transparent;
    border: 1.5px solid rgba(0,166,78,0.45);
    color: #00a64e;
  }
  .tl-btn-ghost:hover { background: rgba(0,166,78,0.08); border-color: #00a64e; }

  .tl-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .tl-item {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 0;
    align-items: stretch;
  }

  .tl-aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 4px;
    padding-right: 24px;
  }

  .tl-num {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, #c6f030 0%, #ff923d 100%);
    color: #000;
    font-size: 1.4rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(198,240,48,0.4);
    z-index: 1;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .tl-item:hover .tl-num {
    transform: scale(1.12);
    box-shadow: 0 10px 30px rgba(198,240,48,0.55);
  }

  .tl-connector {
    flex: 1;
    width: 2px;
    background: linear-gradient(to bottom, rgba(0,166,78,0.35), rgba(0,166,78,0.08));
    margin-top: 8px;
    margin-bottom: 0;
    border-radius: 2px;
    min-height: 32px;
  }

  .tl-card {
    background: #fff;
    border-radius: 20px;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(0,128,55,0.08);
    clip-path: polygon(0 0,100% 0,100% 92%,97% 100%,3% 100%,0 92%);
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
    overflow: hidden;
    position: relative;
  }
  .tl-item:hover .tl-card {
    transform: translateX(6px);
    box-shadow: 0 16px 50px rgba(0,128,55,0.14);
  }

  .tl-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #c6f030, #00a64e);
    border-radius: 20px 0 0 0;
  }

  .tl-card-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 32px 28px 36px;
  }

  .tl-card-text { flex: 1; min-width: 0; }

  .tl-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #00a64e;
    background: rgba(0,166,78,0.1);
    border: 1px solid rgba(0,166,78,0.2);
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
  }

  .tl-title {
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 700;
    color: #00a64e;
    margin: 0 0 8px;
    line-height: 1.2;
  }

  .tl-desc {
    font-size: clamp(0.88rem, 1.3vw, 1rem);
    color: rgba(17,17,17,0.72);
    line-height: 1.55;
    margin: 0 0 14px;
  }

  .tl-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }

  .tl-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(17,17,17,0.55);
  }
  .tl-meta-item svg { width: 14px; height: 14px; flex-shrink: 0; }

  .tl-card-img {
    flex-shrink: 0;
    width: 150px;
    text-align: center;
  }
  .tl-card-img img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.12));
    transition: transform 0.45s ease;
  }
  .tl-item:hover .tl-card-img img { transform: scale(1.08) rotate(-2deg); }


  .tl-item-final .tl-num-final {
    background: linear-gradient(135deg, #00a64e 0%, #c6f030 100%);
    box-shadow: 0 6px 24px rgba(0,166,78,0.45);
  }
  .tl-item-final:hover .tl-num-final {
    box-shadow: 0 12px 34px rgba(0,166,78,0.6);
  }

  .tl-card-final {
    background: linear-gradient(135deg, #007836 0%, #00a64e 60%, #00c458 100%);
    box-shadow: 0 12px 48px rgba(0,128,55,0.3);
  }
  .tl-card-final::before {
    background: linear-gradient(to bottom, #c6f030, #ff923d);
  }
  .tl-card-final .tl-title { color: #d8f07a; }
  .tl-card-final .tl-desc { color: rgba(255,255,255,0.82); }

  .tl-tag-final {
    color: #c6f030;
    background: rgba(198,240,48,0.15);
    border-color: rgba(198,240,48,0.3);
  }

  .tl-meta-final {
    color: rgba(255,255,255,0.7) !important;
  }
  .tl-meta-final svg { stroke: rgba(198,240,48,0.8) !important; }

  .tl-final-cta {
    display: flex;
    gap: 12px;
    padding: 0 32px 28px 36px;
    flex-wrap: wrap;
  }

  .tl-fadein {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  }
  .tl-fadein.tl-visible { opacity: 1; transform: translateY(0); }

  @media (max-width: 1023px) {
    .tl-section { padding: 80px 0 90px; }
    .tl-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 52px; }
    .tl-btn-primary { width: 100%; justify-content: center; }
    .tl-card-img { width: 100px; }
    .tl-card-inner { padding: 24px 26px 24px 30px; }
    .tl-final-cta { padding: 0 26px 24px 30px; }
  }

  @media (max-width: 768px) {
    .tl-wrap { padding: 0 16px; }
    .tl-section { padding: 64px 0 72px; }
    .tl-item { grid-template-columns: 64px 1fr; }
    .tl-aside { padding-right: 16px; }
    .tl-num { width: 46px; height: 46px; font-size: 1.2rem; }
    .tl-card-img { width: 80px; }
    .tl-card-inner { gap: 14px; padding: 20px 20px 20px 24px; }
    .tl-final-cta { flex-direction: column; padding: 0 20px 22px 24px; }
    .tl-final-cta .tl-btn { width: 100%; justify-content: center; }
  }

  @media (max-width: 640px) {
    .tl-section { padding: 56px 0 64px; }

    .tl-card-img { display: none; }
    .tl-card { clip-path: none; border-radius: 16px; }
    .tl-card-inner { padding: 18px 18px 18px 22px; gap: 0; }
    .tl-card::before { width: 3px; }
    .tl-final-cta { padding: 0 18px 20px 22px; }

    .tl-item { grid-template-columns: 52px 1fr; }
    .tl-aside { padding-right: 12px; }
    .tl-num { width: 40px; height: 40px; font-size: 1.1rem; }
    .tl-connector { min-height: 24px; }
    .tl-card { margin-bottom: 18px; }
  }

  @media (max-width: 480px) {
    .tl-wrap { padding: 0 14px; }
    .tl-section { padding: 48px 0 56px; }
    .tl-header h2 { font-size: 1.65rem; }
    .tl-lead { font-size: 0.9rem; }
    .tl-item { grid-template-columns: 46px 1fr; }
    .tl-aside { padding-right: 10px; }
    .tl-num { width: 36px; height: 36px; font-size: 1rem; }
    .tl-card-inner { padding: 16px 16px 16px 18px; }
    .tl-title { font-size: 1.1rem; }
    .tl-desc { font-size: 0.87rem; }
    .tl-meta { gap: 10px; }
    .tl-meta-item { font-size: 0.78rem; }
    .tl-tag { font-size: 0.67rem; }
    .tl-card { margin-bottom: 14px; }
    .tl-final-cta { padding: 0 16px 18px 18px; gap: 10px; }
    .tl-btn { padding: 11px 18px; font-size: 0.93rem; }
  }

  @media (max-width: 360px) {
    .tl-wrap { padding: 0 12px; }
    .tl-section { padding: 44px 0 52px; }
    .tl-header h2 { font-size: 1.5rem; }
    .tl-eyebrow { font-size: 0.68rem; }
    .tl-item { grid-template-columns: 40px 1fr; }
    .tl-aside { padding-right: 8px; }
    .tl-num { width: 32px; height: 32px; font-size: 0.9rem; }
    .tl-card-inner { padding: 14px 14px 14px 16px; }
    .tl-title { font-size: 1rem; }
    .tl-desc { font-size: 0.83rem; }
    .tl-meta { gap: 8px; }
    .tl-meta-item { font-size: 0.74rem; }
    .tl-final-cta { padding: 0 14px 16px 16px; }
    .tl-btn { font-size: 0.88rem; padding: 10px 14px; }
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  .tm-section {
    background: linear-gradient(150deg, #004d20 0%, #006a2f 45%, #008540 100%);
    color: #fff;
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }

  .tm-section::before {
    content: '';
    position: absolute;
    top: -160px; right: -140px;
    width: 560px; height: 560px;
    background: rgba(198,240,48,0.07);
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    z-index: 0;
  }
  
  .tm-section::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 440px; height: 440px;
    background: rgba(0,0,0,0.18);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
  }

  .tm-wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }

  .tm-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 28px;
    margin-bottom: 52px;
    flex-wrap: nowrap;
    position: static;
  }

  .tm-header-text { flex: 1; min-width: 0; }

  .tm-eyebrow {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #c6f030;
    background: rgba(198,240,48,0.1);
    border: 1px solid rgba(198,240,48,0.28);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
  }

  .tm-header h2 {
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    font-weight: 800;
    color: #d8f07a;
    margin: 0 0 10px;
    line-height: 1.1;
  }

  .tm-lead {
    font-size: clamp(0.95rem, 1.6vw, 1.25rem);
    color: rgba(255,255,255,0.82);
    margin: 0;
    line-height: 1.5;
    max-width: 620px;
  }

  .tm-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 11px;
    cursor: pointer;
    transition: all 0.35s ease;
    border: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .tm-btn-primary {
    background: #ff923d;
    color: #000;
    box-shadow: 0 4px 14px rgba(255,146,61,0.3);
  }
  .tm-btn-primary:hover {
    background: #ffa455;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255,146,61,0.42);
  }

  .tm-swiper-shell {
    position: relative;
    margin: 0 -8px;
    padding: 0 8px 64px;
  }

  .tm-swiper {
    width: 100%;
    overflow: visible;
  }

  .tm-card {
    background: rgba(0,0,0,0.42);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.42s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.42s ease,
                border-color 0.35s ease;
    clip-path: polygon(0 0,100% 0,100% 90%,92% 100%,8% 100%,0 90%);
  }

  .tm-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00a64e, #c6f030);
    z-index: 2;
  }

  .tm-card:hover {
    transform: translateY(-10px);
    border-color: rgba(198,240,48,0.4);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
    background: rgba(0,0,0,0.58);
  }

  .tm-card--accent { background: rgba(0,80,30,0.55); border-color: rgba(198,240,48,0.25); }
  .tm-card--accent::before { background: linear-gradient(90deg, #c6f030, #ff923d); }
  .tm-card--accent:hover { background: rgba(0,100,40,0.65); border-color: rgba(198,240,48,0.55); }

  .tm-card-head {
    padding: 24px 22px 18px;
    display: grid;
    grid-template-columns: 1fr 60%;
    gap: 16px;
    align-items: start;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .tm-card-photo {
    width: 150px;
    height: 150px;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid rgba(198,240,48,0.28);
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    flex-shrink: 0;
    transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1),
                border-color 0.35s ease;
  }
  .tm-card:hover .tm-card-photo {
    transform: scale(1.05);
    border-color: rgba(198,240,48,0.6);
  }

  .tm-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }

  .tm-card-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
  }

  .tm-card-role {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #c6f030;
    background: rgba(198,240,48,0.1);
    border: 1px solid rgba(198,240,48,0.22);
    padding: 2px 9px;
    border-radius: 50px;
    align-self: flex-start;
  }

  .tm-card-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #d8f07a;
    margin: 0;
    line-height: 1.2;
  }

  .tm-card-exp {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.58);
    font-weight: 500;
  }
  .tm-card-exp svg {
    width: 13px; height: 13px;
    stroke: #c6f030; fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    flex-shrink: 0;
  }
  .tm-card-exp strong { color: #c6f030; font-weight: 700; }

  .tm-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 2px;
  }

  .tm-tag {
    padding: 3px 9px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.3;
    white-space: nowrap;
    transition: all 0.25s ease;
  }
  .tm-card:hover .tm-tag {
    background: rgba(198,240,48,0.08);
    border-color: rgba(198,240,48,0.22);
    color: #d8f07a;
  }

  .tm-card-body {
    padding: 18px 22px 24px;
  }

  .tm-card-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    margin: 0;
  }

  .tm-nav {
    position: absolute;
    top: calc(50% - 56px);
    width: 52px; height: 52px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #c6f030;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.3s ease;
  }
  .tm-nav:hover { background: rgba(0,0,0,0.85); border-color: rgba(198,240,48,0.5); transform: scale(1.08); }
  .tm-nav:active { transform: scale(0.95); }
  .tm-nav.swiper-button-disabled { opacity: 0.3; pointer-events: none; }
  .tm-nav svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
  .tm-nav-prev { left: -26px; }
  .tm-nav-next { right: -26px; }

  .tm-pagination {
    position: absolute;
    bottom: 12px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 7px;
  }
  .tm-pagination .swiper-pagination-bullet {
    width: 8px; height: 8px;
    background: rgba(255,255,255,0.28);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
  }
  .tm-pagination .swiper-pagination-bullet-active {
    background: #d8f07a;
    width: 24px;
    border-radius: 4px;
  }

  .tm-cta-banner {
    margin-top: 52px;
    background: #fff;
    border-radius: 18px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  }
  .tm-cta-left { display: flex; align-items: center; gap: 20px; flex: 1; min-width: 0; }
  .tm-cta-icon { font-size: 2.2rem; flex-shrink: 0; line-height: 1; }
  .tm-cta-banner h3 { font-size: clamp(1.1rem, 2vw, 1.65rem); font-weight: 700; color: #007836; margin: 0 0 5px; line-height: 1.2; }
  .tm-cta-banner p { font-size: clamp(0.82rem, 1.3vw, 0.97rem); color: #444; margin: 0; line-height: 1.45; opacity: 0.88; }

  .tm-fadein {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .tm-fadein.tm-visible { opacity: 1; transform: translateY(0); }

  @media (max-width: 1280px) {
    .tm-nav-prev { left: -20px; }
    .tm-nav-next { right: -20px; }
  }

  @media (max-width: 1023px) {
    .tm-section { padding: 80px 0 90px; }
    .tm-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 40px; }
    .tm-btn-primary { width: 100%; justify-content: center; }
    .tm-nav-prev { left: 0; }
    .tm-nav-next { right: 0; }
    .tm-swiper-shell { margin: 0; padding: 0 0 56px; }
    .tm-nav { width: 44px; height: 44px; }
    .tm-nav svg { width: 18px; height: 18px; }
  }

  @media (max-width: 768px) {
    .tm-wrap { padding: 0 16px; }
    .tm-section { padding: 64px 0 72px; }
    .tm-card-head { grid-template-columns: 1fr 1fr; gap: 13px; padding: 20px 18px 16px; }
    .tm-card-photo { width: 146px; height: 146px; border-radius: 12px; }
    .tm-card-name { font-size: 0.98rem; }
    .tm-card-body { padding: 15px 18px 20px; }
    .tm-card-desc { font-size: 0.84rem; }
    .tm-cta-banner { flex-direction: column; align-items: flex-start; padding: 24px 22px; gap: 20px; }
    .tm-btn-primary { width: 100%; justify-content: center; }
  }

  @media (max-width: 640px) {
    .tm-section { padding: 56px 0 64px; }
    .tm-nav { display: none; }
    .tm-swiper-shell { padding-bottom: 48px; }
    .tm-card { clip-path: none; border-radius: 16px; }
    .tm-card-head { grid-template-columns: 1fr 1fr; gap: 12px; padding: 18px 15px 14px; }
    .tm-card-photo { width: 138px; height: 138px; border-radius: 10px; }
    .tm-card-name { font-size: 0.93rem; }
    .tm-card-body { padding: 13px 15px 17px; }
    .tm-card-desc { font-size: 0.81rem; }
    .tm-tag { font-size: 0.69rem; padding: 2px 7px; }
    .tm-cta-banner { border-radius: 14px; padding: 20px 18px; }
    .tm-cta-left { gap: 14px; }
  }

  @media (max-width: 480px) {
    .tm-wrap { padding: 0 14px; }
    .tm-section { padding: 48px 0 56px; }
    .tm-header h2 { font-size: 1.65rem; }
    .tm-lead { font-size: 0.92rem; }
    .tm-card-head { grid-template-columns: 1fr 70%; gap: 11px; padding: 16px 13px 13px; }
    .tm-card-photo { width: 132px; height: 132px; border-radius: 9px; }
    .tm-card-role { font-size: 0.63rem; }
    .tm-card-name { font-size: 0.9rem; }
    .tm-card-exp { font-size: 0.75rem; }
    .tm-tag { font-size: 0.66rem; padding: 2px 6px; }
    .tm-card-body { padding: 12px 13px 16px; }
    .tm-card-desc { font-size: 0.79rem; }
    .tm-cta-left { flex-direction: column; gap: 10px; }
    .tm-cta-icon { display: none; }
    .tm-cta-banner h3 { font-size: 1.05rem; }
    .tm-cta-banner p { font-size: 0.8rem; }
  }

  @media (max-width: 360px) {
    .tm-wrap { padding: 0 12px; }
    .tm-section { padding: 44px 0 52px; }
    .tm-header h2 { font-size: 1.5rem; }
    .tm-eyebrow { font-size: 0.68rem; padding: 3px 10px; }
    .tm-card-head { grid-template-columns: 1fr 1fr; gap: 10px; padding: 14px 12px 12px; }
    .tm-card-photo { width: 126px; height: 126px; border-radius: 8px; }
    .tm-card-name { font-size: 0.85rem; }
    .tm-card-exp { font-size: 0.71rem; }
    .tm-tag { font-size: 0.63rem; padding: 2px 5px; }
    .tm-card-body { padding: 11px 12px 14px; }
    .tm-card-desc { font-size: 0.76rem; }
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
 
  .pf-section {
    background: #d8f07a;
    color: #111;
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
  }
 
  .pf-section::before {
    content: '';
    position: absolute;
    top: -130px; right: -120px;
    width: 500px; height: 500px;
    background: rgba(198,240,48,0.32);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
  }
  .pf-section::after {
    content: '';
    position: absolute;
    bottom: -90px; left: -90px;
    width: 420px; height: 420px;
    background: rgba(0,166,78,0.1);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
  }
 
  .pf-wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }
 
  .pf-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 28px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    position: static;
  }
 
  .pf-header-text { flex: 1; min-width: 0; }
 
  .pf-eyebrow {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #00a64e;
    background: rgba(0,166,78,0.1);
    border: 1px solid rgba(0,166,78,0.25);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
  }
 
  .pf-header h2 {
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    font-weight: 800;
    color: #00a64e;
    margin: 0 0 10px;
    line-height: 1.1;
  }
 
  .pf-lead {
    font-size: clamp(0.95rem, 1.6vw, 1.25rem);
    color: rgba(17,17,17,0.75);
    margin: 0;
    line-height: 1.5;
    max-width: 580px;
  }
 
  .pf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 11px;
    cursor: pointer;
    transition: all 0.35s ease;
    border: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .pf-btn svg {
    width: 18px; height: 18px;
    stroke: currentColor; fill: none;
    stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
  }
 
  .pf-btn-primary {
    background: #ff923d;
    color: #000;
    box-shadow: 0 4px 14px rgba(255,146,61,0.3);
  }
  .pf-btn-primary:hover {
    background: #ffa455;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255,146,61,0.42);
  }
 
  .pf-btn-ghost {
    background: transparent;
    border: 1.5px solid rgba(0,166,78,0.45);
    color: #00a64e;
  }
  .pf-btn-ghost:hover { background: rgba(0,166,78,0.08); border-color: #00a64e; }
 
  .pf-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 44px;
  }
 
  .pf-filter {
    padding: 7px 18px;
    background: rgba(0,0,0,0.06);
    border: 1.5px solid rgba(0,166,78,0.2);
    border-radius: 50px;
    color: rgba(17,17,17,0.7);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  .pf-filter:hover {
    background: rgba(0,166,78,0.1);
    border-color: #00a64e;
    color: #00a64e;
  }
  .pf-filter.active {
    background: #c6f030;
    border-color: #c6f030;
    color: #000;
    box-shadow: 0 3px 10px rgba(198,240,48,0.4);
  }
 
  /* ── Grid ── */
  .pf-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
 
  .pf-card {
    width: 100%;
    background: rgba(5,20,10,0.9);
    border: 1.5px solid rgba(198,240,48,0.15);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.42s cubic-bezier(0.22,1,0.36,1),
                box-shadow  0.42s ease,
                border-color 0.35s ease;
    clip-path: polygon(0 0,100% 0,100% 92%,96% 100%,4% 100%,0 92%);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    position: relative;
  }
 
  .pf-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
    border-color: rgba(198,240,48,0.45);
  }
 
  .pf-card.pf-hidden {
    display: none;
  }
 
  /* ── Comparison Slider ── */
  .pf-slider {
    position: relative;
    height: 350px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    flex-shrink: 0;
  }
 
  .pf-img--before,
  .pf-img--after {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
 
  .pf-img--before img,
  .pf-img--after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: none;
  }
 
  /* Before image is clipped on the left side: controlled via JS inline style (clip-path).
     After image is the full background — reveals as handle moves left */
  .pf-img--before {
    clip-path: inset(0 50% 0 0);
    z-index: 1;
  }
 
  /* Labels */
  .pf-label {
    position: absolute;
    top: 12px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 50px;
    line-height: 1.3;
    pointer-events: none;
    z-index: 4;
  }
  .pf-label--before {
    left: 12px;
    background: rgba(0,0,0,0.72);
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.15);
  }
  .pf-label--after {
    right: 12px;
    background: rgba(198,240,48,0.22);
    color: #c6f030;
    border: 1px solid rgba(198,240,48,0.4);
  }
 
  /* Slider handle */
  .pf-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: rgba(198,240,48,0.9);
    z-index: 10;
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 12px rgba(198,240,48,0.5);
    transition: background 0.2s;
  }
  .pf-slider:hover .pf-handle,
  .pf-slider.pf-dragging .pf-handle {
    background: #c6f030;
  }
 
  .pf-handle-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: #c6f030;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 16px rgba(0,0,0,0.45), 0 0 0 3px rgba(198,240,48,0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .pf-slider:hover .pf-handle-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.55), 0 0 0 4px rgba(198,240,48,0.4);
  }
  .pf-slider.pf-dragging .pf-handle-btn {
    transform: translate(-50%, -50%) scale(1.15);
  }
  .pf-handle-btn svg {
    width: 20px; height: 20px;
    stroke: #000; fill: none;
    stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
    flex-shrink: 0;
  }
 
  /* Hint on first load */
  .pf-hint {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.55);
    background: rgba(0,0,0,0.5);
    padding: 3px 12px;
    border-radius: 50px;
    pointer-events: none;
    z-index: 11;
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.5s ease;
  }
  .pf-slider.pf-interacted .pf-hint {
    opacity: 0;
  }
 
  /* Caption */
  .pf-cap {
    padding: 16px 20px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
  }
 
  .pf-cap-text { flex: 1; min-width: 0; }
 
  .pf-cap-title {
    font-size: 1rem;
    font-weight: 700;
    color: #d8f07a;
    display: block;
    margin-bottom: 4px;
    line-height: 1.25;
  }
 
  .pf-cap-sub {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.55);
    display: block;
    line-height: 1.35;
  }
 
  .pf-cap-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    background: rgba(198,240,48,0.1);
    border: 1px solid rgba(198,240,48,0.25);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #c6f030;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: center;
    transition: all 0.3s ease;
  }
  .pf-card:hover .pf-cap-tag {
    background: rgba(198,240,48,0.18);
    border-color: rgba(198,240,48,0.5);
  }
 
  /* CTA banner */
  .pf-cta-banner {
    margin-top: 52px;
    background: #fff;
    border-radius: 18px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    box-shadow: 0 8px 32px rgba(0,128,55,0.12);
  }
 
  .pf-cta-left { display: flex; align-items: center; gap: 20px; flex: 1; min-width: 0; }
  .pf-cta-icon { font-size: 2.2rem; flex-shrink: 0; line-height: 1; }
  .pf-cta-banner h3 { font-size: clamp(1.1rem, 2vw, 1.65rem); font-weight: 700; color: #007836; margin: 0 0 5px; line-height: 1.2; }
  .pf-cta-banner p  { font-size: clamp(0.82rem, 1.3vw, 0.97rem); color: #444; margin: 0; line-height: 1.45; opacity: 0.88; }
 
  .pf-fadein {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .pf-fadein.pf-visible { opacity: 1; transform: translateY(0); }
 
  /* ── Responsive ── */
  @media (max-width: 1280px) {
    .pf-slider { height: 280px; }
  }
 
  @media (max-width: 1023px) {
    .pf-section { padding: 80px 0 90px; }
    .pf-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 36px; }
    .pf-btn-primary { width: 100%; justify-content: center; }
    .pf-slider { height: 240px; }
  }
 
  @media (max-width: 900px) {
    .pf-grid { grid-template-columns: 1fr; gap: 20px; }
    .pf-card { clip-path: polygon(0 0,100% 0,100% 94%,97% 100%,3% 100%,0 94%); }
    .pf-slider { height: 260px; }
  }
 
  @media (max-width: 768px) {
    .pf-wrap { padding: 0 16px; }
    .pf-section { padding: 64px 0 72px; }
    .pf-filters { gap: 6px; margin-bottom: 32px; }
    .pf-filter { padding: 6px 14px; font-size: 0.82rem; }
    .pf-slider { height: 230px; }
    .pf-cap { padding: 14px 16px 18px; gap: 10px; }
    .pf-cap-title { font-size: 0.95rem; }
    .pf-cta-banner { flex-direction: column; align-items: flex-start; padding: 24px 22px; gap: 20px; }
    .pf-btn-primary { width: 100%; justify-content: center; }
  }
 
  @media (max-width: 640px) {
    .pf-section { padding: 56px 0 64px; }
    .pf-card { clip-path: none; border-radius: 16px; }
    .pf-slider { height: 210px; }
    .pf-cap-tag { align-self: center; }
    .pf-cta-banner { border-radius: 14px; padding: 20px 18px; }
    .pf-cta-left { gap: 14px; }
    .pf-label { font-size: 0.67rem; padding: 3px 9px; top: 9px; }
    .pf-label--before { left: 9px; }
    .pf-label--after { right: 9px; }
    .pf-handle-btn { width: 38px; height: 38px; }
    .pf-handle-btn svg { width: 17px; height: 17px; }
  }
 
  @media (max-width: 480px) {
    .pf-wrap { padding: 0 14px; }
    .pf-section { padding: 48px 0 56px; }
    .pf-header h2 { font-size: 1.65rem; }
    .pf-lead { font-size: 0.92rem; }
    .pf-filters { gap: 5px; margin-bottom: 24px; }
    .pf-filter { padding: 5px 12px; font-size: 0.78rem; }
    .pf-slider { height: 185px; }
    .pf-label { font-size: 0.64rem; padding: 3px 8px; top: 8px; }
    .pf-cap-title { font-size: 0.9rem; }
    .pf-cap-sub { font-size: 0.79rem; }
    .pf-cap-tag { font-size: 0.73rem; padding: 4px 10px; }
    .pf-cta-left { flex-direction: column; gap: 10px; }
    .pf-cta-icon { display: none; }
    .pf-cta-banner h3 { font-size: 1.05rem; }
    .pf-cta-banner p { font-size: 0.8rem; }
  }
 
  @media (max-width: 360px) {
    .pf-wrap { padding: 0 12px; }
    .pf-section { padding: 44px 0 52px; }
    .pf-header h2 { font-size: 1.5rem; }
    .pf-eyebrow { font-size: 0.68rem; padding: 3px 10px; }
    .pf-filter { padding: 5px 10px; font-size: 0.74rem; }
    .pf-slider { height: 160px; }
    .pf-label { font-size: 0.62rem; padding: 2px 7px; top: 7px; }
    .pf-cap { padding: 11px 12px 14px; }
    .pf-cap-title { font-size: 0.85rem; }
    .pf-cap-sub { font-size: 0.75rem; }
    .pf-grid { gap: 14px; }
    .pf-cta-banner { padding: 18px 14px; border-radius: 12px; }
    .pf-cta-banner h3 { font-size: 0.97rem; }
    .pf-cta-banner p { font-size: 0.77rem; }
    .pf-handle-btn { width: 34px; height: 34px; }
    .pf-handle-btn svg { width: 15px; height: 15px; }
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  

 .rv-section {
    background: linear-gradient(150deg, #004d20 0%, #006a2f 45%, #008540 100%);
    color: #fff;
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
 
  .rv-section::before {
    content: '';
    position: absolute;
    top: -160px; right: -140px;
    width: 560px; height: 560px;
    background: rgba(198,240,48,0.07);
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    z-index: 0;
  }
  .rv-section::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 440px; height: 440px;
    background: rgba(0,0,0,0.18);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
  }
 
  .rv-wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }
  .rv-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 28px;
    margin-bottom: 52px;
    flex-wrap: wrap;
    position: static;
  }
 
  .rv-header-text { flex: 1; min-width: 0; }
 
  .rv-eyebrow {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #c6f030;
    background: rgba(198,240,48,0.1);
    border: 1px solid rgba(198,240,48,0.28);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
  }
 
  .rv-header h2 {
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    font-weight: 800;
    color: #d8f07a;
    margin: 0 0 10px;
    line-height: 1.1;
  }
 
  .rv-lead {
    font-size: clamp(0.95rem, 1.6vw, 1.25rem);
    color: rgba(255,255,255,0.82);
    margin: 0;
    line-height: 1.5;
    max-width: 600px;
  }
 
  .rv-header-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    flex-wrap: wrap;
  }
 
  .rv-rating-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 20px;
    background: rgba(198,240,48,0.1);
    border: 1px solid rgba(198,240,48,0.25);
    border-radius: 14px;
    min-width: 90px;
    transition: all 0.35s ease;
  }
  .rv-rating-badge:hover {
    background: rgba(198,240,48,0.16);
    border-color: rgba(198,240,48,0.45);
    transform: translateY(-3px);
  }
 
  .rv-badge-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #c6f030;
    line-height: 1;
    margin-bottom: 2px;
  }
 
  .rv-badge-stars {
    font-size: 0.75rem;
    color: #FFD700;
    letter-spacing: 1px;
    margin-bottom: 2px;
  }
 
  .rv-badge-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
    text-align: center;
    line-height: 1.2;
  }
 
  .rv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 52px;
  }
 
  .rv-card {
    background: rgba(0,0,0,0.38);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 24px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: transform 0.42s cubic-bezier(0.22,1,0.36,1),
                box-shadow  0.42s ease,
                border-color 0.35s ease;
    clip-path: polygon(0 0,100% 0,100% 92%,94% 100%,6% 100%,0 92%);
  }
 
  .rv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00a64e, #c6f030);
    z-index: 2;
  }
 
  .rv-card::after {
    content: '\201C';
    position: absolute;
    bottom: -10px; right: 16px;
    font-size: 7rem;
    font-weight: 900;
    color: rgba(198,240,48,0.06);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    font-family: Georgia, serif;
  }
 
  .rv-card:hover {
    transform: translateY(-10px);
    border-color: rgba(198,240,48,0.38);
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
    background: rgba(0,0,0,0.52);
  }
 
  .rv-card--accent {
    background: rgba(0,80,30,0.55);
    border-color: rgba(198,240,48,0.22);
  }
  .rv-card--accent::before { background: linear-gradient(90deg, #c6f030, #ff923d); }
  .rv-card--accent:hover { background: rgba(0,100,40,0.65); border-color: rgba(198,240,48,0.5); }
 
  .rv-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
  }
 
  .rv-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(198,240,48,0.3);
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
    flex-shrink: 0;
    transition: border-color 0.35s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
    background: linear-gradient(135deg, #005f28, #00a64e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #c6f030;
    letter-spacing: 0.5px;
    user-select: none;
  }
  .rv-card:hover .rv-avatar {
    border-color: rgba(198,240,48,0.65);
    transform: scale(1.08);
  }
 
  .rv-card-meta { flex: 1; min-width: 0; }
 
  .rv-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: #d8f07a;
    margin: 0 0 3px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
 
  .rv-stars {
    color: #FFD700;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    line-height: 1;
  }
 
  .rv-work-tag {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 5px;
    padding: 3px 10px;
    background: rgba(198,240,48,0.08);
    border: 1px solid rgba(198,240,48,0.2);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    transition: all 0.25s ease;
  }
  .rv-card:hover .rv-work-tag {
    background: rgba(198,240,48,0.13);
    border-color: rgba(198,240,48,0.32);
    color: #d8f07a;
  }
 
  .rv-text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.65;
    margin: 0;
    flex: 1;
    position: relative;
    z-index: 1;
  }
 
  .rv-cta-banner {
    background: #fff;
    border-radius: 18px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  }
 
  .rv-cta-left { display: flex; align-items: center; gap: 20px; flex: 1; min-width: 0; }
  .rv-cta-icon { font-size: 2.2rem; flex-shrink: 0; line-height: 1; }
  .rv-cta-banner h3 { font-size: clamp(1.1rem, 2vw, 1.65rem); font-weight: 700; color: #007836; margin: 0 0 5px; line-height: 1.2; }
  .rv-cta-banner p  { font-size: clamp(0.82rem, 1.3vw, 0.97rem); color: #444; margin: 0; line-height: 1.45; opacity: 0.88; }
 
  .rv-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 11px;
    cursor: pointer;
    transition: all 0.35s ease;
    border: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .rv-btn-primary {
    background: #ff923d;
    color: #000;
    box-shadow: 0 4px 14px rgba(255,146,61,0.3);
  }
  .rv-btn-primary:hover {
    background: #ffa455;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255,146,61,0.42);
  }
  .rv-btn-ghost {
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(216,240,122,0.4);
    color: #d8f07a;
  }
  .rv-btn-ghost:hover { background: rgba(216,240,122,0.12); border-color: #d8f07a; transform: translateY(-2px); }
 
  .rv-fadein {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .rv-fadein.rv-visible { opacity: 1; transform: translateY(0); }
 
  @media (max-width: 1280px) {
    .rv-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .rv-card { padding: 20px 18px 18px; }
  }
 
  @media (max-width: 1100px) {
    .rv-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .rv-header { gap: 24px; margin-bottom: 44px; }
    .rv-header-meta { width: 100%; justify-content: flex-start; }
  }
 
  @media (max-width: 1023px) {
    .rv-section { padding: 80px 0 90px; }
    .rv-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .rv-btn-ghost { width: 100%; justify-content: center; }
  }
 
  @media (max-width: 768px) {
    .rv-wrap { padding: 0 16px; }
    .rv-section { padding: 64px 0 72px; }
    .rv-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .rv-card { padding: 18px 16px 16px; gap: 13px; }
    .rv-avatar { width: 46px; height: 46px; font-size: 0.9rem; }
    .rv-card-name { font-size: 0.94rem; }
    .rv-text { font-size: 0.84rem; }
    .rv-header-meta { gap: 12px; }
    .rv-badge-num { font-size: 1.5rem; }
    .rv-cta-banner { flex-direction: column; align-items: flex-start; padding: 24px 22px; gap: 20px; }
    .rv-btn-primary { width: 100%; justify-content: center; }
  }
 
  @media (max-width: 640px) {
    .rv-section { padding: 56px 0 64px; }
    .rv-grid { grid-template-columns: 1fr; gap: 12px; }
    .rv-card { clip-path: none; border-radius: 16px; padding: 16px 15px 15px; gap: 12px; }
    .rv-card::after { font-size: 5rem; bottom: -6px; right: 12px; }
    .rv-avatar { width: 44px; height: 44px; font-size: 0.88rem; }
    .rv-card-name { font-size: 0.92rem; }
    .rv-stars { font-size: 0.78rem; }
    .rv-work-tag { font-size: 0.66rem; }
    .rv-text { font-size: 0.82rem; }
    .rv-cta-banner { border-radius: 14px; padding: 20px 18px; }
    .rv-cta-left { gap: 14px; }
    .rv-rating-badge { padding: 10px 14px; min-width: 74px; }
    .rv-badge-num { font-size: 1.3rem; }
    .rv-badge-stars { font-size: 0.68rem; }
    .rv-badge-label { font-size: 0.67rem; }
  }
 
  @media (max-width: 480px) {
    .rv-wrap { padding: 0 14px; }
    .rv-section { padding: 48px 0 56px; }
    .rv-header h2 { font-size: 1.65rem; }
    .rv-lead { font-size: 0.92rem; }
    .rv-header-meta { gap: 10px; }
    .rv-rating-badge { padding: 9px 12px; min-width: 68px; flex: 1; }
    .rv-badge-num { font-size: 1.2rem; }
    .rv-card { padding: 14px 13px 13px; gap: 10px; }
    .rv-avatar { width: 40px; height: 40px; font-size: 0.82rem; }
    .rv-card-name { font-size: 0.88rem; }
    .rv-text { font-size: 0.79rem; line-height: 1.6; }
    .rv-cta-left { flex-direction: column; gap: 10px; }
    .rv-cta-icon { display: none; }
    .rv-cta-banner h3 { font-size: 1.05rem; }
    .rv-cta-banner p { font-size: 0.8rem; }
  }
 
  @media (max-width: 360px) {
    .rv-wrap { padding: 0 12px; }
    .rv-section { padding: 44px 0 52px; }
    .rv-header h2 { font-size: 1.5rem; }
    .rv-eyebrow { font-size: 0.68rem; padding: 3px 10px; }
    .rv-header-meta { gap: 8px; }
    .rv-rating-badge { padding: 8px 10px; min-width: 60px; border-radius: 10px; }
    .rv-badge-num { font-size: 1.1rem; }
    .rv-badge-stars { font-size: 0.62rem; }
    .rv-badge-label { font-size: 0.62rem; }
    .rv-card { padding: 13px 12px 12px; gap: 9px; border-radius: 14px; }
    .rv-avatar { width: 38px; height: 38px; font-size: 0.76rem; }
    .rv-card-name { font-size: 0.84rem; }
    .rv-card-meta gap { gap: 10px; }
    .rv-text { font-size: 0.76rem; line-height: 1.55; }
    .rv-work-tag { font-size: 0.62rem; padding: 2px 7px; }
    .rv-grid { gap: 10px; }
    .rv-cta-banner { padding: 16px 12px; border-radius: 12px; }
    .rv-cta-banner h3 { font-size: 0.95rem; }
    .rv-cta-banner p { font-size: 0.76rem; }
    .rv-btn { padding: 10px 16px; font-size: 0.9rem; }
  }
  
  
  
  
  
  
 
  
  
  
  
  

  .fq-section {
    background: #d8f07a;
    color: #111;
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }

  .fq-section::before {
    content: '';
    position: absolute;
    top: -130px; right: -120px;
    width: 500px; height: 500px;
    background: rgba(198,240,48,0.32);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
  }
  .fq-section::after {
    content: '';
    position: absolute;
    bottom: -90px; left: -90px;
    width: 420px; height: 420px;
    background: rgba(0,166,78,0.1);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
  }

  .fq-wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }

  .fq-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 28px;
    margin-bottom: 56px;
    flex-wrap: wrap;
    position: static;
  }

  .fq-header-text { flex: 1; min-width: 0; }

  .fq-eyebrow {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #00a64e;
    background: rgba(0,166,78,0.1);
    border: 1px solid rgba(0,166,78,0.25);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
  }

  .fq-header h2 {
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    font-weight: 800;
    color: #00a64e;
    margin: 0 0 10px;
    line-height: 1.1;
  }

  .fq-lead {
    font-size: clamp(0.95rem, 1.6vw, 1.25rem);
    color: rgba(17,17,17,0.72);
    margin: 0;
    line-height: 1.5;
    max-width: 580px;
  }

  .fq-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 11px;
    cursor: pointer;
    transition: all 0.35s ease;
    border: none;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .fq-btn-primary {
    background: #ff923d;
    color: #000;
    box-shadow: 0 4px 14px rgba(255,146,61,0.3);
  }
  .fq-btn-primary:hover {
    background: #ffa455;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255,146,61,0.42);
  }

  .fq-btn-ghost {
    background: transparent;
    border: 1.5px solid rgba(0,166,78,0.45);
    color: #00a64e;
  }
  .fq-btn-ghost:hover { background: rgba(0,166,78,0.08); border-color: #00a64e; }

  .fq-body {
    display: grid;
    grid-template-columns: 58% 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 56px;
  }

  .fq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .fq-item {
    background: #fff;
    border: 1.5px solid rgba(0,166,78,0.12);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
    clip-path: polygon(0 0,100% 0,100% 88%,97% 100%,3% 100%,0 88%);
  }

  .fq-item:hover {
    border-color: rgba(0,166,78,0.38);
    box-shadow: 0 8px 32px rgba(0,128,55,0.1);
  }

  .fq-item.fq-open {
    border-color: rgba(0,166,78,0.42);
    box-shadow: 0 12px 40px rgba(0,128,55,0.13);
    clip-path: polygon(0 0,100% 0,100% 94%,98% 100%,2% 100%,0 94%);
  }
  .fq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 18px 20px 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    text-align: left;
    transition: background 0.25s ease;
  }
  .fq-q:hover { background: rgba(0,166,78,0.04); }
  .fq-item.fq-open .fq-q { background: rgba(0,166,78,0.05); }

  .fq-q-text {
    font-size: clamp(0.92rem, 1.4vw, 1.05rem);
    font-weight: 700;
    color: #00a64e;
    line-height: 1.35;
    flex: 1;
    min-width: 0;
  }
  .fq-icon {
    width: 32px; height: 32px;
    background: rgba(0,166,78,0.1);
    border: 1.5px solid rgba(0,166,78,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  }
  .fq-icon svg {
    width: 16px; height: 16px;
    stroke: #00a64e; fill: none;
    stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
    transition: stroke 0.3s ease;
  }
  .fq-item.fq-open .fq-icon {
    background: #00a64e;
    border-color: #00a64e;
    transform: rotate(180deg);
  }
  .fq-item.fq-open .fq-icon svg { stroke: #fff; }
  .fq-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1),
                opacity 0.35s ease,
                padding 0.35s ease;
    opacity: 0;
    padding: 0 22px;
  }
  .fq-item.fq-open .fq-a {
    max-height: 300px;
    opacity: 1;
    padding: 0 22px 20px;
  }
  .fq-a-inner {
    padding-top: 4px;
    border-top: 1px dashed rgba(0,166,78,0.18);
    padding-top: 14px;
    font-size: clamp(0.86rem, 1.3vw, 0.97rem);
    color: rgba(17,17,17,0.72);
    line-height: 1.65;
  }
  .fq-aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 80px;
  }
  .fq-photo-wrap {
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    clip-path: polygon(0 0,100% 0,100% 90%,92% 100%,8% 100%,0 90%);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }
  .fq-photo-wrap:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 56px rgba(0,128,55,0.2);
  }
  .fq-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }
  .fq-photo-wrap:hover .fq-photo { transform: scale(1.04); }
  .fq-perks {
    background: #fff;
    border-radius: 18px;
    padding: 22px 20px 18px;
    box-shadow: 0 6px 24px rgba(0,128,55,0.09);
    display: flex;
    flex-direction: column;
    gap: 14px;
    clip-path: polygon(0 0,100% 0,100% 92%,94% 100%,6% 100%,0 92%);
    transition: transform 0.4s ease;
  }
  .fq-perks:hover { transform: translateY(-4px); }
  .fq-perk {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(0,166,78,0.04);
    border: 1px solid rgba(0,166,78,0.1);
    transition: all 0.3s ease;
  }
  .fq-perk:hover {
    background: rgba(0,166,78,0.08);
    border-color: rgba(0,166,78,0.22);
    transform: translateX(3px);
  }
  .fq-perk-icon { font-size: 1.3rem; flex-shrink: 0; line-height: 1; margin-top: 1px; }

  .fq-perk b {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #00a64e;
    margin-bottom: 2px;
    line-height: 1.2;
  }
  .fq-perk span {
    font-size: 0.83rem;
    color: rgba(17,17,17,0.62);
    line-height: 1.35;
    display: block;
  }

  .fq-cta-banner {
    background: linear-gradient(135deg, #007836 0%, #00a64e 60%, #00c458 100%);
    border-radius: 20px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: 0 12px 48px rgba(0,128,55,0.25);
    clip-path: polygon(0 0,100% 0,100% 88%,96% 100%,4% 100%,0 88%);
    position: relative;
    overflow: hidden;
  }

  .fq-cta-banner::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    background: rgba(198,240,48,0.1);
    border-radius: 50%;
    pointer-events: none;
  }

  .fq-cta-left {
    display: flex;
    align-items: center;
    gap: 22px;
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
  }

  .fq-cta-icon { font-size: 2.4rem; flex-shrink: 0; line-height: 1; }

  .fq-cta-banner h3 {
    font-size: clamp(1.15rem, 2.2vw, 1.75rem);
    font-weight: 700;
    color: #d8f07a;
    margin: 0 0 6px;
    line-height: 1.2;
  }

  .fq-cta-banner p {
    font-size: clamp(0.85rem, 1.3vw, 1rem);
    color: rgba(255,255,255,0.82);
    margin: 0;
    line-height: 1.45;
  }

  .fq-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .fq-btn-cta-p {
    padding: 13px 28px;
    background: #ff923d;
    color: #000;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.35s ease;
    white-space: nowrap;
    text-align: center;
  }
  .fq-btn-cta-p:hover {
    background: #ffa455;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255,146,61,0.42);
  }

  .fq-btn-cta-g {
    padding: 12px 28px;
    background: transparent;
    border: 1.5px solid rgba(216,240,122,0.45);
    color: #d8f07a;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s ease;
    white-space: nowrap;
    text-align: center;
  }
  .fq-btn-cta-g:hover { background: rgba(216,240,122,0.1); border-color: #d8f07a; }

  .fq-fadein {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .fq-fadein.fq-visible { opacity: 1; transform: translateY(0); }

  @media (max-width: 1280px) {
    .fq-body { grid-template-columns: 56% 1fr; gap: 36px; }
    .fq-photo { height: 280px; }
  }

  @media (max-width: 1100px) {
    .fq-body { grid-template-columns: 1fr 300px; gap: 28px; }
    .fq-photo { height: 240px; }
    .fq-aside { position: static; }
  }

  @media (max-width: 1023px) {
    .fq-section { padding: 80px 0 90px; }
    .fq-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 44px; }
    .fq-btn-ghost { width: 100%; justify-content: center; }
    .fq-body { grid-template-columns: 1fr; gap: 28px; }
    .fq-aside {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      position: static;
    }
    .fq-photo-wrap { grid-column: 1 / -1; clip-path: none; border-radius: 18px; }
    .fq-photo { height: 240px; }
    .fq-perks { clip-path: none; border-radius: 16px; }
  }

  @media (max-width: 768px) {
    .fq-wrap { padding: 0 16px; }
    .fq-section { padding: 64px 0 72px; }
    .fq-header { margin-bottom: 36px; }
    .fq-aside { grid-template-columns: 1fr; }
    .fq-photo { display: none;}
    .fq-item { clip-path: none; border-radius: 14px; }
    .fq-item.fq-open { clip-path: none; border-radius: 14px; }
    .fq-q { padding: 16px 16px 16px 18px; }
    .fq-a { padding: 0 18px; }
    .fq-item.fq-open .fq-a { padding: 0 18px 17px; }
    .fq-cta-banner { flex-direction: column; align-items: flex-start; padding: 28px 24px; gap: 24px; clip-path: none; border-radius: 18px; }
    .fq-cta-actions { width: 100%; }
    .fq-btn-cta-p, .fq-btn-cta-g { width: 100%; }
  }

  @media (max-width: 640px) {
    .fq-section { padding: 56px 0 64px; }
    .fq-item { border-radius: 12px; }
    .fq-q { padding: 14px 14px 14px 16px; gap: 10px; }
    .fq-q-text { font-size: 0.9rem; }
    .fq-icon { width: 28px; height: 28px; }
    .fq-icon svg { width: 14px; height: 14px; }
    .fq-a { padding: 0 16px; }
    .fq-item.fq-open .fq-a { padding: 0 16px 15px; }
    .fq-a-inner { font-size: 0.83rem; }
    .fq-photo { height: 195px; }
    .fq-perks { padding: 18px 16px; gap: 10px; border-radius: 14px; }
    .fq-perk { padding: 9px 10px; }
    .fq-perk b { font-size: 0.9rem; }
    .fq-perk span { font-size: 0.79rem; }
    .fq-cta-banner { padding: 24px 20px; border-radius: 16px; }
    .fq-cta-left { gap: 14px; }
  }

  @media (max-width: 480px) {
    .fq-wrap { padding: 0 14px; }
    .fq-section { padding: 48px 0 56px; }
    .fq-header h2 { font-size: 1.65rem; }
    .fq-lead { font-size: 0.92rem; }
    .fq-list { gap: 9px; }
    .fq-item { border-radius: 11px; }
    .fq-q { padding: 13px 12px 13px 14px; gap: 9px; }
    .fq-q-text { font-size: 0.86rem; }
    .fq-icon { width: 26px; height: 26px; }
    .fq-icon svg { width: 12px; height: 12px; }
    .fq-a { padding: 0 14px; }
    .fq-item.fq-open .fq-a { padding: 0 14px 13px; }
    .fq-a-inner { font-size: 0.8rem; padding-top: 11px; }
    .fq-photo { height: 175px; }
    .fq-perk-icon { font-size: 1.1rem; }
    .fq-perk b { font-size: 0.85rem; }
    .fq-perk span { font-size: 0.76rem; }
    .fq-cta-left { flex-direction: column; gap: 10px; }
    .fq-cta-icon { display: none; }
    .fq-cta-banner h3 { font-size: 1.1rem; }
    .fq-cta-banner p { font-size: 0.82rem; }
    .fq-btn-cta-p, .fq-btn-cta-g { padding: 11px 18px; font-size: 0.93rem; }
  }

  @media (max-width: 360px) {
    .fq-wrap { padding: 0 12px; }
    .fq-section { padding: 44px 0 52px; }
    .fq-header h2 { font-size: 1.5rem; }
    .fq-eyebrow { font-size: 0.68rem; padding: 3px 10px; }
    .fq-list { gap: 8px; }
    .fq-q { padding: 12px 11px 12px 13px; }
    .fq-q-text { font-size: 0.82rem; }
    .fq-icon { width: 24px; height: 24px; }
    .fq-icon svg { width: 11px; height: 11px; }
    .fq-a-inner { font-size: 0.77rem; }
    .fq-photo { height: 155px; }
    .fq-perks { padding: 15px 13px; gap: 8px; border-radius: 12px; }
    .fq-perk { padding: 8px 9px; gap: 9px; }
    .fq-perk b { font-size: 0.82rem; }
    .fq-perk span { font-size: 0.73rem; }
    .fq-cta-banner { padding: 20px 16px; border-radius: 14px; }
    .fq-cta-banner h3 { font-size: 1rem; }
    .fq-cta-banner p { font-size: 0.78rem; }
    .fq-btn-cta-p, .fq-btn-cta-g { font-size: 0.88rem; padding: 10px 14px; }
  }
  
  
  
  
  
  
  
  
  
  
  
  .ct-section {
    background: linear-gradient(150deg, #004d20 0%, #006a2f 45%, #008540 100%);
    color: #fff;
    padding: 0 0 110px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
  .ct-section::before {
    content: '';
    position: absolute;
    top: -160px; right: -140px;
    width: 560px; height: 560px;
    background: rgba(198,240,48,0.07);
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    z-index: 0;
  }
  .ct-section::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 440px; height: 440px;
    background: rgba(0,0,0,0.18);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
  }
  .ct-wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }
  .ct-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 28px;
    margin-bottom: 56px;
    flex-wrap: wrap;
    position: static;
  }
  .ct-section img {
    width:400px; max-width:100%; height:auto; border-radius:16px; position: relative; bottom: 0; top: 50px}
	
  .ct-header-text { flex: 1; min-width: 0; }
  .ct-eyebrow {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #c6f030;
    background: rgba(198,240,48,0.1);
    border: 1px solid rgba(198,240,48,0.28);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
  }
  .ct-header h2 {
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    font-weight: 800;
    color: #d8f07a;
    margin: 0 0 8px;
    line-height: 1.1;
  }
  .ct-lead {
    font-size: clamp(0.95rem, 1.6vw, 1.25rem);
    color: rgba(255,255,255,0.78);
    margin: 0 0 10px;
    line-height: 1.5;
    max-width: 600px;
  }
  .ct-slogan {
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    font-weight: 700;
    color: #c6f030;
    margin: 0;
    line-height: 1.3;
  }
  .ct-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 11px;
    cursor: pointer;
    transition: all 0.35s ease;
    border: none;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
  }
  .ct-btn-primary {
    background: #ff923d;
    color: #000;
    box-shadow: 0 4px 14px rgba(255,146,61,0.3);
  }
  .ct-btn-primary:hover {
    background: #ffa455;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255,146,61,0.42);
  }
  .ct-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
  }
  .ct-card {
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 28px 26px 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    overflow: hidden;
    transition: transform 0.42s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.42s ease,
                border-color 0.35s ease;
    clip-path: polygon(0 0,100% 0,100% 90%,92% 100%,8% 100%,0 90%);
  }
  .ct-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00a64e, #c6f030);
    z-index: 2;
  }
  .ct-card:hover {
    transform: translateY(-10px);
    border-color: rgba(198,240,48,0.38);
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
    background: rgba(0,0,0,0.56);
  }
  .ct-card--accent {
    background: rgba(0,80,30,0.55);
    border-color: rgba(198,240,48,0.22);
  }
  .ct-card--accent::before { background: linear-gradient(90deg, #c6f030, #ff923d); }
  .ct-card--accent:hover { background: rgba(0,100,40,0.65); border-color: rgba(198,240,48,0.5); }
  .ct-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .ct-card-ico {
    width: 44px; height: 44px;
    border-radius: 11px;
    background: rgba(198,240,48,0.12);
    border: 1px solid rgba(198,240,48,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
    line-height: 1;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  }
  .ct-card:hover .ct-card-ico { transform: scale(1.12) rotate(-5deg); }
  .ct-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #d8f07a;
    margin: 0;
    line-height: 1.2;
  }
  .ct-phones { display: flex; flex-direction: column; gap: 6px; }
  .ct-phone {
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    font-weight: 800;
    color: #c6f030;
    text-decoration: none;
    line-height: 1.2;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
    display: block;
  }
  .ct-phone:hover { color: #d8f07a; letter-spacing: 0.5px; }
  .ct-hint {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
    margin-top: 4px;
  }
  .ct-info-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .ct-info-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(198,240,48,0.7);
    margin-bottom: 2px;
  }
  .ct-info-val {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.5;
    margin: 0;
  }
  .ct-info-val a {
    color: #c6f030;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .ct-info-val a:hover { color: #d8f07a; }
  .ct-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 4px 0;
    flex-shrink: 0;
  }
  .ct-msn-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .ct-msn-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 13px;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.32s ease;
    position: relative;
    overflow: hidden;
  }
  .ct-msn-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(198,240,48,0);
    transition: background 0.3s ease;
    border-radius: inherit;
    pointer-events: none;
  }
  .ct-msn-btn:hover::after { background: rgba(198,240,48,0.06); }
  .ct-msn-btn:hover {
    border-color: rgba(198,240,48,0.38);
    transform: translateX(4px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  }
  .ct-msn-ico {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  }
  .ct-msn-btn:hover .ct-msn-ico { transform: scale(1.12); }
  .ct-msn-ico svg { display: block; }
  .ct-msn-ico--tg { background: rgba(40,168,234,0.18); border: 1px solid rgba(40,168,234,0.35); }
  .ct-msn-ico--max { background: rgba(198,240,48,0.14); border: 1px solid rgba(198,240,48,0.3); }
  .ct-msn-ico--vk { background: rgba(0,119,255,0.18); border: 1px solid rgba(0,119,255,0.35); }
  .ct-msn-text { flex: 1; }
  .ct-msn-name { display: block; font-weight: 700; font-size: 0.97rem; line-height: 1.2; }
  .ct-msn-sub { display: block; font-size: 0.76rem; color: rgba(255,255,255,0.5); line-height: 1.3; margin-top: 1px; }
  .ct-msn-arrow {
    width: 20px; height: 20px;
    stroke: rgba(198,240,48,0.5); fill: none;
    stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
    flex-shrink: 0;
    transition: stroke 0.3s ease, transform 0.3s ease;
  }
  .ct-msn-btn:hover .ct-msn-arrow {
    stroke: #c6f030;
    transform: translateX(3px);
  }
  .ct-cta-simple {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(198,240,48,0.18);
  }
  .ct-cta-simple .ct-cta-emoji {
    font-size: 2.8rem;
    margin-bottom: 12px;
  }
  .ct-cta-simple h3 {
    font-size: clamp(1.25rem, 2.1vw, 1.55rem);
    font-weight: 800;
    color: #d8f07a;
    margin: 0 0 8px;
  }
  .ct-cta-simple p {
    font-size: clamp(0.92rem, 1.5vw, 1.05rem);
    color: rgba(255,255,255,0.85);
    margin: 0 0 20px;
    line-height: 1.45;
  }
  .ct-cta-simple .ct-cta-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  @media (min-width: 769px) {
    .ct-cta-simple .ct-cta-btns {
      flex-direction: row;
      align-items: center;
    }
    .ct-cta-simple .ct-cta-btns .ct-btn-primary,
    .ct-cta-simple .ct-cta-btns .ct-btn-ghost-sm {
      flex: 1;
    }
  }
  @media (max-width: 1280px) {
    .ct-grid { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
    .ct-bottom { grid-template-columns: 1fr 380px; gap: 16px; }
    .ct-card { padding: 24px 22px 22px; }
  }

  @media (max-width: 1100px) {
    .ct-bottom { grid-template-columns: 1fr 340px; }
  }

  @media (max-width: 1023px) {
    .ct-section { padding: 80px 0 90px; }
    .ct-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 44px; }
    .ct-btn-primary { width: 100%; justify-content: center; }
    .ct-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .ct-grid > .ct-card:last-child { grid-column: 1 / -1; }
    .ct-msn-grid { flex-direction: row; flex-wrap: wrap; gap: 12px; }
    .ct-msn-btn { flex: 1 1 calc(33.33% - 8px); min-width: 160px; }
    .ct-bottom { grid-template-columns: 1fr; }
    .ct-map-card { min-height: 280px; }
    .ct-cta-card { clip-path: none; border-radius: 18px; }
    .ct-cta-card:hover { transform: none; }
    .ct-cta-btns { flex-direction: row; }
    .ct-cta-btns .ct-btn-primary,
    .ct-btn-ghost-sm { width: auto; flex: 1; }
  }

  @media (max-width: 768px) {
    .ct-wrap { padding: 0 16px; }
    .ct-section { padding: 64px 0 72px; }
    .ct-grid { grid-template-columns: 1fr; gap: 14px; }
    .ct-grid > .ct-card:last-child { grid-column: auto; }
    .ct-card { clip-path: none; border-radius: 16px; padding: 22px 20px 20px; gap: 14px; }
    .ct-phone { font-size: 1.35rem; }
    .ct-msn-grid { flex-direction: column; gap: 9px;}
    .ct-msn-btn { flex: none; width: 92%; }
    .ct-map-card { clip-path: none; border-radius: 16px; min-height: 250px; }
    .ct-map-card iframe { min-height: 250px; }
    .ct-cta-btns { flex-direction: column; }
    .ct-cta-btns .ct-btn-primary,
    .ct-btn-ghost-sm { width: 100%; }
  }

  @media (max-width: 640px) {
    .ct-section { padding: 56px 0 64px; }
    .ct-card { padding: 18px 16px 16px; gap: 12px; }
    .ct-card-ico { width: 38px; height: 38px; border-radius: 9px; font-size: 1.1rem; }
    .ct-card-title { font-size: 1rem; }
    .ct-phone { font-size: 1.22rem; }
    .ct-info-val { font-size: 0.9rem; }
    .ct-msn-btn { padding: 11px 13px; gap: 11px; border-radius: 11px; }
    .ct-msn-ico { width: 34px; height: 34px; border-radius: 8px; }
    .ct-msn-name { font-size: 0.92rem; }
    .ct-msn-sub { font-size: 0.72rem; }
    .ct-map-card { min-height: 210px; }
    .ct-map-card iframe { min-height: 210px; }
    .ct-cta-card { padding: 24px 20px; }
    .ct-cta-emoji { font-size: 2.1rem; }
    .ct-cta-card h3 { font-size: 1.1rem; }
    .ct-cta-card p { font-size: 0.83rem; }
  }

  @media (max-width: 480px) {
    .ct-wrap { padding: 0 14px; }
    .ct-section { padding: 48px 0 56px; }
    .ct-header h2 { font-size: 1.65rem; }
    .ct-lead { font-size: 0.92rem; }
    .ct-slogan { font-size: 1rem; }
    .ct-card { padding: 16px 14px 14px; gap: 11px; border-radius: 14px; }
    .ct-card-ico { width: 36px; height: 36px; font-size: 1rem; border-radius: 8px; }
    .ct-card-title { font-size: 0.96rem; }
    .ct-phone { font-size: 1.12rem; }
    .ct-hint { font-size: 0.76rem; }
    .ct-info-label { font-size: 0.67rem; }
    .ct-info-val { font-size: 0.86rem; }
    .ct-msn-btn { padding: 10px 12px; gap: 10px; border-radius: 10px; }
    .ct-msn-ico { width: 32px; height: 32px; border-radius: 7px; }
    .ct-msn-name { font-size: 0.88rem; }
    .ct-msn-sub { font-size: 0.7rem; }
    .ct-map-card { min-height: 185px; }
    .ct-map-card iframe { min-height: 185px; }
    .ct-cta-card { padding: 20px 16px; border-radius: 14px; gap: 18px; }
    .ct-cta-emoji { font-size: 1.9rem; }
    .ct-btn { padding: 11px 18px; font-size: 0.93rem; }
    .ct-btn-ghost-sm { padding: 10px 14px; font-size: 0.88rem; }
  }

  @media (max-width: 360px) {
    .ct-wrap { padding: 0 12px; }
    .ct-section { padding: 44px 0 52px; }
    .ct-header h2 { font-size: 1.5rem; }
    .ct-eyebrow { font-size: 0.68rem; padding: 3px 10px; }
    .ct-slogan { font-size: 0.93rem; }
    .ct-card { padding: 14px 12px 12px; gap: 10px; border-radius: 12px; }
    .ct-card-ico { width: 33px; height: 33px; font-size: 0.95rem; border-radius: 7px; }
    .ct-card-title { font-size: 0.9rem; }
    .ct-phone { font-size: 1.05rem; }
    .ct-info-val { font-size: 0.82rem; }
    .ct-msn-btn { padding: 9px 11px; gap: 9px; border-radius: 9px; }
    .ct-msn-ico { width: 30px; height: 30px; }
    .ct-msn-name { font-size: 0.84rem; }
    .ct-msn-sub { font-size: 0.67rem; }
    .ct-map-card { min-height: 165px; }
    .ct-map-card iframe { min-height: 165px; }
    .ct-cta-card { padding: 17px 14px; border-radius: 12px; gap: 15px; }
    .ct-cta-emoji { font-size: 1.7rem; }
    .ct-cta-card h3 { font-size: 0.97rem; }
    .ct-cta-card p { font-size: 0.78rem; }
    .ct-btn { padding: 10px 14px; font-size: 0.87rem; }
    .ct-btn-ghost-sm { font-size: 0.84rem; padding: 9px 12px; }
  }
  
  
  
  
  
  
  
  
  
  
  