:root {
    /* Green palette (як у GreenMaster, але глибше) */
    --forest-d: #0f3a0f;
    --forest: #1b4d1b;
    --green: #2d6a2d;
    --green-mid: #4a8c2a;
    --lime: #7ec850;
    --lime-bright: #b5f07a;
    --bg: #f8faf5;
    --bg-2: #eef4e6;
    --ink: #1b3a0e;
    --ink-2: #3d5233;
    --ink-dim: #6d7f60;
    --sun: #f9a825;
    --sun-soft: #fcd34d;
    --sky: #c8e1f0;
    --line: rgba(27,58,14,0.1);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Nunito', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 500;
  }

  .wrap { max-width: 1360px; margin: 0 auto; padding: 0 40px; }
  @media (max-width: 640px) { .wrap { padding: 0 20px; } }

  h1, h2, h3, h4 {
    font-family: 'Bricolage Grotesque', system-ui, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--ink);
  }

  /* ============ NAV ============ */
  header.top {
    position: sticky; top: 0;
    background: rgba(248,250,245,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    z-index: 100;
  }
  .nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0; gap: 24px;
  }
  .logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800; font-size: 28px;
    letter-spacing: -0.04em;
    color: var(--forest);
    font-variation-settings: "opsz" 96;
  }
  .logo-mark {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--green-mid), var(--forest));
    border-radius: 12px;
    display: grid; place-items: center;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(27,77,27,0.25);
  }
  .logo-mark svg { width: 24px; height: 24px; }
  .logo-mark--photo { background: #f5ecd9; box-shadow: 0 4px 12px rgba(27,77,27,0.18); padding: 0; overflow: hidden; }
  .logo-mark--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }


  .nav-links { display: flex; gap: 28px; list-style: none; }
  .nav-links a {
    color: var(--ink-2);
    text-decoration: none;
    font-size: 15px; font-weight: 600;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--green); }
  @media (max-width: 900px) { .nav-links { display: none; } }

  .nav-cta {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--forest);
    color: #fff;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700; font-size: 14px;
    transition: all 0.25s;
    border: none; cursor: pointer;
    font-family: 'Nunito', sans-serif;
  }
  .nav-cta:hover { background: var(--green); transform: translateY(-1px); }
  .nav-cta .dot {
    width: 8px; height: 8px;
    background: var(--lime);
    border-radius: 50%;
    box-shadow: 0 0 0 0 var(--lime);
    animation: ping 2s infinite;
  }
  @keyframes ping {
    0%, 100% { box-shadow: 0 0 0 0 rgba(126,200,80,0.7); }
    50% { box-shadow: 0 0 0 8px rgba(126,200,80,0); }
  }

  /* ============ HERO ============ */
  .hero {
    background:
      radial-gradient(ellipse at top right, rgba(249,168,37,0.18), transparent 50%),
      linear-gradient(160deg, var(--forest-d) 0%, var(--forest) 35%, var(--green) 70%, var(--green-mid) 100%);
    color: #fff;
    padding: 80px 0 140px;
    position: relative;
    overflow: hidden;
  }
  /* decorative bg elements */
  .hero-bg { position: absolute; inset: 0; pointer-events: none; }
  .hero-bg .sun-shape {
    position: absolute;
    top: 80px; right: 6%;
    width: 220px; height: 220px;
    background: radial-gradient(circle, var(--sun-soft) 0%, transparent 60%);
    opacity: 0.5;
    border-radius: 50%;
  }
  .hero-bg .stars {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.4) 1px, transparent 1px),
                      radial-gradient(circle at 80% 50%, rgba(255,255,255,0.3) 1px, transparent 1px),
                      radial-gradient(circle at 40% 70%, rgba(255,255,255,0.5) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 100px 100px;
    opacity: 0.4;
  }

  .hero-grid {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: center;
  }
  @media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(126,200,80,0.2);
    border: 1px solid rgba(126,200,80,0.4);
    color: var(--lime-bright);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
  }

  h1.hero-title {
    font-size: clamp(44px, 7vw, 104px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.035em;
    color: #fff;
    margin-bottom: 24px;
    font-variation-settings: "opsz" 96;
  }
  h1.hero-title .accent {
    color: var(--lime);
    position: relative;
    display: inline-block;
  }
  h1.hero-title .accent svg.underline {
    position: absolute;
    left: 0; right: 0; bottom: -0.1em;
    width: 100%; height: 0.18em;
  }

  .hero-lead {
    font-size: 19px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 540px;
  }

  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    font-weight: 700; font-size: 15px;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer; border: none;
    font-family: 'Nunito', sans-serif;
  }
  .btn-primary {
    background: var(--lime);
    color: var(--forest-d);
    box-shadow: 0 10px 24px rgba(126,200,80,0.3);
  }
  .btn-primary:hover { background: var(--lime-bright); transform: translateY(-2px); }
  .btn-ghost {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.25);
  }
  .btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.5); }

  .hero-stats {
    display: flex; gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
    flex-wrap: wrap;
  }
  .stat-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--lime);
    line-height: 1;
    letter-spacing: -0.03em;
  }
  .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 6px;
    font-weight: 600;
  }

  /* ============ HERO ILLUSTRATION ============ */
  .hero-illus {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1.05;
    max-width: 560px;
    margin-left: auto;
  }
  .hero-illus svg { width: 100%; height: 100%; display: block; }

  /* floating badges */
  .float-badge {
    position: absolute;
    background: #fff;
    color: var(--ink);
    padding: 14px 18px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(15,58,15,0.3);
    display: flex; align-items: center; gap: 12px;
    font-size: 13px;
    animation: bob 5s ease-in-out infinite;
    z-index: 3;
  }
  .float-badge .ic {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .float-badge strong {
    font-family: 'Bricolage Grotesque', sans-serif;
    display: block; font-size: 15px; font-weight: 700;
    color: var(--forest-d);
  }
  .float-badge span { color: var(--ink-dim); font-size: 12px; font-weight: 600; }

  .fb-1 { top: 10%; left: -10px; }
  .fb-1 .ic { background: rgba(126,200,80,0.2); color: var(--green); }
  .fb-2 { top: 50%; right: -5px; animation-delay: -2.5s; }
  .fb-2 .ic { background: rgba(249,168,37,0.2); color: var(--sun); }
  .fb-3 { bottom: 8%; left: 10%; animation-delay: -1.2s; }
  .fb-3 .ic { background: rgba(45,106,45,0.15); color: var(--forest); }
  @keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  /* ============ WAVE DIVIDERS ============ */
  .wave-top, .wave-bot {
    position: relative; width: 100%; line-height: 0;
  }
  .wave-top svg, .wave-bot svg { width: 100%; height: 80px; display: block; }

  /* ============ SERVICES ============ */
  .services {
    background: var(--bg);
    padding: 100px 0 120px;
  }
  .label {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--green);
    font-size: 12px; font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .label::before {
    content: ''; width: 24px; height: 2px; background: var(--lime);
    border-radius: 2px;
  }

  .section-head {
    display: flex; justify-content: space-between; align-items: end;
    flex-wrap: wrap; gap: 32px;
    margin-bottom: 56px;
  }
  h2.section-title {
    font-size: clamp(34px, 4.8vw, 64px);
    max-width: 720px;
    font-variation-settings: "opsz" 96;
  }
  h2.section-title .accent { color: var(--green); }

  .section-head > p {
    max-width: 380px;
    color: var(--ink-2);
    font-size: 16px;
    line-height: 1.6;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  @media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

  .svc {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
  }
  .svc:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15,58,15,0.12);
    border-color: rgba(45,106,45,0.25);
  }

  .svc-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
  }
  .svc-img svg { width: 100%; height: 100%; display: block; }
  .svc-img .tag {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    color: var(--forest);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .svc-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .svc-body h3 { font-size: 22px; line-height: 1.15; }
  .svc-body p {
    color: var(--ink-2);
    font-size: 14.5px;
    flex: 1;
    line-height: 1.6;
  }
  .svc-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px dashed var(--line);
  }
  .svc-price {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--forest);
    letter-spacing: -0.02em;
  }
  .svc-price small {
    font-weight: 500;
    font-size: 12px;
    color: var(--ink-dim);
  }
  .svc-arrow {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--bg-2);
    display: grid; place-items: center;
    color: var(--forest);
    transition: all 0.3s;
    text-decoration: none;
  }
  .svc:hover .svc-arrow { background: var(--forest); color: var(--lime); transform: rotate(-45deg); }

  /* ============ WORKS GALLERY ============ */
  .works {
    background: var(--bg-2);
    padding: 100px 0 120px;
    position: relative;
  }
  .works-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    min-height: 640px;
  }
  @media (max-width: 900px) {
    .works-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
      min-height: auto;
    }
  }
  @media (max-width: 600px) {
    .works-grid { grid-template-columns: 1fr; }
  }

  .work {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 280px;
  }
  .work:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(15,58,15,0.15); }
  .work svg.scene {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    display: block;
  }
  .work:nth-child(1) { grid-row: 1 / span 2; }
  @media (max-width: 900px) { .work:nth-child(1) { grid-row: auto; } }

  .work-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(27,58,14,0.9) 0%, rgba(27,58,14,0.5) 60%, transparent 100%);
    color: #fff;
  }
  .work-overlay .cat {
    display: inline-block;
    background: var(--lime);
    color: var(--forest-d);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .work-overlay h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 4px;
  }
  .work-overlay p { font-size: 13px; color: rgba(255,255,255,0.85); }

  /* ============ WHY ============ */
  .why {
    padding: 120px 0;
    position: relative;
    background: var(--bg);
  }
  .why-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 72px;
    align-items: center;
  }
  @media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }

  .why-visual {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(165deg, var(--green-mid) 0%, var(--green) 50%, var(--forest) 100%);
  }
  .why-visual::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(249,168,37,0.2), transparent 50%);
  }
  .why-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
  .why-visual .badge-iso {
    position: absolute;
    bottom: 24px; left: 24px;
    background: #fff;
    padding: 12px 16px;
    border-radius: 16px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: 0 10px 30px rgba(15,58,15,0.2);
    z-index: 2;
  }
  .badge-iso .iso-circle {
    width: 40px; height: 40px;
    background: var(--lime);
    border-radius: 50%;
    display: grid; place-items: center;
    color: var(--forest-d);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800; font-size: 14px;
  }
  .badge-iso strong {
    display: block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14px; color: var(--forest-d);
  }
  .badge-iso span { font-size: 11px; color: var(--ink-dim); font-weight: 600; }

  .why-visual .stat-float {
    position: absolute;
    top: 24px; right: 24px;
    background: var(--sun);
    color: var(--forest-d);
    padding: 14px 18px;
    border-radius: 16px;
    z-index: 2;
    box-shadow: 0 10px 24px rgba(249,168,37,0.4);
  }
  .stat-float strong {
    font-family: 'Bricolage Grotesque', sans-serif;
    display: block; font-size: 28px; font-weight: 800;
    line-height: 1;
  }
  .stat-float span { font-size: 11px; font-weight: 700; }

  .why-content .items { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
  .why-item {
    display: flex; gap: 18px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: all 0.3s;
  }
  .why-item:hover {
    border-color: rgba(45,106,45,0.3);
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(15,58,15,0.08);
  }
  .why-ic {
    width: 48px; height: 48px;
    background: var(--bg-2);
    border-radius: 12px;
    display: grid; place-items: center;
    color: var(--green);
    flex-shrink: 0;
  }
  .why-item h4 {
    font-size: 17px;
    margin-bottom: 4px;
  }
  .why-item p { color: var(--ink-2); font-size: 14px; }

  /* ============ PROCESS ============ */
  .process {
    background: var(--forest);
    color: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
  }
  .process::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 10% 20%, rgba(126,200,80,0.15), transparent 40%),
      radial-gradient(circle at 90% 80%, rgba(249,168,37,0.1), transparent 40%);
    pointer-events: none;
  }
  .process .label { color: var(--lime-bright); }
  .process .label::before { background: var(--lime); }
  .process h2.section-title {
    color: #fff;
    margin-bottom: 60px;
  }
  .process h2 .accent { color: var(--lime); }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
  }
  @media (max-width: 900px) { .process-steps { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 500px) { .process-steps { grid-template-columns: 1fr; } }

  .step {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 28px 24px;
    backdrop-filter: blur(10px);
    position: relative;
  }
  .step-ic {
    width: 60px; height: 60px;
    background: var(--lime);
    color: var(--forest-d);
    border-radius: 16px;
    display: grid; place-items: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(126,200,80,0.3);
  }
  .step-num {
    position: absolute;
    top: 20px; right: 24px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 64px;
    font-weight: 300;
    color: rgba(126,200,80,0.2);
    line-height: 1;
  }
  .step h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 8px;
  }
  .step p { color: rgba(255,255,255,0.7); font-size: 14px; }

  /* ============ CTA ============ */
  .cta-section {
    padding: 120px 0;
    background: var(--bg);
    position: relative;
  }
  .cta-card {
    background: linear-gradient(135deg, var(--forest) 0%, var(--green) 60%, var(--green-mid) 100%);
    border-radius: 40px;
    padding: 80px 60px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .cta-card svg.bg-leaves {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    opacity: 0.12;
    pointer-events: none;
  }
  .cta-card::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(249,168,37,0.25), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
  }
  .cta-card > *:not(svg) { position: relative; z-index: 1; }
  .cta-card .label { color: var(--lime-bright); }
  .cta-card .label::before { background: var(--lime); }
  .cta-card h2 {
    color: #fff;
    font-size: clamp(34px, 5vw, 64px);
    margin-bottom: 16px;
    font-variation-settings: "opsz" 96;
  }
  .cta-card h2 .accent { color: var(--lime); }
  .cta-card p {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    max-width: 520px;
    margin: 0 auto 36px;
  }
  .cta-form {
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    padding: 6px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
  }
  .cta-form input {
    flex: 1;
    padding: 14px 22px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 15px;
    color: #fff;
    font-family: inherit;
    font-weight: 600;
  }
  .cta-form input::placeholder { color: rgba(255,255,255,0.6); }
  .cta-form button {
    padding: 14px 28px;
    background: var(--lime);
    color: var(--forest-d);
    border: none;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
    font-family: inherit;
  }
  .cta-form button:hover { background: var(--lime-bright); transform: scale(1.03); }
  @media (max-width: 500px) {
    .cta-form { flex-direction: column; border-radius: 20px; }
    .cta-form button { padding: 16px; }
  }

  /* ============ FAQ ============ */
  .faq {
    background: var(--bg-2);
    padding: 120px 0;
  }
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
  }
  @media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 40px; } }

  .faq-list { display: flex; flex-direction: column; gap: 12px; }
  .faq-item {
    background: #fff;
    border-radius: 20px;
    padding: 4px 28px;
    border: 1px solid var(--line);
    transition: all 0.3s;
  }
  .faq-item[open] { border-color: rgba(45,106,45,0.3); }
  .faq-item summary {
    cursor: pointer;
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px;
    padding: 22px 0;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    color: var(--ink);
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item .toggle {
    width: 32px; height: 32px;
    background: var(--bg-2);
    color: var(--forest);
    border-radius: 50%;
    display: grid; place-items: center;
    flex-shrink: 0;
    transition: all 0.3s;
    font-size: 18px;
    font-weight: 700;
  }
  .faq-item[open] .toggle { background: var(--lime); transform: rotate(45deg); }
  .faq-item p {
    padding: 0 0 22px;
    color: var(--ink-2);
    font-size: 15px;
    max-width: 680px;
  }

  /* ============ FOOTER ============ */
  footer {
    background: var(--forest-d);
    color: rgba(255,255,255,0.7);
    padding: 72px 0 28px;
    position: relative;
    overflow: hidden;
  }
  footer::before {
    content: '';
    position: absolute;
    top: -120px; left: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(126,200,80,0.15), transparent 60%);
    border-radius: 50%;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
  }
  @media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 500px) { .footer-top { grid-template-columns: 1fr; } }

  footer .logo { color: #fff; margin-bottom: 16px; }
  footer h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lime-bright);
    margin-bottom: 18px;
    font-weight: 800;
  }
  footer ul { list-style: none; }
  footer li { margin-bottom: 10px; }
  footer a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
  }
  footer a:hover { color: var(--lime); }
  .footer-bottom {
    display: flex; justify-content: space-between;
    flex-wrap: wrap; gap: 14px;
    padding-top: 28px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
  }

  /* reveal */
  .reveal { opacity: 0; transform: translateY(28px); transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
  .reveal.in { opacity: 1; transform: translateY(0); }

  .svc-img img,
  .work img.scene,
  .why-visual img,
  .hero-illus > img {
    width: 100%; height: 100%;
    display: block;
    object-fit: cover;
  }
  .svc-img img { transition: transform .6s ease; }
  .svc:hover .svc-img img { transform: scale(1.04); }
  .work img.scene { transition: transform .6s ease; }
  .work:hover img.scene { transform: scale(1.05); }
  .why-visual img { position: absolute; inset: 0; z-index: 0; }
  .why-visual::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(15,58,15,0) 55%, rgba(15,58,15,0.55) 100%);
    pointer-events: none;
    z-index: 1;
  }
  .hero-illus { border-radius: 32px; overflow: hidden; box-shadow: 0 30px 60px rgba(15,58,15,0.25); }
  .hero-illus::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(15,58,15,0) 60%, rgba(15,58,15,0.32) 100%);
    pointer-events: none;
    z-index: 1;
  }

/* ===== Telegram CTA ===== */
.cta-actions { display:flex; flex-wrap:wrap; gap:18px 24px; align-items:center; justify-content:center; margin-top:10px; }
.btn-tg { display:inline-flex; align-items:center; gap:10px; background:#fff; color:var(--forest-d); padding:16px 28px; border-radius:999px; font-weight:800; font-size:17px; text-decoration:none; box-shadow:0 10px 30px rgba(0,0,0,.22); transition:transform .2s, box-shadow .2s; }
.btn-tg:hover { transform:translateY(-2px) scale(1.02); box-shadow:0 16px 38px rgba(0,0,0,.3); }
.btn-tg svg { width:24px; height:24px; color:#229ED9; }
.btn-call { color:rgba(255,255,255,.92); font-weight:700; text-decoration:none; border-bottom:1px dashed rgba(255,255,255,.45); padding-bottom:2px; }
.btn-call:hover { color:#fff; }
.btn.btn-primary .svg, .btn-primary svg { vertical-align:middle; }

/* ===== Service areas grid ===== */
.areas { padding: 96px 0; background: var(--bg-2); }
.areas-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:14px; margin-top:36px; }
.area-card { display:flex; align-items:center; justify-content:space-between; gap:10px; background:#fff; border:1px solid var(--line); border-radius:16px; padding:18px 20px; text-decoration:none; color:var(--ink); font-weight:700; font-size:15px; transition:all .2s; }
.area-card:hover { border-color:var(--green); transform:translateY(-3px); box-shadow:0 14px 30px rgba(15,58,15,.12); color:var(--green); }
.area-card svg { width:18px; height:18px; flex-shrink:0; color:var(--green); }

/* ===== Breadcrumb ===== */
.breadcrumb { font-size:13px; color:var(--ink-dim); margin-bottom:22px; }
.breadcrumb a { color:var(--ink-dim); text-decoration:none; }
.breadcrumb a:hover { color:var(--green); }
.breadcrumb span { color:var(--ink-2); font-weight:700; }

/* ===== City hero tweak ===== */
.hero--city { padding-top: 130px; padding-bottom: 80px; min-height:auto; }
.hero--city .hero-illus { border-radius:32px; overflow:hidden; box-shadow:0 30px 60px rgba(15,58,15,.25); aspect-ratio:4/5; }
.hero--city .hero-illus img { width:100%; height:100%; object-fit:cover; display:block; }

/* ===== Local context prose ===== */
.local { padding: 96px 0; }
.local-grid { display:grid; grid-template-columns: 1.15fr .85fr; gap:60px; align-items:center; }
@media (max-width:900px){ .local-grid{ grid-template-columns:1fr; gap:36px; } }
.local-prose p { color:var(--ink-2); font-size:16.5px; margin-top:16px; line-height:1.75; }
.local-prose .section-title { margin-bottom:6px; }
.local-visual img { width:100%; border-radius:24px; display:block; box-shadow:0 24px 50px rgba(15,58,15,.18); aspect-ratio:4/5; object-fit:cover; }
.local-chips { display:flex; flex-wrap:wrap; gap:10px; margin-top:26px; }
.local-chips span { background:var(--bg-2); border:1px solid var(--line); border-radius:999px; padding:8px 14px; font-size:13px; font-weight:700; color:var(--ink-2); }

/* ===== Nearby strip ===== */
.nearby-strip { padding: 40px 0 70px; text-align:center; }
.nearby-strip p { color:var(--ink-2); font-size:17px; margin-top:10px; }
.nearby-strip a { color:var(--green); font-weight:700; text-decoration:none; }
.nearby-strip a:hover { text-decoration:underline; }
