/* ==========================================================================
   ANBI CONSULTING — MAIN STYLESHEET
   Organized by section. Find a section's styles by searching its comment
   banner (e.g. "NAVBAR", "HERO", "SERVICES") — each matches a file in
   /components.

   Design direction: professional / corporate / international / premium.
   Color system: blue (Primary) + sage green (Secondary) + warm gold
   (Accent, used sparingly for CTAs/highlights) + charcoal text on a warm
   off-white background. No gradients used to excess, no glassmorphism,
   no decorative blobs — whitespace, type and alignment carry the design.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --navy-deep: #173A73;   /* Primary — Blue (deep) */
  --navy: #2449A8;        /* Primary — Blue (bright, for gradient endpoints) */
  --navy-darker: #10294F; /* used for deepest overlays / hover states */
  --sage: #6B8F7A;        /* Secondary — Sage Green */
  --soft-sage: #E7EEE9;   /* light sage tint for icon backgrounds etc. */
  --gold: #C9A463;        /* Accent — Warm Gold, replaces old bright yellow */
  --gold-dark: #B38C4E;   /* hover state for gold buttons */
  --charcoal: #1F2933;    /* Text — Dark */
  --warm-white: #F5F3EE;  /* Background — Off-White */
  --white: #FFFFFF;
  --soft-blue: #E7ECF7;
  --body: #3A4450;        /* Body Text (slightly warmed toward charcoal) */
  --slate: #6B6156;       /* Muted Text (warm gray, matches off-white bg) */
  --border: #E7E2D9;      /* warmed border to match off-white background */
  --maxw: 1160px;
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--body);
  background: var(--warm-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.18;
  letter-spacing: -0.01em;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}
.eyebrow-on-navy { color: var(--gold); }

/* ---------- Buttons (shared) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 30px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  border-radius: 8px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
  white-space: nowrap;
}
.btn-accent { background: var(--gold); color: var(--navy-deep); }
.btn-accent:hover { background: var(--gold-dark); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-outline-navy { background: transparent; color: var(--navy-deep); border-color: var(--navy-deep); }
.btn-outline-navy:hover { background: var(--navy-deep); color: #fff; }

/* ---------- Section rhythm ---------- */
section { padding: 104px 0; }

.head-row {
  display: flex; justify-content: flex-start; align-items: flex-end;
  gap: 56px; margin-bottom: 60px; flex-wrap: wrap;
}
.head-row h2 { font-size: 36px; max-width: 560px; }
.head-row p { color: var(--slate); font-size: 16px; max-width: 340px; padding-bottom: 2px; }

/* ---------- NAVBAR (components/navbar.html) ---------- */
header.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 1px 0 rgba(16,41,79,0.06);
  transition: box-shadow .25s ease;
}
header.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(16,41,79,0.08);
}
.navbar-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; column-gap: 24px;
  height: 78px;
}
.navbar-logo { grid-column: 1; display: flex; align-items: center; height: 100%; justify-self: start; }
.navbar-logo img { height: 46px; width: auto; }
nav.nav-links { grid-column: 2; display: flex; gap: 34px; align-items: center; }
nav.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--navy-deep);
  position: relative; padding: 6px 0;
}
nav.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--navy); transition: width .25s ease;
}
nav.nav-links a:hover { color: var(--navy); }
nav.nav-links a:hover::after { width: 100%; }
nav.nav-links a.active { color: var(--navy); }
nav.nav-links a.active::after { width: 100%; }
.navbar-actions { grid-column: 3; display: flex; align-items: center; gap: 26px; justify-self: end; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy-deep); margin: 5px 0; transition: .25s; }

/* ---------- HERO (components/hero.html) ---------- */
.hero {
  position: relative; min-height: 620px; display: flex; align-items: center;
  background: var(--navy-darker);
  overflow: hidden;
  padding-top: 78px;
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(16,41,79,0.95) 0%, rgba(23,58,115,0.82) 45%, rgba(107,143,122,0.5) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; padding: 96px 32px; max-width: var(--maxw); margin: 0 auto; text-align: left; }
.hero-eyebrow {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}
.hero-content h1 { color: var(--white); font-size: 52px; max-width: 720px; margin-bottom: 22px; }
.hero-sub { color: rgba(255,255,255,0.82); font-size: 17px; max-width: 540px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- ABOUT (components/about.html) ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 0.92fr; gap: 80px; align-items: stretch; }
.about-text h2 { font-size: 34px; margin-bottom: 22px; max-width: 520px; }
.about-text > p.lead { color: var(--slate); font-size: 17px; margin-bottom: 44px; max-width: 520px; }
.about-list { border-top: 1px solid var(--border); }
.about-item { display: grid; grid-template-columns: 170px 1fr; gap: 28px; padding: 26px 0; border-bottom: 1px solid var(--border); }
.about-item h4 { font-size: 16px; font-weight: 600; color: var(--navy-deep); }
.about-item p { color: var(--slate); font-size: 15px; }
.about-photo {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(16,41,79,0.12);
  min-height: 380px;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- SERVICES (components/services.html) ---------- */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 34px 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(16,41,79,0.08);
  border-color: transparent;
}
.service-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%); color: var(--white);
  margin-bottom: 22px;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h4 { font-size: 17px; font-weight: 600; color: var(--navy-deep); }
.services-actions { margin-top: 48px; text-align: center; }

/* ---------- CTA BLOCKS (components/cta-mid.html, cta-final.html) ---------- */
.action-block { background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%); color: var(--white); padding: 100px 0; }
.action-block-inner { text-align: center; }
.action-block h2 { color: var(--white); font-size: 36px; margin-bottom: 16px; }
.action-block p { color: rgba(255,255,255,0.75); font-size: 17px; max-width: 480px; margin: 0 auto 36px; }

/* ---------- CLIENTS (components/clients.html) ---------- */
.clients-section { background: var(--warm-white); }
.clients-head { max-width: 640px; margin-bottom: 52px; }
.clients-head h2 { font-size: 32px; }
.client-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.client-item {
  display: flex; align-items: center; gap: 12px;
  padding: 28px 30px; background: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 16px; color: var(--navy-deep);
  transition: background .2s ease;
}
.client-item:hover { background: var(--soft-blue); }
.client-item::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; flex: 0 0 auto;
  background: var(--gold);
}

/*logo berjalan*/

.client-logos-label {

  text-align: center;
  color: var(--slate);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 56px;
  margin-bottom: 28px;

}

.client-logos-marquee {

  width: 100%;
  overflow: hidden;

  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );

  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );

}

.client-logos-track {

  display: flex;
  align-items: center;
  width: max-content;

  will-change: transform;

  animation: client-logo-scroll 30s linear infinite;

}


/* Setiap kumpulan logo memiliki lebar yang sama */
.client-logos-set {

  display: flex;
  align-items: center;
  gap: 72px;

  padding-right: 72px;

  flex-shrink: 0;

}


.client-logos-marquee:hover .client-logos-track {
  animation-play-state: paused;
}


.client-logo-item {

  flex: 0 0 auto;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

}


.client-logo-item img {

  height: 100%;
  width: auto;
  display: block;

  filter: grayscale(100%);
  opacity: 0.5;

  transition:
    filter 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;

}


.client-logo-item:hover img {

  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.04);

}


/* ---------- SEAMLESS INFINITE LOOP ---------- */

@keyframes client-logo-scroll {

  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-33.333333%, 0, 0);
  }

}


/* ---------- REDUCED MOTION ---------- */

@media (prefers-reduced-motion: reduce) {

  .client-logos-track {

    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;

  }

  .client-logos-marquee {

    mask-image: none;
    -webkit-mask-image: none;

  }

}


/* ---------- TABLET ---------- */

@media (max-width: 768px) {

  .client-logos-label {

    margin-top: 42px;
    margin-bottom: 24px;

  }

  .client-logos-set {

    gap: 48px;
    padding-right: 48px;

  }

  .client-logo-item {

    height: 30px;

  }

  .client-logos-track {

    animation-duration: 24s;

  }

}


/* ---------- MOBILE ---------- */

@media (max-width: 480px) {

  .client-logos-label {

    font-size: 11px;
    margin-top: 36px;
    margin-bottom: 20px;

  }

  .client-logos-set {

    gap: 36px;
    padding-right: 36px;

  }

  .client-logo-item {

    height: 26px;

  }

  .client-logos-track {

    animation-duration: 20s;

  }

}

/* ---------- WHY ANBI (components/why-anbi.html) ---------- */
.why-section { background: var(--white); }
.why-grid-2col { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: start; }
.why-intro { position: sticky; top: 130px; }
.why-intro h2 { font-size: 32px; margin-bottom: 16px; }
.why-intro .lead { color: var(--slate); font-size: 16px; max-width: 380px; }
.why-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 36px; }
.check-item { display: flex; gap: 14px; align-items: flex-start; }
.check-icon {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  background: var(--soft-sage); color: var(--sage);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; margin-top: 2px;
}
.check-item h4 { font-size: 15.5px; margin-bottom: 4px; color: var(--navy-deep); }
.check-item p { color: var(--slate); font-size: 14px; }

/* ---------- WORKFLOW (components/workflow.html) ---------- */
.workflow-section { background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%); color: var(--white); }
.workflow-section .head-row h2 { color: var(--white); }
.workflow-section .head-row p { color: rgba(255,255,255,0.68); }
.workflow-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.workflow-step { padding: 0 30px; border-left: 1px solid rgba(255,255,255,0.2); }
.workflow-step:first-child { border-left: none; padding-left: 0; }
.workflow-step:last-child { padding-right: 0; }
.workflow-step .num {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 32px;
  color: var(--gold); display: block; margin-bottom: 18px;
}
.workflow-step h4 { color: var(--white); font-size: 17px; margin-bottom: 10px; }
.workflow-step p { color: rgba(255,255,255,0.68); font-size: 14.5px; }

/* ---------- LEGALITY (components/legality.html) ---------- */
.legal-section { background: var(--warm-white); }
.legal-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; }
.legal-heading h2 { font-size: 34px; margin-bottom: 18px; max-width: 420px; }
.legal-heading p { color: var(--slate); font-size: 16px; max-width: 400px; margin-bottom: 32px; }
.legal-action { margin-top: 4px; }
.legal-list { border-top: 1px solid var(--border); }
.legal-row { display: grid; grid-template-columns: 30px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.legal-row .num { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--navy); font-size: 14px; }
.legal-row h4 { font-size: 16px; margin-bottom: 5px; color: var(--navy-deep); }
.legal-row p { color: var(--slate); font-size: 14.5px; }

/* ---------- FOOTER (components/footer.html) ---------- */
.footer { position: relative; color: var(--white); padding: 96px 0 36px; overflow: hidden; }
.footer-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.footer-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(16,41,79,0.35) 0%, rgba(107,143,122,0.4) 45%, rgba(16,41,79,0.9) 100%); }
.footer-inner { position: relative; z-index: 2; }
.footer-top { display: grid; grid-template-columns: 1.4fr 0.85fr 0.85fr 1fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.16); }
.footer-brand img { height: 52px; width: auto; margin-bottom: 22px; }
.footer-brand p { color: rgba(255,255,255,0.66); font-size: 14.5px; max-width: 300px; }
.footer-col h5 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.04em; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,0.7); font-size: 14.5px; margin-bottom: 12px; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 13.5px; }

/* ---------- WHATSAPP FLOATING BUTTON (components/whatsapp-button.html) ---------- */
.whatsapp-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  display: flex; align-items: center; gap: 10px;
  background: #1EBE57;
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 10px 24px rgba(16,41,79,0.3);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-fab:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(16,41,79,0.34); }
.whatsapp-fab-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: #fff;
  padding-left: 16px;
  white-space: nowrap;
}
.whatsapp-fab-icon {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
}
.whatsapp-fab-icon svg { width: 48px; height: 48px; }

/* ---------- Scroll reveal (used across components) ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

a:focus-visible, button:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }

/* ---------- BLOG LISTING (templates/blog-list.template.html) ---------- */
.blog-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 168px 0 88px;
  text-align: left;
}
.blog-hero h1 { color: var(--white); font-size: 42px; max-width: 640px; margin-bottom: 16px; }
.blog-hero-sub { color: rgba(255,255,255,0.78); font-size: 17px; max-width: 540px; }

.blog-list-section { background: var(--warm-white); padding: 88px 0; }
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.blog-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(16,41,79,0.1);
  border-color: transparent;
}
.blog-card-img { aspect-ratio: 16 / 10; background: var(--soft-blue); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px 26px 28px; }
.blog-card-date {
  display: block; font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 10px;
}
.blog-card-body h3 { font-size: 19px; margin-bottom: 10px; color: var(--navy-deep); }
.blog-card-body p { color: var(--slate); font-size: 14.5px; margin-bottom: 18px; }
.blog-card-link { font-size: 14px; font-weight: 600; color: var(--navy); }

/* ---------- BLOG POST (templates/blog-post.template.html) ---------- */
.blog-post { background: var(--warm-white); padding-top: 78px; padding-bottom: 100px; }
.blog-post-head { padding-top: 56px; padding-bottom: 36px; max-width: 760px; }
.blog-back { display: inline-block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 22px; }
.blog-post-meta { color: var(--slate); font-size: 14px; margin-bottom: 14px; }
.blog-post-head h1 { font-size: 38px; color: var(--navy-deep); }

.blog-post-cover {
  max-width: var(--maxw); margin: 0 auto 48px; padding: 0 32px;
}
.blog-post-cover img {
  width: 100%; max-height: 460px; object-fit: cover; border-radius: 14px;
  box-shadow: 0 24px 48px rgba(16,41,79,0.12);
}

.blog-post-body { max-width: 760px; padding-bottom: 8px; color: var(--body); font-size: 17px; }
.blog-post-body p { margin-bottom: 22px; }
.blog-post-body h2 { font-size: 26px; margin: 40px 0 16px; color: var(--navy-deep); }
.blog-post-body h3 { font-size: 21px; margin: 32px 0 14px; color: var(--navy-deep); }
.blog-post-body ul, .blog-post-body ol { margin: 0 0 22px 22px; }
.blog-post-body li { margin-bottom: 8px; }
.blog-post-body a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.blog-post-body img { border-radius: 10px; margin: 8px 0 22px; }
.blog-post-body blockquote {
  border-left: 3px solid var(--gold); padding: 4px 0 4px 20px;
  color: var(--slate); font-style: italic; margin: 0 0 22px;
}

.blog-post-cta {
  max-width: 760px; margin: 24px 0 0; padding: 44px 40px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-radius: 16px; text-align: left;
}
.blog-post-cta h2 { color: var(--white); font-size: 24px; margin-bottom: 10px; }
.blog-post-cta p { color: rgba(255,255,255,0.78); font-size: 15.5px; margin-bottom: 24px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  section { padding: 72px 0; }
  nav.nav-links {
    position: fixed; top: 78px; left: 0; right: 0; bottom: 0;
    background: var(--white); flex-direction: column; align-items: flex-start;
    padding: 36px 28px; gap: 26px;
    transform: translateX(100%); transition: transform .3s ease;
    z-index: 99;
  }
  nav.nav-links.open { transform: translateX(0); }
  nav.nav-links a { font-size: 20px; }
  .nav-toggle { display: block; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-photo { order: -1; min-height: 280px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid-2col { grid-template-columns: 1fr; gap: 36px; }
  .why-intro { position: static; }
  .why-checklist { grid-template-columns: 1fr; }
  .workflow-steps { grid-template-columns: 1fr 1fr; row-gap: 40px; column-gap: 28px; }
  .workflow-step { border-left: none !important; padding-left: 0 !important; padding-right: 0 !important; }
  .legal-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-content h1 { font-size: 40px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-hero { padding: 148px 0 64px; }
}
@media (max-width: 720px) {
  .client-logos-track { gap: 44px; animation-duration: 22s; }
  .client-logo-item { height: 26px; }
  .wrap { padding: 0 22px; }
  nav.nav-links { top: 68px; }
  .navbar-inner { padding: 0 22px; height: 68px; }
  .navbar-logo img { height: 36px; }
  .hero { padding-top: 68px; min-height: 600px; }
  .hero-content { padding: 64px 22px; }
  .hero-content h1 { font-size: 30px; }
  .hero-sub { font-size: 15.5px; }
  .head-row h2 { font-size: 27px; }
  section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .client-grid { grid-template-columns: 1fr; }
  .workflow-steps { grid-template-columns: 1fr; row-gap: 36px; }
  .legal-grid { grid-template-columns: 1fr; }
  .action-block { padding: 72px 0; }
  .action-block h2 { font-size: 27px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer { padding: 72px 0 28px; }
  .whatsapp-fab { right: 16px; bottom: 16px; padding: 3px; }
  .whatsapp-fab-label { display: none; }
  .whatsapp-fab-icon { width: 46px; height: 46px; }
  .whatsapp-fab-icon svg { width: 46px; height: 46px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-hero { padding: 132px 0 52px; }
  .blog-hero h1 { font-size: 30px; }
  .blog-post-head h1 { font-size: 28px; }
  .blog-post-cover { padding: 0 22px; }
  .blog-post-cta { padding: 32px 26px; }
}
