/* FIX WORDPRESS DEFAULTS */
body {
  margin: 0;
  padding: 0;
}

 <style>
    /* ─── CSS Reset & Variables ─────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --green:       #2e7d32;
      --green-dark:  #1b5e20;
      --green-light: #43a047;
      --green-bg:    #e8f5e9;
      --white:       #ffffff;
      --off-white:   #f5f5f5;
      --text-dark:   #1a1a1a;
      --text-mid:    #444;
      --text-light:  #666;
      --border:      #ddd;
      --topbar-bg:   #f0f0f0;
      --header-h:    72px;
      --topbar-h:    36px;
      --font-main:   'Barlow', sans-serif;
      --font-cond:   'Barlow Condensed', sans-serif;
      --max-w:       1320px;
      --page-px:     48px;
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-main);
      color: var(--text-dark);
      font-size: 15px;
      line-height: 1.6;
      background: var(--white);
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { display: block; width: 100%; height: 100%; object-fit: cover; }

    /* ─── Placeholder image utility ─────────────────────────── */
    .img-placeholder {
      background: #c8d6c9;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 8px;
      color: #5a7a5c;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: .04em;
      text-transform: uppercase;
      position: relative;
      overflow: hidden;
    }
    .img-placeholder::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 18px,
        rgba(255,255,255,.18) 18px,
        rgba(255,255,255,.18) 19px
      );
    }
    .img-placeholder svg {
      width: 36px; height: 36px;
      stroke: #5a7a5c; fill: none;
      stroke-width: 1.5;
      position: relative; z-index: 1;
    }
    .img-placeholder span { position: relative; z-index: 1; }

    /* ─── Buttons ────────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 22px;
      font-family: var(--font-main);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .04em;
      border-radius: 3px;
      cursor: pointer;
      transition: background .2s, color .2s, border-color .2s;
      border: 2px solid transparent;
    }
    .btn-primary {
      background: var(--green);
      color: var(--white);
    }
    .btn-primary:hover { background: var(--green-dark); }
    .btn-outline {
      background: transparent;
      color: var(--white);
      border-color: var(--white);
    }
    .btn-outline:hover { background: var(--white); color: var(--green); }
    .btn-green-outline {
      background: transparent;
      color: var(--green);
      border-color: var(--green);
    }
    .btn-green-outline:hover { background: var(--green); color: var(--white); }
    .btn svg { width: 16px; height: 16px; }

    /* ─── Section helpers ────────────────────────────────────── */
    .section { padding: 72px 0; }
    .section--gray { background: var(--off-white); }
    .section--green { background: var(--green); color: var(--white); }
    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--page-px); }
    .section-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 10px;
    }
    .section-title {
      font-family: var(--font-cond);
      font-size: 36px;
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: 14px;
      color: var(--text-dark);
    }
    /* Remove old --center modifier; all titles now left-aligned */
    .section-title--center { text-align: left; }
    .section-subtitle {
      font-size: 15px;
      color: var(--text-light);
      max-width: 640px;
      margin: 0 0 48px 0;   /* left-flush, no auto margin */
      text-align: left;
    }

    /* ══════════════════════════════════════════════════════════
       SITE HEADER — full width bg, constrained inner content
    ══════════════════════════════════════════════════════════ */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--white);
      box-shadow: 0 2px 12px rgba(0,0,0,.07);
    }

    /* ── ROW 1: Logo LEFT  |  Nav RIGHT-aligned ─────────────── */
    .header-row1 {
      border-bottom: 1px solid var(--border);
      background: var(--white);
    }
    .header-row1__inner {
      display: flex;               /* flex: logo pushes nav to far right */
      align-items: center;
      justify-content: space-between;
      height: 72px;
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 var(--page-px);
    }

    /* Logo — hard left */
    .logo {
      display: inline-flex;
      flex-direction: column;
      line-height: 1;
      gap: 3px;
      text-decoration: none;
      flex-shrink: 0;
    }
    .logo__main {
      font-family: var(--font-cond);
      font-size: 34px;
      font-weight: 700;
      color: var(--green);
      letter-spacing: .05em;
      line-height: 1;
    }
    .logo__sub {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--green);
      padding-left: 2px;
    }

    /* Primary Nav — RIGHT side, links flush right */
    .primary-nav {
      display: flex;
      align-items: center;
      justify-content: flex-end;   /* right-aligned */
    }
    .primary-nav__list {
      display: flex;
      align-items: center;
      margin: 0; padding: 0;
    }
    .primary-nav__item { position: relative; }
    .primary-nav__link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 0 16px;
      height: 72px;
      font-size: 12.5px;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--text-dark);
      white-space: nowrap;
      border-bottom: 3px solid transparent;
      transition: color .18s, border-color .18s;
    }
    .primary-nav__link svg {
      width: 10px; height: 10px;
      stroke: currentColor; fill: none; stroke-width: 3;
      transition: transform .2s; flex-shrink: 0;
    }
    .primary-nav__item:hover .primary-nav__link {
      color: var(--green);
      border-bottom-color: var(--green);
    }
    .primary-nav__item:hover .primary-nav__link svg { transform: rotate(180deg); }

    @keyframes dropFade {
      from { opacity: 0; transform: translateY(-5px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .primary-dropdown {
      display: none;
      position: absolute;
      top: 72px;
      right: 0;        /* align dropdown to right edge of its trigger */
      left: auto;
      min-width: 200px;
      background: var(--white);
      border: 1px solid var(--border);
      border-top: 3px solid var(--green);
      box-shadow: 0 14px 40px rgba(0,0,0,.12);
      border-radius: 0 0 5px 5px;
      padding: 8px 0;
      z-index: 900;
      animation: dropFade .16s ease;
    }
    .primary-nav__item:hover .primary-dropdown { display: block; }
    .primary-dropdown__link {
      display: block;
      padding: 9px 20px;
      font-size: 13px;
      color: var(--text-mid);
      transition: background .13s, color .13s, padding-left .13s;
    }
    .primary-dropdown__link:hover {
      background: var(--green-bg);
      color: var(--green);
      padding-left: 26px;
    }

    /* spacer hidden — not needed with flex space-between */
    .header-spacer { display: none; }

    /* ── ROW 2: Sub-nav 40% | 20% | 20% — RIGHT-aligned ────── */
    /*
      Layout logic:
        – Total container = var(--max-w) with var(--page-px) padding each side
        – 3 columns: 40% | 20% | 20% of the inner width = 80% total
        – Remaining 40% is WHITE space on the LEFT (cols pushed right)
        – Achieved with: grid 40fr 20fr 20fr inside a flex-end wrapper,
          OR simply: ml-auto on the grid so it hugs the right
    */
    .header-row2 {
      background: var(--white);
      border-bottom: 1px solid var(--border);
    }
    .header-row2__inner {
      display: flex;                      /* outer flex to push grid right */
      justify-content: flex-end;         /* RIGHT-align the column group   */
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 var(--page-px);
    }
    .subnav-grid {
      display: grid;
      grid-template-columns: 50fr 30fr 20fr;  /* 50% | 30% | 20% */
      width: 100%;
    }

    .subnav-col {
      padding: 10px 28px;
      border-left: 1px solid var(--border);  /* dividers now on LEFT */
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    .subnav-col:first-child { border-left: none; padding-left: 0; }
    .subnav-col:last-child  { padding-right: 0; }

    .subnav-col__label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .09em;
      text-transform: uppercase;
      color: var(--text-light);
      line-height: 1.4;
      margin-bottom: 2px;
    }
    .subnav-col__links {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 0;
    }
    .subnav-col__item { position: relative; }
    .subnav-col__link {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 3px 14px 3px 0;
      font-size: 13px;
      font-weight: 700;
      color: var(--text-dark);
      white-space: nowrap;
      transition: color .15s;
    }
    .subnav-col__link svg {
      width: 10px; height: 10px;
      stroke: currentColor; fill: none; stroke-width: 3;
      transition: transform .15s; flex-shrink: 0;
    }
    .subnav-col__item:hover .subnav-col__link { color: var(--green); }
    .subnav-col__item:hover .subnav-col__link svg { transform: rotate(180deg); }

    .subnav-dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 4px); left: 0;
      min-width: 200px;
      background: var(--white);
      border: 1px solid var(--border);
      border-top: 3px solid var(--green);
      box-shadow: 0 10px 32px rgba(0,0,0,.11);
      border-radius: 0 0 5px 5px;
      padding: 8px 0;
      z-index: 800;
      animation: dropFade .15s ease;
    }
    .subnav-col__item:hover .subnav-dropdown { display: block; }
    .subnav-dropdown__link {
      display: block;
      padding: 8px 18px;
      font-size: 13px;
      color: var(--text-mid);
      transition: background .12s, color .12s;
    }
    .subnav-dropdown__link:hover { background: var(--green-bg); color: var(--green); }

    /* ══════════════════════════════════════════════════════════
       HERO — full-width, content aligned to --max-w + --page-px
    ══════════════════════════════════════════════════════════ */
    .hero {
      background: #162d16;   /* full-width dark green bg — no side padding */
      position: relative;
    }

    /* No hero__box needed — hero IS the box, full width */
    .hero__box {
      position: relative;
      width: 100%;
      min-height: 560px;
      overflow: hidden;
    }

    .hero__slides { position: relative; width: 100%; }
    .hero__slide {
      display: none;
      position: relative;
      min-height: 560px;
      align-items: center;
    }
    .hero__slide.active { display: flex; }

    .hero__bg {
      position: absolute;
      inset: 0;
      background: #1a3320;
    }
    .hero__bg-img {
      position: absolute;
      right: 0; top: 0;
      width: 50%; height: 100%;
    }
    .hero__bg-img .img-placeholder {
      width: 100%; height: 100%;
      background: #264d2a;
    }
    .hero__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        90deg,
        #162d16 35%,
        rgba(22,45,22,.88) 52%,
        rgba(22,45,22,.05) 100%
      );
    }

    /* Content uses same max-width + padding as every other section */
    .hero__content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 100px var(--page-px);
    }
    .hero__tag {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: #81c784;
      margin-bottom: 18px;
    }
    .hero__title {
      font-family: var(--font-cond);
      font-size: clamp(36px, 4.5vw, 62px);
      font-weight: 700;
      line-height: 1.06;
      color: var(--white);
      max-width: 540px;
      margin-bottom: 20px;
    }
    .hero__subtitle {
      font-size: 15px;
      color: #b2dfb4;
      max-width: 400px;
      margin-bottom: 36px;
      line-height: 1.7;
    }
    .hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

    .hero__controls {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 16px;
      z-index: 10;
    }
    .hero__arrow {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,.15);
      border: 1px solid rgba(255,255,255,.35);
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s, border-color .2s;
    }
    .hero__arrow:hover { background: var(--green); border-color: var(--green); }
    .hero__arrow svg { width: 15px; height: 15px; stroke: white; fill: none; stroke-width: 2.5; }
    .hero__dots { display: flex; gap: 8px; align-items: center; }
    .hero__dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,.3);
      border: none;
      cursor: pointer;
      transition: background .2s, transform .2s;
    }
    .hero__dot.active { background: var(--green-light); transform: scale(1.35); }

    /* ══════════════════════════════════════════════════════════
       WHO WE ARE
    ══════════════════════════════════════════════════════════ */
    .who__intro {
      margin-bottom: 48px;
    }
    .who__intro p {
      font-size: 15px;
      color: var(--text-mid);
      max-width: 780px;
      line-height: 1.75;
    }
    .who__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
    }
    .who__card {
      background: var(--off-white);
      border-left: 4px solid var(--green);
      padding: 28px;
      border-radius: 0 6px 6px 0;
    }
    .who__card-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 12px;
    }
    .who__card-title {
      font-family: var(--font-cond);
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .who__card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
    .who__image {
      width: 100%; height: 220px;
      border-radius: 6px;
      overflow: hidden;
      margin-top: 24px;
    }
    .who__image .img-placeholder { height: 100%; }
    .who__cta { margin-top: 40px; }

    /* ══════════════════════════════════════════════════════════
       PRODUCT RANGE
    ══════════════════════════════════════════════════════════ */
    .products__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .product-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      transition: box-shadow .2s, border-color .2s, transform .2s;
      cursor: pointer;
    }
    .product-card:hover {
      box-shadow: 0 8px 28px rgba(0,0,0,.1);
      border-color: var(--green);
      transform: translateY(-3px);
    }
    .product-card__icon {
      width: 64px; height: 64px;
      border-radius: 8px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .product-card__icon .img-placeholder {
      height: 100%;
      font-size: 10px;
      background: var(--green-bg);
    }
    .product-card__body { flex: 1; }
    .product-card__name {
      font-family: var(--font-cond);
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 6px;
    }
    .product-card__link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 13px;
      font-weight: 600;
      color: var(--green);
      letter-spacing: .04em;
    }
    .product-card__link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

    /* ══════════════════════════════════════════════════════════
       CORE CAPABILITIES
    ══════════════════════════════════════════════════════════ */
    .capabilities__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .capability-card {
      border-radius: 8px;
      overflow: hidden;
      background: var(--white);
      border: 1px solid var(--border);
      transition: box-shadow .2s, transform .2s;
    }
    .capability-card:hover {
      box-shadow: 0 10px 32px rgba(0,0,0,.1);
      transform: translateY(-4px);
    }
    .capability-card__img {
      width: 100%; height: 200px;
      overflow: hidden;
    }
    .capability-card__img .img-placeholder { height: 100%; background: #c0d6c2; }
    .capability-card__body { padding: 24px; }
    .capability-card__title {
      font-family: var(--font-cond);
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .capability-card__desc {
      font-size: 13.5px;
      color: var(--text-light);
      line-height: 1.65;
      margin-bottom: 18px;
    }
    .capability-card__link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--green);
      border: 1.5px solid var(--green);
      border-radius: 3px;
      padding: 7px 14px;
      transition: background .2s, color .2s;
    }
    .capability-card__link:hover { background: var(--green); color: var(--white); }

    /* ══════════════════════════════════════════════════════════
       WHY CHOOSE ALIS
    ══════════════════════════════════════════════════════════ */
    .why { background: var(--off-white); }
    .why__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .why__images {
      position: relative;
      height: 380px;
    }
    .why__img-main {
      position: absolute;
      left: 0; top: 0;
      width: 75%; height: 75%;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 12px 40px rgba(0,0,0,.15);
    }
    .why__img-main .img-placeholder { height: 100%; background: #b8ceba; }
    .why__img-accent {
      position: absolute;
      right: 0; bottom: 0;
      width: 52%; height: 52%;
      border-radius: 8px;
      overflow: hidden;
      border: 4px solid var(--white);
      box-shadow: 0 8px 24px rgba(0,0,0,.12);
    }
    .why__img-accent .img-placeholder { height: 100%; background: #a8c4aa; }
    .why__content {}
    .why__list { margin: 24px 0 36px; display: flex; flex-direction: column; gap: 14px; }
    .why__item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15px;
      color: var(--text-mid);
    }
    .why__icon {
      width: 22px; height: 22px;
      border-radius: 50%;
      background: var(--green-bg);
      border: 2px solid var(--green);
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      margin-top: 1px;
    }
    .why__icon svg { width: 11px; height: 11px; stroke: var(--green); fill: none; stroke-width: 3; }

    /* ══════════════════════════════════════════════════════════
       KEY FIGURES
    ══════════════════════════════════════════════════════════ */
    .figures__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
    }
    .figure-item {
      background: var(--white);
      padding: 48px 40px;
      text-align: center;
    }
    .figure-item__value {
      font-family: var(--font-cond);
      font-size: 52px;
      font-weight: 700;
      color: var(--green);
      line-height: 1;
      margin-bottom: 10px;
    }
    .figure-item__label {
      font-size: 14px;
      color: var(--text-light);
      max-width: 180px;
      margin: 0 auto;
    }

    /* ══════════════════════════════════════════════════════════
       TESTIMONIALS
    ══════════════════════════════════════════════════════════ */
    .testimonials { background: var(--off-white); }
    .testimonials__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testimonial-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 28px;
      position: relative;
    }
    .testimonial-card__quote {
      font-size: 48px;
      line-height: 1;
      color: var(--green-light);
      opacity: .35;
      font-family: Georgia, serif;
      position: absolute;
      top: 16px; left: 24px;
    }
    .testimonial-card__text {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.75;
      margin-top: 28px;
      margin-bottom: 24px;
    }
    .testimonial-card__author { display: flex; align-items: center; gap: 14px; }
    .testimonial-card__avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
    }
    .testimonial-card__avatar .img-placeholder {
      height: 100%;
      background: #c0d6c2;
      font-size: 9px;
    }
    .testimonial-card__name {
      font-weight: 700;
      font-size: 14px;
    }
    .testimonial-card__role {
      font-size: 12px;
      color: var(--text-light);
    }

    /* ══════════════════════════════════════════════════════════
       BLOGS
    ══════════════════════════════════════════════════════════ */
    .blogs__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .blog-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      transition: box-shadow .2s, transform .2s;
      cursor: pointer;
    }
    .blog-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); transform: translateY(-3px); }
    .blog-card__img {
      width: 100%; height: 200px;
      overflow: hidden;
    }
    .blog-card__img .img-placeholder { height: 100%; background: #bacebc; }
    .blog-card__body { padding: 22px; }
    .blog-card__date {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 10px;
    }
    .blog-card__title {
      font-family: var(--font-cond);
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 10px;
      line-height: 1.35;
    }
    .blog-card__excerpt {
      font-size: 13.5px;
      color: var(--text-light);
      line-height: 1.65;
    }

    /* ══════════════════════════════════════════════════════════
       CTA BANNER
    ══════════════════════════════════════════════════════════ */
    .cta-banner {
      background: var(--green);
      padding: 64px 24px;
      text-align: center;
    }
    .cta-banner__title {
      font-family: var(--font-cond);
      font-size: 34px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 10px;
    }
    .cta-banner__sub {
      font-size: 15px;
      color: rgba(255,255,255,.8);
      margin-bottom: 28px;
      max-width: 480px;
      margin-left: auto; margin-right: auto;
    }

    /* ══════════════════════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════════════════════ */
    .footer {
      background: #111;
      color: #ccc;
      padding: 60px 0 0;
    }
    .footer__inner {
      display: grid;
      grid-template-columns: 2fr 1fr 1.4fr 1fr;
      gap: 48px;
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 var(--page-px) 48px;
    }
    .footer__brand {}
    .footer__logo-main {
      font-family: var(--font-cond);
      font-size: 28px;
      font-weight: 700;
      color: var(--green-light);
      letter-spacing: .06em;
    }
    .footer__logo-sub {
      font-size: 10px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: #7aab7c;
      margin-bottom: 16px;
    }
    .footer__tagline {
      font-size: 13px;
      color: #888;
      line-height: 1.7;
      max-width: 240px;
      margin-bottom: 24px;
    }
    .footer__social { display: flex; gap: 10px; }
    .footer__social-link {
      width: 34px; height: 34px;
      border-radius: 4px;
      background: #222;
      border: 1px solid #333;
      display: flex; align-items: center; justify-content: center;
      font-size: 13px;
      font-weight: 700;
      color: #999;
      transition: background .2s, color .2s, border-color .2s;
    }
    .footer__social-link:hover { background: var(--green); color: white; border-color: var(--green); }
    .footer__col-title {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--green);
      display: inline-block;
    }
    .footer__links { display: flex; flex-direction: column; gap: 9px; }
    .footer__link {
      font-size: 13.5px;
      color: #888;
      transition: color .15s;
      display: flex; align-items: center; gap: 6px;
    }
    .footer__link:hover { color: var(--white); }
    .footer__link svg { width: 13px; height: 13px; stroke: var(--green); fill: none; stroke-width: 2; flex-shrink: 0; }
    .footer__bottom {
      border-top: 1px solid #222;
      padding: 18px var(--page-px);
      max-width: var(--max-w);
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: #555;
    }

    /* ══════════════════════════════════════════════════════════
       RESPONSIVE (basic)
    ══════════════════════════════════════════════════════════ */
    /* ══════════════════════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════════════════════ */
    @media (max-width: 1200px) {
      :root { --page-px: 28px; }
      .primary-nav__link { padding: 0 11px; font-size: 11.5px; letter-spacing: .05em; }
    }
    @media (max-width: 960px) {
      .header-row2 { display: none; }
      .primary-nav__link { padding: 0 9px; font-size: 11px; }
    }
    @media (max-width: 900px) {
      .products__grid,
      .capabilities__grid,
      .testimonials__grid,
      .blogs__grid { grid-template-columns: 1fr 1fr; }
      .why__inner, .who__grid, .figures__grid { grid-template-columns: 1fr; }
      .footer__inner { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 700px) {
      :root { --page-px: 16px; }
      .primary-nav { display: none; }
      .products__grid,
      .capabilities__grid,
      .testimonials__grid,
      .blogs__grid { grid-template-columns: 1fr; }
      .footer__inner { grid-template-columns: 1fr; }
      .hero__title { font-size: 30px; }
    }
  </style>