:root {
  --green: #10c843;
  --green-dark: #07852d;
  --green-soft: #e9fff0;
  --blue: #0d6efd;
  --blue-dark: #0a58ca;
  --blue-soft: #e8f1ff;
  --teal: #0891b2;
  --ink: #07150d;
  --muted: #667168;
  --white: #ffffff;
  --dark: #0b1120;
  --line: #dfe9e2;
  --shadow: 0 22px 60px rgba(7, 21, 13, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 96px 0; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.section-heading { margin-bottom: 42px; }
.section-heading h2,
.quote-band h2,
.contact h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border: 2px solid transparent;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--green), var(--blue-dark)); color: var(--white); border-color: transparent; }
.btn-primary:hover { background: linear-gradient(135deg, var(--green-dark), var(--blue)); border-color: transparent; }
.btn-outline { color: var(--white); border-color: rgba(255,255,255,.9); background: rgba(255,255,255,.08); }
.btn-outline:hover { background: var(--white); color: var(--green-dark); }

/* ── HEADER ── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  color: var(--ink);
}
.main-nav {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(7, 21, 13, .08);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled .main-nav {
  background: var(--white);
  box-shadow: 0 16px 40px rgba(7, 21, 13, .16);
  color: var(--ink);
}
.site-header.is-scrolled .brand { background: transparent; }
.nav-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
}

/* Brand composite */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.brand-symbol {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  color: var(--ink);
}
.brand-name {
  font-family: 'Arial Black', Arial, sans-serif;
  font-weight: 900;
  font-size: 13.5px;
  color: inherit;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.brand-sub {
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: inherit;
  letter-spacing: 0.2px;
}
.brand--footer .brand-text { color: var(--white); }
.brand--footer { margin-bottom: 18px; }

.menu {
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 800;
}
.menu > li { position: relative; }
.menu > li > a,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
}
.dropdown-toggle {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
}
.has-dropdown > .dropdown-toggle::after {
  content: "";
  width: 7px; height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 230px;
  padding: 12px 0;
  margin: 0;
  list-style: none;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: .2s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 22px;
  color: var(--muted);
}
.dropdown a:hover { color: var(--green-dark); background: var(--green-soft); }
.nav-social, .footer-social {
  display: flex;
  align-items: center;
  gap: 9px;
}
.nav-social a, .footer-social a {
  width: 24px; height: 24px;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 0;
  transition: .2s ease;
}
.nav-social a:hover, .footer-social a:hover { transform: translateY(-2px) scale(1.08); }
.nav-social svg, .footer-social svg { width: 19px; height: 19px; fill: currentColor; }
.social-x { color: #000000 !important; }
.social-linkedin { color: #0a66c2 !important; }
.social-facebook { color: #1877f2 !important; }
.social-instagram { color: #e4405f !important; }
.nav-quote {
  min-height: 48px !important;
  padding: 0 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--blue-dark));
}
.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  border: 0;
  background: var(--green);
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  margin: 5px auto;
  background: var(--white);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 790px;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-carousel, .hero-slide { position: absolute; inset: 0; }
.hero-slide {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1s ease, transform 5.8s ease;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(4,14,8,.82) 0%, rgba(4,14,8,.55) 45%, rgba(4,14,8,.10) 100%);
}
.hero-slide img, .hero-slide picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%; height: 100%;
}
.hero-slide img {
  object-fit: cover;
  filter: saturate(1.24) brightness(1.08);
}
.hero-slide.is-active { opacity: 1; transform: scale(1.07); }
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  max-width: 1180px;
}
.hero h1 {
  max-width: 760px;
  margin: 0 0 20px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: .98;
  font-weight: 900;
}
.hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 34px;
  font-size: clamp(18px, 2.4vw, 25px);
  color: rgba(255,255,255,.9);
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin-top: 54px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(10px);
}
.hero-metrics div {
  padding: 18px;
  background: rgba(4,14,8,.32);
}
.hero-metrics strong {
  display: block;
  color: var(--green);
  font-size: 24px;
  line-height: 1;
}
.hero-metrics div:nth-child(2) strong { color: #38bdf8; }
.hero-metrics span {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,.84);
  font-size: 13px;
  font-weight: 800;
}
.hero-dots {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 46px;
  z-index: 2;
  display: flex;
  gap: 10px;
}
.hero-dots button {
  width: 34px; height: 4px;
  border: 0;
  background: rgba(255,255,255,.45);
  cursor: pointer;
}
.hero-dots button.is-active { background: var(--green); }

/* ── SERVICES ── */
.services { background: var(--white); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(7,21,13,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16,200,67,.45);
  box-shadow: var(--shadow);
}
.service-card:nth-child(even):hover { border-color: rgba(13,110,253,.4); }
.service-media {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #edf5ef;
}
.service-media::after {
  content: "";
  position: absolute;
  inset: auto 18px 16px auto;
  width: 48px; height: 5px;
  background: var(--green);
  box-shadow: -58px 0 0 rgba(255,255,255,.88), -116px 0 0 rgba(255,255,255,.54);
}
.service-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.28) brightness(1.08);
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .75s ease, transform 4s ease;
}
.service-media img.is-active { opacity: 1; transform: scale(1.08); }
.service-card__body { padding: 28px; }
.icon {
  display: inline-grid;
  place-items: center;
  width: 54px; height: 54px;
  margin-bottom: 18px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 25px;
  font-weight: 900;
}
.service-card:nth-child(even) .icon { background: var(--blue-soft); color: var(--blue-dark); }
.service-card h3 { margin: 0 0 12px; font-size: 22px; line-height: 1.25; }
.service-card p { margin: 0 0 18px; color: var(--muted); }
.service-card a { color: var(--green-dark); font-weight: 900; }
.service-tagline {
  margin: 0 0 14px;
  font-style: italic;
  font-weight: 700;
  color: var(--green-dark);
  font-size: 14px;
}
.service-points {
  margin: 0 0 18px;
  padding: 0 0 0 18px;
  list-style: disc;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.service-points li { margin-bottom: 6px; }
.service-point-icon {
  color: var(--green-dark);
  font-weight: 900;
  margin-right: 4px;
}

/* ── QUOTE BAND ── */
.quote-band {
  padding: 76px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11,17,32,.94), rgba(7,21,13,.70)),
    url("assets/images/quote-background.webp") center/cover no-repeat;
}
.quote-band__inner {
  display: grid;
  grid-template-columns: 1fr 360px auto;
  align-items: center;
  gap: 28px;
}
.quote-band h2 { max-width: 720px; }
.quote-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quote-gallery img {
  width: 100%;
  aspect-ratio: 1 / .78;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.82);
  filter: saturate(1.35) brightness(1.08);
}

/* ── LATEST PROJECTS ── */
.latest-projects { background: #f0f6ff; }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}
.projects-grid .project-card {
  grid-column: span 2;
}
.projects-grid .project-card--half-row {
  grid-column: span 3;
}
.project-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(7,21,13,.07);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.project-card:hover {
  transform: translateY(-7px);
  border-color: rgba(16,200,67,.45);
  box-shadow: var(--shadow);
}
.project-media { position: relative; height: 240px; overflow: hidden; }
.project-media picture, .project-media img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.15) brightness(1.05);
  transition: transform .5s ease;
}
.project-card:hover .project-media img { transform: scale(1.05); }
.project-tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 12px;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.project-card__body { padding: 22px 24px 26px; }
.project-card__body h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.25;
  color: var(--ink);
  position: relative;
  padding-bottom: 10px;
}
.project-card__body h3::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 36px; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}
.project-card__body p { margin: 0 0 12px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.project-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.project-meta::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
}

/* ── CONTACT ── */
.contact { background: #f0f6ff; }
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 44px;
}
.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 16px 18px;
  font: inherit;
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}
.form-status {
  margin: 0;
  min-height: 24px;
  font-weight: 700;
  color: var(--muted);
}
.form-status.is-success { color: var(--green-dark); }
.form-status.is-error { color: #b42318; }
.contact-panel {
  padding: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.contact-panel h3 { margin-top: 0; font-size: 26px; }
.contact-panel p { margin: 0 0 22px; color: var(--muted); }
.contact-panel strong { color: var(--ink); }

/* ── FOOTER ── */
.site-footer {
  background: #0b1120;
  color: rgba(255,255,255,.78);
}
.footer-grid {
  padding: 70px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
}
.footer-grid h3 { color: var(--white); margin: 0 0 20px; font-size: 21px; }
.footer-grid a { display: block; margin-bottom: 12px; color: rgba(255,255,255,.76); }
.footer-grid a:hover { color: var(--green); }
.footer-social { margin-top: 24px; }
.footer-social a { color: rgba(255,255,255,.7); }
.footer-social a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 16px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.72);
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 80px 0;
  background: #f0f6ff;
}
.error-page__inner {
  max-width: 680px;
}
.error-page h1 {
  margin: 28px 0 12px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1;
}
.error-page p:not(.eyebrow) {
  margin: 0 0 28px;
  color: var(--muted);
}

/* ── ABOUT ── */
.about { background: var(--white); }
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.about-intro__text h2 {
  margin: 0 0 20px;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
}
.about-intro__text > p { margin: 0 0 28px; color: var(--muted); font-size: 16px; }
.about-highlights { list-style: none; margin: 0 0 34px; padding: 0; display: grid; gap: 12px; }
.about-highlights li { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--ink); }
.about-check {
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  background: var(--green);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}
.about-highlights li:nth-child(even) .about-check { background: var(--blue); }
.about-intro__visual { position: relative; }
.about-intro__visual img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  filter: saturate(1.2) brightness(1.06);
}

.mission-values {
  margin-bottom: 80px;
  padding: 48px;
  background: #f7fbf8;
  border: 1px solid var(--line);
}
.mission-values .section-heading { margin-bottom: 28px; }
.mission-values .section-heading h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.18;
}
.mission-values__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.mission-values__grid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(7,21,13,.05);
}
.mission-values__grid h4 {
  margin: 0 0 12px;
  font-size: 22px;
}
.mission-values__grid p,
.mission-values__grid ul {
  margin: 0;
  color: var(--muted);
}
.mission-values__grid ul { padding-left: 20px; }
.mission-values__grid li + li { margin-top: 10px; }
.about-exp-badge {
  position: absolute;
  bottom: -24px; left: -24px;
  z-index: 2;
  width: 130px; height: 130px;
  background: var(--green);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  box-shadow: 0 12px 32px rgba(16,200,67,.35);
}
.about-exp-badge strong { font-size: 52px; font-weight: 900; line-height: 1; }
.about-exp-badge span { font-size: 12px; font-weight: 800; text-transform: uppercase; line-height: 1.3; margin-top: 4px; }
.about-exp-badge--tagline {
  width: min(280px, 72%);
  height: auto;
  min-height: 130px;
  padding: 18px 16px;
}
.about-exp-badge--tagline span {
  font-size: 13px;
  font-weight: 800;
  text-transform: none;
  letter-spacing: .01em;
  line-height: 1.35;
  margin-top: 0;
}

.about-testimonials {
  margin-bottom: 80px;
  padding: 56px;
  background: #f7fbf8;
  border: 1px solid var(--line);
}
.about-testimonials__heading { margin-bottom: 36px; text-align: center; }
.about-testimonials__heading h3 { margin: 0; font-size: clamp(24px, 3vw, 36px); line-height: 1.2; }
.testimonial-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px 36px;
  align-items: end;
  max-width: 920px;
  margin: 0 auto;
}
.testimonial-quote {
  margin: 0;
  grid-column: 1 / -1;
  padding: 0;
  border: none;
}
.testimonial-quote::before {
  content: "\201C";
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
}
.testimonial-text {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-initials {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green), var(--blue-dark));
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}
.testimonial-person h3 { margin: 0 0 4px; font-size: 18px; }
.testimonial-role { margin: 0; font-size: 13px; color: var(--muted); font-weight: 700; }
.testimonial-controls {
  display: flex;
  gap: 10px;
}
.testimonial-controls button {
  width: 44px;
  height: 44px;
  border: 2px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.testimonial-controls button:hover {
  border-color: var(--green);
  color: var(--green-dark);
  background: var(--green-soft);
}

.about-network {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  margin-bottom: 80px;
  padding: 56px;
  background: #f7fbf8;
  border: 1px solid var(--line);
}
.about-network__text h3 { margin: 0 0 18px; font-size: clamp(24px, 3vw, 36px); line-height: 1.2; }
.about-network__text p { margin: 0 0 28px; color: var(--muted); }
.about-network__map { height: 340px; overflow: hidden; border: 3px solid var(--green); }

.about-team-teaser { margin-bottom: 80px; }
.about-team-teaser .section-heading h3 { margin: 0 0 12px; font-size: clamp(24px, 3vw, 38px); }
.about-team-teaser .section-heading p { margin: 0; color: var(--muted); max-width: 680px; }
.about-team-photo {
  margin-top: 36px;
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  border-left: 6px solid var(--green);
}
.about-team-photo picture,
.about-team-photo img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.1) brightness(1.04);
}

.about-brands { text-align: center; }
.about-brands h3 { margin: 0 0 40px; font-size: clamp(22px, 2.8vw, 34px); }
.about-brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 100px;
  padding: 18px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(7,21,13,.05);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  text-align: center;
}
.about-brand-item:hover {
  transform: translateY(-4px);
  border-color: rgba(16,200,67,.5);
  box-shadow: 0 14px 36px rgba(7,21,13,.12);
}
.about-brand-item img {
  width: 100%;
  max-width: 140px;
  height: 56px;
  object-fit: contain;
  transition: opacity .2s ease, transform .2s ease;
  opacity: .88;
}
.about-brand-item:hover img { opacity: 1; transform: scale(1.03); }
.about-brand-item picture { display: flex; align-items: center; justify-content: center; width: 100%; }

/* ── CLIENTS ── */
.about-clients {
  margin-bottom: 80px;
}
.about-clients .section-heading h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 38px);
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 42px;
}
.client-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px 24px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(7,21,13,.06);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.client-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13,110,253,.35);
  box-shadow: 0 18px 40px rgba(13,110,253,.12);
}
.client-card img { width: 100%; max-width: 140px; height: 60px; object-fit: contain; }
.client-card h4 { margin: 0; font-size: 16px; color: var(--ink); }
.client-card p  { margin: 0; font-size: 13px; color: var(--muted); }

/* ── SECTION HEADING UNDERLINE ── */
.section-heading h2 {
  position: relative;
  padding-bottom: 16px;
}
.section-heading h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 52px; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  border-radius: 2px;
}

/* ── TEAM PHOTO ── */
/* (already defined above) */

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .menu {
    position: absolute;
    top: 86px;
    left: 16px; right: 16px;
    display: none;
    padding: 18px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
    z-index: 200;
  }
  .menu.is-open { display: block; }
  .menu > li > a,
  .dropdown-toggle { width: 100%; min-height: 42px; justify-content: space-between; }
  .dropdown {
    position: static;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    width: auto;
    padding: 0 0 8px 16px;
  }
  .has-dropdown.is-open .dropdown { display: block; }
  .has-dropdown > .dropdown-toggle[aria-expanded="true"]::after { transform: rotate(225deg) translateY(-2px); }
  .nav-social { padding-top: 12px; border-top: 1px solid var(--line); }
  .service-grid,
  .testimonial-layout,
  .contact-layout,
  .quote-band__inner,
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid .project-card,
  .projects-grid .project-card--half-row { grid-column: auto; }
  .about-intro { grid-template-columns: 1fr; gap: 36px; }
  .mission-values__grid { grid-template-columns: 1fr; }
  .about-testimonials { padding: 36px; margin-bottom: 52px; }
  .testimonial-layout { grid-template-columns: 1fr; }
  .testimonial-controls { justify-content: flex-end; }
  .about-brands-grid { grid-template-columns: repeat(3, 1fr); }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .about-exp-badge { left: 0; bottom: -20px; width: 110px; height: 110px; }
  .about-exp-badge--tagline { width: min(240px, 80%); min-height: 110px; }
  .about-exp-badge strong { font-size: 42px; }
}

@media (max-width: 680px) {
  .nav-inner { min-height: 78px; }
  .brand { max-width: 220px; }
  .brand-symbol { width: 36px; height: 36px; }
  .brand-name { font-size: 11.5px; }
  .brand-sub { font-size: 10px; }
  .menu { top: 78px; }
  .hero { min-height: 760px; }
  .hero__content { padding-top: 90px; padding-bottom: 72px; }
  .hero h1 { font-size: 44px; }
  .hero-metrics { grid-template-columns: 1fr; margin-top: 34px; }
  .hero-dots { left: 16px; right: auto; bottom: 30px; }
  .section { padding: 70px 0; }
  .service-grid,
  .projects-grid,
  .contact-layout,
  .footer-grid,
  .quote-band__inner { grid-template-columns: 1fr; }
  .about-intro { margin-bottom: 52px; }
  .about-testimonials { margin-bottom: 52px; }
  .about-team-teaser { margin-bottom: 52px; }
  .about-brands-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: 1fr; }
  .about-intro__visual img { height: 300px; }
  .about-exp-badge { position: static; margin-top: 16px; width: 100%; height: auto; padding: 18px; flex-direction: row; gap: 14px; }
  .about-exp-badge--tagline { width: 100%; min-height: auto; }
  .about-exp-badge--tagline span { font-size: 14px; }
  .about-exp-badge strong { font-size: 36px; }
  .about-team-photo, .about-team-photo img { max-height: 300px; height: 300px; }
  .contact-panel { padding: 26px; }
  .mission-values { padding: 28px 20px; margin-bottom: 52px; }
  .mission-values__grid article { padding: 22px; }
}
