/* ===== TOKENS ===== */
:root {
  --green-dark:   #053c33;
  --green-mid:    #174f46;
  --green-light:  #b7f37b;
  --white:        #ffffff;
  --off-white:    #f4f7f4;
  --border:       #dce2e9;
  --text-dark:    #0a1f18;
  --text-mid:     #4a6358;
  --font:         'Inter Display', sans-serif;
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-f:   9999px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--white); color: var(--text-dark); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== SHARED ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-label { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 12px; display: block; }
.section-label--light { color: rgba(183,243,123,.75); }
.star { color: #f59e0b; font-size: 13px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 26px; border-radius: 10px; font-size: 14px; font-weight: 600; transition: opacity .18s, background .18s; cursor: pointer; }
.btn:hover { opacity: .88; }
.btn--lime   { background: var(--green-light); color: var(--green-dark); border: none; }
.btn--dark   { background: var(--green-dark); color: #fff; border: none; }
.btn--outline-dark  { background: transparent; color: var(--green-dark); border: 1.5px solid var(--green-dark); }
.btn--outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }

/* ===== TOPBAR ===== */
.topbar { background: var(--green-light); padding: 10px 0; overflow: hidden; }
.topbar__slider { display: flex; align-items: center; justify-content: center; gap: 40px; }
.topbar__slide { display: flex; align-items: center; }
.topbar__item { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; color: var(--green-dark); }
.topbar__item a { color: var(--green-dark); }
.topbar__item svg { opacity: .8; flex-shrink: 0; }

/* ===== NAV ===== */
.nav { background: var(--green-dark); position: sticky; top: 0; z-index: 100; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav__logo { display: flex; align-items: center; gap: 9px; font-size: 17px; font-weight: 700; color: #fff; flex-shrink: 0; }
.nav__logo-icon { width: 34px; height: 34px; border-radius: 50%; background: var(--green-dark); border: 2px solid var(--green-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.85); transition: color .15s; }
.nav__links a:hover { color: #fff; }
.nav__dropdown { position: relative; }
.nav__dropdown-btn { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.85); display: flex; align-items: center; gap: 5px; background: none; border: none; cursor: pointer; font-family: var(--font); }
.nav__dropdown-btn svg { transition: transform .2s; }
.nav__dropdown:hover .nav__dropdown-btn { color: #fff; }
.nav__dropdown:hover .nav__dropdown-btn svg { transform: rotate(180deg); }
.nav__dropdown-menu { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%); background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); padding: 8px; min-width: 160px; box-shadow: 0 8px 24px rgba(0,0,0,.2); display: none; flex-direction: column; gap: 2px; z-index: 200; }
.nav__dropdown:hover .nav__dropdown-menu { display: flex; }
.nav__dropdown-menu a { font-size: 14px; padding: 8px 12px; border-radius: 8px; color: var(--text-dark); white-space: nowrap; }
.nav__dropdown-menu a:hover { background: var(--off-white); }
.nav__talk { display: flex; align-items: center; gap: 8px; padding: 10px 22px; border-radius: var(--r-f); border: 1.5px solid rgba(255,255,255,.5); color: #fff; font-size: 14px; font-weight: 600; background: transparent; transition: background .18s, border-color .18s; }
.nav__talk:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.nav__talk-icon { width: 18px; height: 18px; }
.hamburger { display: none; flex-direction: column; gap: 6px; padding: 6px; }
.hamburger span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s, opacity .25s, width .25s; }
.hamburger span:nth-child(1) { width: 22px; }
.hamburger span:nth-child(2) { width: 14px; }
.hamburger--open span:nth-child(1) { transform: translateY(4px) rotate(45deg); width: 22px; }
.hamburger--open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); width: 22px; }
.nav__mobile { display: none; flex-direction: column; gap: 0; background: var(--green-dark); border-top: 1px solid rgba(255,255,255,.1); padding: 24px; gap: 16px; }
.nav__mobile--open { display: flex; }
.nav__mobile-links { display: flex; flex-direction: column; gap: 0; list-style: none; border-radius: var(--r-md); overflow: hidden; }
.nav__mobile-links li a { display: block; padding: 14px 18px; font-size: 15px; font-weight: 500; color: rgba(255,255,255,.85); border-bottom: 1px solid rgba(255,255,255,.08); transition: background .15s; }
.nav__mobile-links li:last-child a { border-bottom: none; }
.nav__mobile-links li a:hover { background: rgba(255,255,255,.07); color: #fff; }
.nav__mobile-tel { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: var(--green-light); }

/* ===== HERO ===== */
.hero { background: var(--green-dark); overflow: hidden; position: relative; }
.hero::before { content: ''; position: absolute; inset: 0; background: url('../images/hero-bg.webp') center / cover no-repeat; opacity: 0.18; pointer-events: none; z-index: 0; }
.hero__inner { position: relative; z-index: 1; }
.hero__inner { display: grid; grid-template-columns: 1.15fr 1fr; min-height: 600px; max-width: 1200px; margin: 0 auto; padding: 0 48px; gap: 40px; align-items: center; }
.hero__content { padding: 64px 0; }
.hero__tag { display: inline-flex; align-items: center; gap: 7px; background: rgba(183,243,123,.15); border: 1px solid rgba(183,243,123,.3); color: var(--green-light); font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: var(--r-f); margin-bottom: 20px; letter-spacing: .04em; }
.hero__tag::before { content: '✦'; font-size: 9px; }
.hero__h1 { font-size: clamp(36px, 4vw, 56px); font-weight: 600; line-height: 1.2; color: #fff; margin-bottom: 16px; }
.hero__h1 em { color: var(--green-light); font-style: normal; }
.hero__p { font-size: 18px; color: rgba(255,255,255,.65); line-height: 26px; margin-bottom: 28px; max-width: 440px; }
.hero__actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 36px; }
.hero__actions .btn { padding: 17px 32px; font-size: 16px; border-radius: 12px; }
.hero__call { display: flex; align-items: center; gap: 11px; }
.hero__call-icon { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero__call-label { font-size: 11px; color: rgba(255,255,255,.5); margin-bottom: 1px; }
.hero__call-number { font-size: 14px; font-weight: 600; color: #fff; }
.hero__trust { display: flex; align-items: center; gap: 24px; }
.hero__trust-item { }
.hero__trust-logo { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.65); margin-bottom: 3px; }
.hero__trust-stars { display: flex; gap: 2px; margin-bottom: 2px; }
.hero__trust-score { font-size: 11px; color: rgba(255,255,255,.45); }
.hero__image { position: relative; display: flex; justify-content: center; align-items: flex-end; }
.hero__img-main { width: 86%; aspect-ratio: 1 / 1; border-radius: var(--r-xl); object-fit: cover; object-position: center; }
.hero__badge { position: absolute; bottom: 40px; left: 0; background: #fff; border-radius: var(--r-md); padding: 10px 14px; display: flex; align-items: center; gap: 10px; box-shadow: 0 8px 28px rgba(0,0,0,.18); }
.hero__badge-avatars { display: flex; }
.hero__badge-avatars img { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid #fff; margin-left: -6px; object-fit: cover; }
.hero__badge-avatars img:first-child { margin-left: 0; }
.hero__badge-count { font-size: 14px; font-weight: 700; color: var(--green-dark); }
.hero__badge-label { font-size: 11px; color: var(--text-mid); }
.hero__partner { margin-top: 28px; }
.hero__partner-divider { width: 40px; height: 1px; background: rgba(255,255,255,.2); margin-bottom: 16px; }
.hero__partner-inner { display: flex; align-items: center; gap: 14px; }
.hero__partner-logo { width: 44px; height: 44px; border-radius: var(--r-sm); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.hero__partner-logo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.hero__partner-label { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green-light); margin-bottom: 3px; }
.hero__partner-name { font-size: 14px; font-weight: 600; color: #fff; line-height: 1.2; }
.hero__partner-sub { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 2px; }

/* ===== CLIENTS BAR ===== */
.clients { background: var(--off-white); border-bottom: 1px solid var(--border); padding: 28px 0; }
.clients__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.clients__left { display: flex; align-items: center; gap: 16px; }
.clients__avatars { display: flex; }
.clients__avatars img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid #fff; margin-left: -10px; object-fit: cover; }
.clients__avatars img:first-child { margin-left: 0; }
.clients__text { }
.clients__count { font-size: 22px; font-weight: 700; color: var(--green-dark); line-height: 1; }
.clients__label { font-size: 12px; color: var(--text-mid); margin-top: 2px; }
.clients__divider { width: 1px; height: 36px; background: var(--border); }
.clients__rating { display: flex; align-items: center; gap: 8px; }
.clients__rating-stars { display: flex; gap: 2px; }
.clients__rating-label { font-size: 13px; font-weight: 600; color: var(--text-mid); }
.clients__heading { font-size: 13px; font-weight: 600; color: var(--text-mid); }

/* ===== WHY CHOOSE US ===== */
.why { padding: 100px 0; }
.why__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why__images { position: relative; height: auto; aspect-ratio: 1/1; }
.why__img-single { width: 100%; height: 100%; border-radius: var(--r-xl); object-fit: cover; box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.why__h2 { font-size: clamp(24px, 3vw, 40px); font-weight: 600; line-height: 1.2; margin-bottom: 16px; color: var(--text-dark); }
.why__p { font-size: 16px; color: var(--text-mid); line-height: 24px; margin-bottom: 28px; }
.why__features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin-bottom: 32px; }
.why__feature { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 500; color: var(--text-dark); }
.why__feature-icon { width: 20px; height: 20px; border-radius: 50%; background: var(--green-light); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.why__feature-icon svg { width: 11px; height: 11px; }
.why__cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.why__phone { display: flex; align-items: center; gap: 10px; }
.why__phone-icon { width: 38px; height: 38px; background: var(--off-white); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why__phone a { font-size: 14px; font-weight: 600; color: var(--green-dark); }

/* ===== ABOUT ===== */
.about { background: var(--green-dark); padding: 100px 0; color: #fff; }
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about__h2 { font-size: clamp(24px, 3vw, 40px); font-weight: 600; line-height: 1.2; margin-bottom: 16px; }
.about__p { font-size: 16px; color: rgba(255,255,255,.6); line-height: 24px; margin-bottom: 36px; }
.about__stats { display: flex; gap: 40px; margin-bottom: 40px; }
.about__stat-num { font-size: 40px; font-weight: 600; color: var(--green-light); line-height: 1; }
.about__stat-label { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 5px; }
.about__images { position: relative; height: 460px; }
.about__img1 { width: 72%; border-radius: var(--r-xl); object-fit: cover; position: absolute; top: 0; right: 0; height: 66%; }
.about__img2 { width: 50%; border-radius: var(--r-xl); object-fit: cover; position: absolute; bottom: 0; left: 0; height: 53%; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: #fff; }
.services__head { text-align: center; max-width: 540px; margin: 0 auto 52px; }
.services__h2 { font-size: clamp(24px, 3vw, 40px); font-weight: 600; line-height: 1.2; margin-bottom: 14px; }
.services__p { font-size: 16px; color: var(--text-mid); line-height: 24px; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card { border: 1px solid #dce2e9; border-radius: 16px; padding: 28px; background: #fff; box-shadow: rgba(0,0,0,.2) 0.24px 0.24px 0.89px -1.25px, rgba(0,0,0,.2) 2px 2px 7.35px -2.5px; transition: border-color .2s, box-shadow .2s; display: block; }
.svc-card:hover { border-color: var(--green-light); box-shadow: 0 8px 32px rgba(5,60,51,.1); }
.svc-card__icon-wrap { width: 56px; height: 56px; background: rgba(183,243,123,.18); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.svc-card__icon { width: 32px; height: 32px; }
.svc-card__title { font-size: 18px; font-weight: 600; margin-bottom: 8px; color: var(--text-dark); }
.svc-card__text { font-size: 16px; color: var(--text-mid); line-height: 24px; }

/* ===== SPLIT ===== */
/* Content Blocks */
.content-blocks { padding: 72px 0; background: var(--white); }
.cblock { display: grid; grid-template-columns: 340px 1fr; gap: 48px; align-items: center; padding: 40px 0; border-bottom: 1px solid var(--border); }
.cblock:first-of-type { padding-top: 0; }
.cblock:last-of-type { border-bottom: none; padding-bottom: 0; }
.cblock--reverse { grid-template-columns: 1fr 340px; }
.cblock--reverse .cblock__img { order: 2; }
.cblock--reverse .cblock__text { order: 1; }
.cblock__img { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; }
.cblock__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cblock__text { display: flex; flex-direction: column; gap: 14px; }
.cblock__headline { font-size: clamp(20px, 2.2vw, 28px); font-weight: 600; line-height: 1.25; color: var(--text-dark); }
.cblock__text p { font-size: 15px; line-height: 1.7; color: var(--text-mid); margin: 0; }

.split { padding: 100px 0; background: var(--off-white); }
.split__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.split__card { border-radius: var(--r-xl); padding: 52px 48px; display: flex; flex-direction: column; gap: 24px; }
.split__card--light { background: var(--white); border: 1px solid var(--border); }
.split__card--dark { background: var(--green-dark); }
.split__h2 { font-size: clamp(22px, 2.5vw, 32px); font-weight: 600; line-height: 1.25; color: var(--text-dark); }
.split__card--dark .split__h2 { color: #fff; }
.split__p { font-size: 16px; line-height: 24px; color: var(--text-mid); }
.split__card--dark .split__p { color: rgba(255,255,255,.6); }
.split__features { display: flex; flex-direction: column; gap: 10px; flex: 1; }

/* ===== SERVICE CATEGORIES ===== */
.svc-cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.svc-cat { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 24px; display: flex; flex-direction: column; gap: 16px; transition: box-shadow .2s, border-color .2s; }
.svc-cat:hover { border-color: var(--green-light); box-shadow: 0 8px 32px rgba(5,60,51,.08); }
.svc-cat--highlight { background: var(--green-dark); border-color: var(--green-dark); }
.svc-cat--highlight .svc-cat__title { color: #fff; }
.svc-cat--highlight .svc-cat__icon-wrap { background: rgba(183,243,123,.15); }
.svc-cat--highlight .svc-cat__icon-wrap svg { stroke: var(--green-light); }
.svc-cat--highlight .svc-cat__list li { color: rgba(255,255,255,.75); }
.svc-cat--highlight .svc-cat__list li::before { background: var(--green-light); }
.svc-cat__header { display: flex; align-items: center; gap: 12px; }
.svc-cat__icon-wrap { width: 40px; height: 40px; flex-shrink: 0; background: rgba(183,243,123,.15); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; }
.svc-cat__icon-wrap svg { stroke: var(--green-dark); }
.svc-cat__title { font-size: 15px; font-weight: 700; color: var(--text-dark); line-height: 1.3; }
.svc-cat__list { display: flex; flex-direction: column; gap: 7px; padding: 0; margin: 0; list-style: none; }
.svc-cat__list li { font-size: 16px; color: var(--text-mid); line-height: 1.5; display: flex; align-items: flex-start; gap: 8px; }
.svc-cat__list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green-light); flex-shrink: 0; margin-top: 6px; }

/* ===== PROCESS ===== */
.process { background: var(--off-white); padding: 100px 0; }
.process__left { display: flex; flex-direction: column; }
.process__head { text-align: left; margin-bottom: 32px; }
.process__h2 { font-size: clamp(24px, 3vw, 40px); font-weight: 600; line-height: 1.2; margin-bottom: 14px; }
.process__p { font-size: 16px; color: var(--text-mid); line-height: 24px; }
.process__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.process__steps { display: flex; flex-direction: column; gap: 16px; }
.process__step { display: flex; flex-direction: column; background: var(--white); border-radius: var(--r-md); padding: 24px 28px; box-shadow: 0 2px 12px rgba(0,0,0,.07); border: 1px solid var(--border); }
.process__step-badge { flex-shrink: 0; display: inline-flex; align-items: center; padding: 5px 14px; border-radius: var(--r-f); background: var(--green-light); font-size: 12px; font-weight: 600; color: var(--green-dark); letter-spacing: .04em; white-space: nowrap; height: fit-content; margin-top: 2px; }
.process__step-title { font-size: 18px; font-weight: 600; margin-bottom: 10px; color: var(--text-dark); line-height: 1.3; }
.process__step-items { display: flex; flex-direction: column; gap: 6px; }
.process__step-item { font-size: 16px; color: var(--text-mid); display: flex; align-items: flex-start; gap: 8px; line-height: 24px; }
.process__step-item::before { content: ''; width: 16px; height: 16px; border-radius: 50%; background: var(--green-light); flex-shrink: 0; margin-top: 1px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='%23053c33'%3E%3Cpath d='M10 3L5 8.5 2 5.5' stroke='%23053c33' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 10px; }
.process__img { border-radius: var(--r-xl); overflow: hidden; min-height: 380px; }
.process__img img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }

/* ===== TESTIMONIALS ===== */
.testi { background: var(--green-dark); padding: 100px 0; }
.testi__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; margin-bottom: 48px; flex-wrap: wrap; }
.testi__h2 { font-size: clamp(24px, 3vw, 40px); font-weight: 600; line-height: 1.2; color: #fff; max-width: 480px; }
.testi__ratings { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; padding-top: 4px; }
.testi__rating-item { display: flex; align-items: center; gap: 10px; }
.testi__rating-logo { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.65); min-width: 72px; }
.testi__rating-stars { display: flex; gap: 2px; }
.testi__rating-score { font-size: 12px; color: rgba(255,255,255,.45); margin-left: 4px; }
.testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testi-card { border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); padding: 24px; display: flex; flex-direction: column; gap: 14px; background: #fff; }
.testi-card__stars { display: flex; gap: 3px; }
.testi-card__text { font-size: 16px; color: var(--text-mid); line-height: 24px; flex: 1; }
.testi-card__author { display: flex; align-items: flex-start; }
.testi-card__name { font-size: 16px; font-weight: 600; color: var(--text-dark); }
.testi-card__role { font-size: 14px; color: var(--text-mid); }

/* ===== FEATURES ===== */
.features { background: var(--off-white); padding: 100px 0; }
.features__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.features__content { order: 1; }
.features__image { order: 2; }
.features__h2 { font-size: clamp(24px, 3vw, 40px); font-weight: 600; line-height: 1.2; margin-bottom: 36px; color: var(--text-dark); }
.features__list { display: flex; flex-direction: column; gap: 28px; }
.feat-item { display: flex; gap: 16px; }
.feat-item__icon { width: 44px; height: 44px; flex-shrink: 0; }
.feat-item__title { font-size: 18px; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); line-height: 1.3; }
.feat-item__text { font-size: 16px; color: var(--text-mid); line-height: 24px; }
.features__image { border-radius: var(--r-xl); overflow: hidden; height: 500px; }
.features__image img { width: 100%; height: 100%; object-fit: cover; object-position: right center; }

/* ===== GALLERY ===== */
.gallery { padding: 100px 0; }
.gallery__head { text-align: center; margin-bottom: 44px; }
.gallery__h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 700; }
.gallery__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 220px 220px; gap: 14px; }
.gallery__item { border-radius: var(--r-lg); overflow: hidden; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--play { position: relative; cursor: pointer; }
.gallery__item--play::after { content: '▶'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 28px; color: #fff; background: rgba(0,0,0,.25); }

/* ===== DISCOUNT ===== */
.discount { background: var(--green-dark); padding: 100px 0; color: #fff; }
.discount__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.discount__h2 { font-size: clamp(24px, 3vw, 40px); font-weight: 600; line-height: 1.2; margin-bottom: 16px; }
.discount__h2 em { color: var(--green-light); font-style: normal; }
.discount__p { font-size: 16px; color: rgba(255,255,255,.6); line-height: 24px; margin-bottom: 28px; }
.discount__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.discount__feature { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 500; color: rgba(255,255,255,.85); }
.discount__feature-icon { width: 18px; height: 18px; border-radius: 50%; background: var(--green-light); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.discount__feature-icon svg { width: 10px; height: 10px; }
.discount__form { display: flex; gap: 10px; flex-wrap: wrap; }
.discount__input { flex: 1; min-width: 200px; padding: 13px 18px; border-radius: var(--r-f); border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.1); color: #fff; font-size: 14px; font-family: var(--font); outline: none; }
.discount__input::placeholder { color: rgba(255,255,255,.4); }
.discount__input:focus { border-color: var(--green-light); }
.discount__image { position: relative; display: flex; justify-content: center; }
.discount__img { width: 90%; border-radius: var(--r-xl); object-fit: cover; max-height: 440px; }
.discount__badge { position: absolute; top: 32px; right: 0; width: 88px; height: 88px; border-radius: 50%; background: var(--green-light); display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.discount__badge-pct { font-size: 22px; font-weight: 800; color: var(--green-dark); line-height: 1; }
.discount__badge-text { font-size: 9px; font-weight: 700; color: var(--green-dark); letter-spacing: .05em; text-transform: uppercase; text-align: center; line-height: 1.2; }

/* ===== BLOG ===== */
.blog { padding: 100px 0; }
.blog__head { text-align: center; max-width: 540px; margin: 0 auto 52px; }
.blog__h2 { font-size: clamp(24px, 3vw, 40px); font-weight: 600; line-height: 1.2; margin-bottom: 14px; }
.blog__p { font-size: 16px; color: var(--text-mid); line-height: 24px; }
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.blog-card { border: 1.5px solid var(--border); border-radius: var(--r-lg); overflow: hidden; display: block; transition: box-shadow .2s; background: #fff; }
.blog-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.08); }
.blog-card__img { height: 196px; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__body { padding: 22px; }
.blog-card__title { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; line-height: 1.4; }
.blog-card__text { font-size: 13px; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px; }
.blog-card__meta { display: flex; align-items: center; gap: 9px; }
.blog-card__meta img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.blog-card__author { font-size: 12px; font-weight: 600; color: var(--text-dark); }
.blog-card__dot { font-size: 12px; color: var(--text-mid); }
.blog-card__date { font-size: 12px; color: var(--text-mid); }
.blog__cta { text-align: center; margin-top: 44px; }

/* ===== FAQ ===== */
.faq { background: var(--off-white); padding: 100px 0; }
.faq__inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.faq__title { font-size: clamp(24px, 3vw, 40px); font-weight: 700; line-height: 1.1; color: var(--text-dark); position: sticky; top: 100px; }
.faq__list { display: flex; flex-direction: column; gap: 0; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__question { width: 100%; text-align: left; padding: 20px 0; font-size: 15px; font-weight: 600; color: var(--text-dark); display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font); background: none; cursor: pointer; line-height: 1.4; }
.faq__icon { font-size: 20px; font-weight: 300; color: var(--text-mid); flex-shrink: 0; transition: transform .2s; line-height: 1; }
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__answer { display: none; padding: 0 0 18px; font-size: 16px; color: var(--text-mid); line-height: 24px; }
.faq__item.open .faq__answer { display: block; }

/* ===== PROJECTS / BEFORE-AFTER ===== */
.projects { padding: 100px 0; background: var(--white); }
.projects__head { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.projects__h2 { font-size: clamp(24px, 3vw, 40px); font-weight: 600; line-height: 1.2; margin-bottom: 14px; }
.projects__p { font-size: 16px; color: var(--text-mid); line-height: 24px; }

/* Gallery grid */
.lb-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(0, 400px)); gap: 10px; justify-content: center; }
.lb-thumb { padding: 0; border: none; background: none; cursor: pointer; border-radius: var(--r-sm); overflow: hidden; aspect-ratio: 4/3; display: block; }
.lb-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease, filter .4s ease; }
.lb-thumb:hover img { transform: scale(1.04); filter: brightness(.9); }

/* Lightbox */
.lb { position: fixed; inset: 0; background: rgba(0,0,0,.93); z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.lb--open { opacity: 1; pointer-events: auto; }
.lb__img-wrap { max-width: 90vw; max-height: 88vh; display: flex; align-items: center; justify-content: center; }
.lb__img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: var(--r-md); display: block; user-select: none; }
.lb__close { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1); border: none; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lb__close:hover { background: rgba(255,255,255,.2); }
.lb__arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.1); border: none; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lb__arrow:hover { background: rgba(255,255,255,.22); }
.lb__arrow--prev { left: 20px; }
.lb__arrow--next { right: 20px; }
.lb__counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); font-size: 13px; color: rgba(255,255,255,.5); font-weight: 500; letter-spacing: .06em; }

.proj-card { border-radius: var(--r-lg); overflow: hidden; position: relative; }
.proj-card--tall { grid-row: span 2; }
.proj-card__img { width: 100%; height: 100%; }
.proj-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.proj-card:hover .proj-card__img img { transform: scale(1.04); }
.proj-card__info { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 16px; display: flex; align-items: center; gap: 10px; background: linear-gradient(to top, rgba(0,0,0,.55), transparent); }
.proj-card__tag { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green-dark); background: var(--green-light); padding: 3px 9px; border-radius: var(--r-f); white-space: nowrap; flex-shrink: 0; }
.proj-card__title { font-size: 13px; font-weight: 600; color: #fff; }

/* ===== CONTACT ===== */
.contact { background: var(--green-dark); padding: 100px 0; }
.contact__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; }
.contact__h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 600; line-height: 1.25; color: #fff; margin: 16px 0 32px; }
.contact__phone-block { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.contact__phone-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--green-dark); }
.contact__phone-label { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.contact__phone-number { font-size: 26px; font-weight: 700; color: #fff; letter-spacing: -.01em; }
.contact__phone-number:hover { color: var(--green-light); }
.contact__meta { display: flex; flex-direction: column; gap: 12px; }
.contact__meta-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.6); }
.contact__meta-item svg { flex-shrink: 0; opacity: .7; }
.contact__form { background: #fff; border-radius: var(--r-xl); padding: 40px; display: flex; flex-direction: column; gap: 20px; overflow: hidden; }
.cf-turnstile { max-width: 100%; }
.contact__form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact__field { display: flex; flex-direction: column; gap: 6px; }
.contact__label { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.contact__input { padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--r-sm); font-size: 14px; font-family: var(--font); color: var(--text-dark); background: var(--white); outline: none; transition: border-color .15s; }
.contact__input::placeholder { color: #aab5be; }
.contact__input:focus { border-color: var(--green-dark); }
.contact__textarea { resize: vertical; min-height: 110px; }
.contact__disclaimer { font-size: 12px; color: var(--text-mid); text-align: center; margin-top: -4px; }
.contact__consent { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.contact__consent input[type="checkbox"] { flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; accent-color: var(--green-dark); cursor: pointer; }
.contact__consent span { font-size: 13px; color: var(--text-mid); line-height: 1.5; }
.contact__consent a { color: var(--green-dark); text-decoration: underline; }

/* ===== LOCAL SEO ===== */
.local-seo { background: var(--white); padding: 72px 0; border-top: 1px solid var(--border); }
.local-seo__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; margin-top: 20px; }
.local-seo__h2 { font-size: 22px; font-weight: 600; color: var(--text-dark); margin-bottom: 16px; }
.local-seo__text p { font-size: 15px; color: var(--text-mid); line-height: 26px; margin-bottom: 12px; }
.local-seo__text p:last-child { margin-bottom: 0; }
.local-seo__text strong { color: var(--text-dark); font-weight: 600; }
.local-seo__tags { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 4px; }
.local-seo__tag { font-size: 13px; font-weight: 500; color: var(--text-mid); background: var(--off-white); border: 1px solid var(--border); border-radius: var(--r-f); padding: 5px 14px; }

/* ===== FOOTER ===== */
.footer { background: var(--green-dark); color: #fff; padding-top: 72px; }
.footer__subscribe { background: rgba(183,243,123,.12); border: 1px solid rgba(183,243,123,.2); border-radius: var(--r-xl); padding: 36px 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; margin-bottom: 64px; }
.footer__subscribe-title { font-size: 22px; font-weight: 700; line-height: 1.3; }
.footer__subscribe-sub { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 6px; line-height: 1.6; }
.footer__subscribe-form { display: flex; gap: 10px; }
.footer__subscribe-input { flex: 1; padding: 13px 18px; border-radius: var(--r-f); border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: #fff; font-size: 14px; font-family: var(--font); outline: none; }
.footer__subscribe-input::placeholder { color: rgba(255,255,255,.35); }
.footer__subscribe-input:focus { border-color: var(--green-light); }
.footer__grid { display: grid; grid-template-columns: 1fr auto auto auto; gap: 40px 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__logo { display: flex; align-items: center; gap: 9px; font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.footer__logo-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--green-dark); border: 2px solid var(--green-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer__brand-text { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 20px; max-width: 240px; }
.footer__socials { display: flex; gap: 10px; }
.footer__social { width: 34px; height: 34px; border-radius: 8px; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; transition: border-color .15s, background .15s; }
.footer__social:hover { border-color: var(--green-light); background: rgba(183,243,123,.1); }
.footer__social svg { width: 15px; height: 15px; }
.footer__col-title { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links a { font-size: 13px; color: rgba(255,255,255,.65); transition: color .15s; }
.footer__links a:hover { color: #fff; }
.footer__contact { display: flex; flex-direction: column; gap: 16px; }
.footer__contact-label { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.38); margin-bottom: 2px; }
.footer__contact-value { font-size: 13px; color: rgba(255,255,255,.75); }
.footer__contact-value a { color: rgba(255,255,255,.75); }
.footer__contact-value a:hover { color: #fff; }
.footer__contact-icon { display: flex; align-items: center; gap: 6px; }
.footer__bottom { padding: 18px 0; text-align: center; }
.footer__copy { font-size: 12px; color: rgba(255,255,255,.35); }

/* ===== FLOATING BAR ===== */
.float-bar {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 40px));
  z-index: 500;
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 12px 48px rgba(5,60,51,.14), 0 2px 8px rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  padding: 7px 7px 7px 22px;
  gap: 0;
  transition: transform .45s cubic-bezier(.34,1.2,.64,1), opacity .35s ease;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}
.float-bar--visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.float-bar__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding-right: 22px;
  transition: color .18s;
}
.float-bar__phone:hover { color: var(--green-dark); }
.float-bar__phone-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--r-md);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-dark);
  transition: background .18s;
}
.float-bar__phone:hover .float-bar__phone-icon { background: var(--green-light); }
.float-bar__divider { width: 1px; height: 26px; background: rgba(0,0,0,.12); margin: 0 14px; flex-shrink: 0; }
.float-bar__cta { font-size: 14px; padding: 10px 20px; border-radius: var(--r-lg); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .hero__inner { padding: 0 32px; }
}
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__image { display: none; }
  .hero__content { padding: 60px 0; }
  .why__inner, .about__inner, .features__inner, .discount__inner, .process__inner, .faq__inner, .split__inner, .contact__inner { grid-template-columns: 1fr; }
  .cblock, .cblock--reverse { grid-template-columns: 1fr; gap: 24px; }
  .cblock--reverse .cblock__img { order: 0; }
  .cblock--reverse .cblock__text { order: 1; }
  .contact__form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 28px 20px; }
  .about__images { height: 300px; }
  .services__grid, .testi__grid, .blog__grid, .svc-cat-grid { grid-template-columns: 1fr 1fr; }
  .projects__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .proj-card--tall { grid-row: span 1; }
  .testi__head { flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__subscribe { grid-template-columns: 1fr; gap: 20px; }
  .nav__links { display: none; }
  .nav__talk { display: none; }
  .hamburger { display: flex; }
  .topbar { overflow: hidden; }
  .topbar__slider { position: relative; height: 22px; display: block; gap: 0; }
  .topbar__slide { position: absolute; inset: 0; justify-content: center; transform: translateX(100%); transition: transform .5s cubic-bezier(.4,0,.2,1); }
  .topbar__slide--active { transform: translateX(0); }
  .topbar__slide--exit { transform: translateX(-100%); }
  .topbar__slide--reset { transition: none; }
  .faq__title { position: static; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero__inner { padding: 0 20px; }
  .services__grid, .testi__grid, .blog__grid, .projects__grid, .svc-cat-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .lb-grid { grid-template-columns: 1fr; }
  .lb__arrow--prev { left: 10px; }
  .lb__arrow--next { right: 10px; }
  .why__features { grid-template-columns: 1fr; }
  .cblock { padding: 32px 0; }
  .about__stats { gap: 24px; flex-wrap: wrap; }
  .float-bar {
    left: 12px;
    right: 12px;
    bottom: 16px;
    width: auto;
    transform: translateY(calc(100% + 32px));
    border-radius: var(--r-lg);
    padding: 8px;
    gap: 8px;
  }
  .float-bar--visible { transform: translateY(0); }
  .float-bar {
    left: 12px;
    right: 12px;
    bottom: 16px;
    width: auto;
    transform: translateY(calc(100% + 32px));
    border-radius: var(--r-xl);
    padding: 12px;
    gap: 0;
  }
  .float-bar--visible { transform: translateY(0); }
  .float-bar__phone {
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    background: var(--green-light);
    color: var(--green-dark);
    border-radius: var(--r-lg);
    font-size: 15px;
  }
  .float-bar__phone-icon { display: none; }
  .float-bar__divider { display: none; }
  .float-bar__cta { display: none; }
}
