:root{
  /* --- Light foundation --- */
  --bg:#f6f8fc;
  --bg-2:#eef3fb;

  --panel:#ffffff;
  --panel-2:#f3f6fd;

  --text:#0b1220;
  --muted:#4b5a73;
  --muted-2:#6b7a95;

  --line: rgba(11,18,32,.12);
  --line-strong: rgba(11,18,32,.18);

  /* “glass” for light UI */
  --glass: rgba(255,255,255,.72);

  /* --- Brand / accent (logo-derived) --- */
  --accent:#2A5684;
  --accent-2:#13477E;
  --accent-soft: rgba(42,86,132,.14);

  --danger:#e0315b;

  --radius:18px;
  --radius-sm:12px;

  --container:1180px;

  /* lighter shadow for light theme */
  --shadow: 0 18px 60px rgba(11,18,32,.10);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;

  background:
    radial-gradient(1200px 700px at 70% -10%, rgba(42,86,132,.14), transparent 55%),
    radial-gradient(900px 500px at 10% 15%, rgba(11,18,32,.05), transparent 55%),
    var(--bg);

  color:var(--text);
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

.container{
  width: min(var(--container), calc(100% - 48px));
  margin:0 auto;
}

.section{ padding: 78px 0; }

/* Light section becomes simply white */
.section--light{
  background: #ffffff;
  color: var(--text);
}
.section--light .section__eyebrow{ color: rgba(11,18,32,.72); }
.section--light .section__lead{ color: rgba(11,18,32,.70); }

.section-head{ margin-bottom: 26px; }

.section__eyebrow{
  display:inline-flex;
  gap:10px;
  align-items:center;
  color: var(--muted);
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}
.section__eyebrow::before{
  content:"";
  width:28px;height:2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius:999px;
  opacity:.95;
}
.section__title{
  margin:0 0 12px;
  font-size: clamp(26px, 3vw, 40px);
  line-height:1.08;
  letter-spacing:-.02em;
}
.section__lead{
  margin:0;
  color: var(--muted);
  line-height:1.6;
  max-width: 64ch;
}

/* TOPBAR */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--line);
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
}

/* BRAND */
.brand{
  display:flex;
  gap:10px;
  align-items:center;
}

/* --- BRAND MARK (fallback container only) --- */
.brand__mark{
  width:56px;
  height:56px;
  display:grid;
  place-items:center;
}

/* Boxed fallback ONLY */
.brand__mark.is-fallback{
  border-radius:14px;
  background: linear-gradient(
    135deg,
    rgba(42,86,132,.14),
    rgba(255,255,255,.9)
  );
  border:1px solid rgba(11,18,32,.12);
  box-shadow: 0 10px 30px rgba(42,86,132,.12);
}

/* LOGO IMAGE (no box) */
.brand__logo{
  object-fit:contain;
  display:block;
}

/* Fallback text (EI) */
.brand__fallback{
  font-weight:900;
  letter-spacing:.06em;
  color: var(--accent-2);
  line-height:1;
  display:none;
}

/* Show fallback text ONLY when fallback mode is active */
.brand__mark.is-fallback .brand__fallback{
  display:block;
}

/* Hide logo image when fallback is active */
.brand__mark.is-fallback .brand__logo{
  display:none;
}

/* Brand text */
.brand__name{
  font-weight:800;
  letter-spacing:.02em;
}

.brand__sub{
  display:block;
  font-size:12px;
  color: var(--muted-2);
  margin-top:2px;
  white-space:nowrap;
}


.nav{
  display:flex;
  gap: 14px;
  align-items:center;
  color: var(--muted);
  font-weight: 700;
}
.nav a{
  padding: 10px 10px;
  border-radius: 10px;
}
.nav a:hover{
  color: var(--text);
  background: rgba(42,86,132,.08);
}

.topbar__actions{ display:flex; gap:10px; align-items:center; }

/* BURGER / MOBILE NAV */
.burger{
  display:none;
  width:44px;height:44px;
  border-radius: 12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.65);
  cursor:pointer;
}
.burger span{
  display:block;
  width:18px;height:2px;
  background: var(--text);
  margin:5px auto;
  border-radius:99px;
  opacity:.9;
}
.mobile-nav{
  display:none;
  padding: 10px 0 16px;
  border-top:1px solid var(--line);
}
.mobile-nav a{
  display:block;
  padding: 12px 0;
  color: var(--muted);
  font-weight:700;
}
.mobile-nav a:hover{ color: var(--text); }
.mobile-nav__cta{
  margin-top:10px;
  padding: 12px 14px;
  border:1px solid var(--line);
  border-radius: 12px;
  background: rgba(42,86,132,.10);
  color: var(--text) !important;
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border:1px solid transparent;
  font-weight:800;
  letter-spacing:.01em;
  cursor:pointer;
}
.btn--small{ padding:10px 12px; border-radius:12px; font-size:13px; }

.btn--primary{
  background: linear-gradient(180deg, var(--accent), rgba(42,86,132,.84));
  color:white;
  box-shadow: 0 18px 60px rgba(42,86,132,.22);
}
.btn--primary:hover{ filter: brightness(1.05); }

.btn--ghost{
  background: rgba(255,255,255,.75);
  border-color: var(--line-strong);
  box-shadow: 0 10px 28px rgba(11,18,32,.10);
  color: var(--text);
}
.btn--ghost:hover{
  background: rgba(42,86,132,.06);
  border-color: rgba(42,86,132,.22);
}
.btn--full{ width:100%; }

.topbar__actions .btn--small{
  padding: 10px 12px;
  border-radius: 12px;
}

/* ABOUT: centered logo above the grid (outside container) */
#about{
  position: relative;
}

.about__logo{
  height: 105px;
  width:auto;
  display:block;
  margin-bottom: 10px;
  opacity: .95;
  filter: drop-shadow(0 10px 24px rgba(11,18,32,.08));
}

#about .about__logo{
  display: block;
  margin: 0 auto 18px;          /* center + space before the grid */
  width: auto;
  max-width: min(520px, calc(100% - 48px));  /* prevents overflow on mobile */
  object-fit: contain;
  opacity: .95;
  filter: drop-shadow(0 12px 26px rgba(11,18,32,.10));
  pointer-events: none;          /* purely decorative */
}

/* Mobile: slightly smaller */
@media (max-width: 520px){
  #about .about__logo{
    height: 34px;
    margin-bottom: 14px;
  }
}

/* HERO */
.hero{
  position:relative;
  min-height: 86vh;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}
.hero__slides{ position:absolute; inset:0; }
.hero__slide{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform: scale(1.02);
  transition: opacity .7s ease, transform 1.2s ease;
}
.hero__slide.is-active{
  opacity:1;
  transform: scale(1);
}

/* Light overlay (keeps text readable but not “dark”) */
.hero__overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 600px at 60% 40%, rgba(42,86,132,.22), transparent 60%),
    linear-gradient(90deg, rgba(246,248,252,.92) 0%, rgba(246,248,252,.62) 45%, rgba(246,248,252,.18) 100%);
}

.hero__content{
  position:relative;
  z-index:2;
  padding: 120px 0 84px;
  max-width: 720px;
}

.hero__kicker{
  display:inline-flex;
  gap:12px;
  align-items:center;
  color: rgba(11,18,32,.70);
  font-weight:700;
  margin-bottom: 14px;
}
.pulse{
  width:10px;height:10px;
  border-radius:99px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(42,86,132,.35);
  animation: pulse 1.8s infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(42,86,132,.35); }
  70%{ box-shadow: 0 0 0 14px rgba(42,86,132,0); }
  100%{ box-shadow: 0 0 0 0 rgba(42,86,132,0); }
}

.hero__title{
  margin:0 0 12px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height:1.02;
  letter-spacing:-.03em;
}
.hero__subtitle{
  margin:0 0 24px;
  color: rgba(11,18,32,.72);
  line-height:1.7;
  font-size: 16px;
}
.hero__cta{ display:flex; gap:12px; flex-wrap:wrap; }

.hero__nav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  z-index:3;
  width:46px;height:46px;
  border-radius: 16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.72);
  color: var(--text);
  cursor:pointer;
  display:grid;
  place-items:center;
}
.hero__nav span{ font-size:28px; line-height:1; opacity:.9; }
.hero__nav:hover{ background: rgba(255,255,255,.92); }
.hero__nav--prev{ left: 18px; }
.hero__nav--next{ right: 18px; }

.hero__dots{
  position:absolute;
  left:50%;
  transform: translateX(-50%);
  bottom: 18px;
  display:flex;
  gap:10px;
  z-index:3;
}
.hero__dots button{
  width:10px;height:10px;
  border-radius:99px;
  border:1px solid rgba(11,18,32,.25);
  background: rgba(11,18,32,.08);
  cursor:pointer;
}
.hero__dots button.is-active{
  background: var(--accent);
  border-color: rgba(42,86,132,.75);
}

.hero__sidecta{
  position:absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index:4;
  background: var(--danger);
  color: white;
  border-radius: 12px;
  padding: 12px 10px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing:.03em;
  font-weight:800;
  box-shadow: var(--shadow);
}
.hero__sidecta:hover{ filter:brightness(1.05); }

/* GRID + CARDS */
.grid{ display:grid; }
.grid--2{ grid-template-columns: 1.05fr .95fr; }
.grid--gap-xl{ gap:34px; }
.align-center{ align-items:center; }

.media-card{
  position:relative;
  background: var(--panel);
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.media-card__img img{
  width:100%;
  height: 420px;
  object-fit:cover;
  opacity:.95;
}
.media-card__badge{
  position:absolute;
  left:18px;
  bottom:18px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.78);
  border:1px solid rgba(11,18,32,.14);
  backdrop-filter: blur(10px);
}
.badge-title{ font-weight:900; }
.badge-sub{ color: var(--muted); font-size:13px; margin-top:4px; }

.media-card--contact .media-card__img img{
  height: 360px;
  object-fit: cover;
}
@media (max-width: 980px){
  .media-card--contact .media-card__img img{
    height: 260px;
  }
}

.bullet-list{ margin:18px 0 12px; display:grid; gap:10px; }
.bullet{ display:flex; gap:10px; align-items:flex-start; color: var(--muted); line-height:1.55; }
.bullet__dot{
  width:10px;height:10px; border-radius:99px;
  background: var(--accent);
  margin-top:6px;
  box-shadow: 0 0 0 6px var(--accent-soft);
}
.link-arrow{
  display:inline-flex;
  gap:10px;
  margin-top: 6px;
  color: var(--text);
  font-weight:800;
}
.link-arrow span{ color: var(--accent); }

.cards{
  display:grid;
  gap:16px;
  margin-top: 22px;
}
.cards--3{
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}
.card{
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 260px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 22px 20px;
  position:relative;
  overflow:hidden;
  box-shadow: var(--shadow);
}
.card::after{
  content:"";
  position:absolute;
  right:-80px; top:-80px;
  width:220px;height:220px;
  background: radial-gradient(circle, rgba(42,86,132,.12), transparent 65%);
}
.card:hover{
  border-color: rgba(42,86,132,.28);
  transform: translateY(-2px);
  transition: transform .18s ease, border-color .18s ease;
}

.card__icon{
  width:44px;height:44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(42,86,132,.10);
  border:1px solid rgba(42,86,132,.16);
  margin-bottom: 12px;
}
.icon-box{ font-weight:900; letter-spacing:.02em; }
.card__title{ min-height: 48px; margin:0 0 10px; font-size:18px; }
.card__text{ margin-bottom: 16px; color: var(--muted); line-height:1.6; }
.card__meta{
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(11,18,32,.10);
  opacity: .95;
  color: rgba(11,18,32,.62);
  font-size: 12px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}

/* PANELS / CHECKLIST */
.panel{
  background: var(--panel);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px;
  box-shadow: var(--shadow);
}

.checklist{
  margin: 14px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
  color: var(--muted);
}
.checklist li{
  position:relative;
  padding-left: 28px;
  line-height:1.55;
}
.checklist li::before{
  content:"✓";
  position:absolute;
  left:0; top:0;
  color: var(--accent);
  font-weight:900;
}

.note{
  margin-top: 16px;
  padding: 14px 14px;
  border-radius: 14px;
  border:1px solid rgba(42,86,132,.18);
  background: rgba(42,86,132,.08);
  color: rgba(11,18,32,.86);
  line-height:1.6;
}
.note--muted{
  border-color: var(--line);
  background: rgba(11,18,32,.04);
  color: var(--muted);
}

/* (Your existing capabilities matched-panels block can remain;
   it will inherit the new palette automatically.) */

/* INDUSTRIES (Accordion Grid) */
.industries-accordion{ margin-top: 22px; }
.industries{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap:14px;
}
.industry-tile{
  position:relative;
  height: 140px;
  border-radius: 16px;
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.70);
  cursor:pointer;
  text-align:left;
  padding:0;
  box-shadow: 0 14px 40px rgba(11,18,32,.08);
}
.industry-tile__bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.04);
  transition: transform .45s ease, opacity .25s ease;
}
.industry-tile__overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.52));
}
.industry-tile__label{
  position:absolute;
  left:14px; bottom:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size: 12px;
  color: rgba(255,255,255,.95);
}
.industry-tile:hover .industry-tile__bg{ transform: scale(1.10); }
.industry-tile:hover{ border-color: rgba(42,86,132,.35); }

.industry-tile.is-active .industry-tile__bg{ opacity: 0; }
.industry-tile.is-active{
  border-color: rgba(42,86,132,.35);
  background: rgba(255,255,255,.85);
}

/* dropdown detail panel */
.industry-detail{
  margin-top: 16px;
  border-radius: 18px;
  border:1px solid var(--line);
  background: var(--panel);
  overflow:hidden;

  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height .35s ease, opacity .25s ease, transform .25s ease;
  box-shadow: var(--shadow);
}
.industry-detail.is-open{
  max-height: 520px;
  opacity: 1;
  transform: translateY(0);
}
.industry-detail__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 18px;
  padding: 18px;
  align-items: stretch;
}
.industry-detail__close{
  position:absolute;
  top: 12px; right: 12px;
  width: 38px; height: 38px;
  border-radius: 12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.8);
  color: var(--text);
  cursor:pointer;
  font-size: 22px;
  line-height: 1;
}
.industry-detail__media{
  border-radius: 16px;
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(11,18,32,.04);
  min-height: 260px;
}
.industry-detail__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.industry-detail__eyebrow{
  color: var(--muted-2);
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size: 12px;
  margin-bottom: 8px;
}
.industry-detail__title{
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.industry-detail__summary{
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}
.industry-detail__bullets{
  margin: 0;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 10px;
  color: var(--muted);
}
.industry-detail__bullets li{
  position:relative;
  padding-left: 28px;
}
.industry-detail__bullets li::before{
  content:"✓";
  position:absolute;
  left:0; top:0;
  color: var(--accent);
  font-weight:900;
}
.industry-detail__actions{
  margin-top: 16px;
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
}

/* Swap animation */
.industry-detail__inner{
  transition: opacity .18s ease, transform .18s ease;
  will-change: opacity, transform;
}
.industry-detail.is-swapping .industry-detail__inner{
  opacity: 0;
  transform: translateY(6px);
}
.industry-detail__media img{
  transition: opacity .22s ease, transform .22s ease;
  will-change: opacity, transform;
}
.industry-detail.is-swapping .industry-detail__media img{
  opacity: 0;
  transform: scale(1.01);
}
.industry-detail__bullets li{
  transition: opacity .18s ease, transform .18s ease;
}
.industry-detail.is-swapping .industry-detail__bullets li{
  opacity: 0;
  transform: translateY(6px);
}
@media (prefers-reduced-motion: reduce){
  .industry-detail__inner,
  .industry-detail__media img,
  .industry-detail__bullets li{
    transition: none !important;
  }
}

/* PROCESS */
.process{
  background: white;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 20px 70px rgba(0,0,0,.08);
  border:1px solid rgba(11,18,32,.10);
}
.process__steps{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.step{
  padding: 14px 14px;
  border-radius: 16px;
  border:1px solid rgba(11,18,32,.10);
  background: rgba(11,18,32,.02);
}
.step__num{
  width:34px;height:34px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(42,86,132,.10);
  color: rgba(11,18,32,.85);
  font-weight:900;
  margin-bottom: 10px;
}
.step__title{ font-weight:900; margin-bottom:6px; }
.step__text{ color: rgba(11,18,32,.72); line-height:1.55; font-size: 13px; }

/* BRAND PANEL + CHECKS */
.brand-panel{
  position:relative;
  border-radius: 22px;
  overflow:hidden;
  border:1px solid var(--line);
  background:
    radial-gradient(900px 500px at 30% 10%, rgba(42,86,132,.18), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.75));
  min-height: 360px;
  box-shadow: var(--shadow);
}
.brand-panel__inner{
  position:relative;
  z-index:2;
  padding: 26px;
  max-width: 420px;
}
.brand-panel__mark{
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  opacity:.95;
}
.brand-panel__title{
  margin-top: 10px;
  font-size: 34px;
  font-weight:900;
  letter-spacing:-.02em;
}
.brand-panel__image{
  position:absolute;
  inset:0;
  background-image: url("../images/process.jpg");
  background-size: cover;
  background-position: center;
  opacity: .14;
  filter: blur(0.2px) saturate(1.05);
}

.checks{ display:grid; gap:14px; margin-top: 16px; }
.check{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.check__icon{
  width:28px;height:28px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background: rgba(42,86,132,.10);
  border:1px solid rgba(42,86,132,.18);
  color: var(--text);
  font-weight:900;
}
.check__title{ font-weight:900; }
.check__desc{ color: var(--muted); margin-top:4px; line-height:1.55; }

.callout{
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  border:1px solid rgba(11,18,32,.10);
  background: rgba(11,18,32,.03);
  color: var(--muted);
  line-height:1.6;
}

/* Hover polish */
.card:hover,
.panel:hover{
  border-color: rgba(42,86,132,.28);
  box-shadow: 0 18px 60px rgba(11,18,32,.14);
}

/* CONTACT */
.contact-list{ margin-top: 16px; display:grid; gap:12px; }
.contact-item{
  padding: 14px;
  border-radius: 16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
  box-shadow: 0 10px 28px rgba(11,18,32,.08);
}
.contact-item__label{
  color: var(--muted-2);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:800;
  font-size: 11px;
  margin-bottom: 6px;
}
.contact-item__value{ font-weight:700; line-height:1.5; }

.form-card{
  border-radius: 22px;
  border:1px solid var(--line);
  background: var(--panel);
  padding: 18px;
  box-shadow: var(--shadow);
}

.form label span{
  display:block;
  color: var(--muted-2);
  font-size: 12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom: 8px;
}
.form input, .form textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid rgba(11,18,32,.14);
  background: rgba(255,255,255,.9);
  color: var(--text);
  outline:none;
}
.form input:focus, .form textarea:focus{
  border-color: rgba(42,86,132,.45);
  box-shadow: 0 0 0 6px rgba(42,86,132,.12);
}
.form__row{ margin-bottom: 12px; }
.form__hint{
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height:1.5;
}

/* FOOTER */
.footer{
  border-top:1px solid var(--line);
  background: rgba(255,255,255,.72);
}
.footer__inner{
  padding: 34px 0;
  display:grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 24px;
}
.footer__desc{ color: var(--muted); line-height:1.6; max-width: 50ch; }

.brand--footer .brand__mark{ width:38px;height:38px; border-radius: 14px; }

.footer__cols{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.footer__title{
  font-weight:900;
  margin-bottom: 10px;
}
.footer__col a{
  display:block;
  color: var(--muted);
  padding: 7px 0;
}
.footer__col a:hover{ color: var(--text); }
.footer__mini{ color: var(--muted); line-height:1.7; }

.footer__bottom{
  border-top:1px solid var(--line);
  padding: 14px 0;
  color: var(--muted-2);
  font-size: 13px;
}
.footer__bottom-inner{
  display:flex;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .nav{ display:none; }
  .burger{ display:inline-grid; place-items:center; }
  .mobile-nav.is-open{ display:block; }
  .grid--2{ grid-template-columns: 1fr; }
  .cards--3{ grid-template-columns: 1fr; }
  .industries{ grid-template-columns: repeat(2, 1fr); }
  .process__steps{ grid-template-columns: repeat(2, 1fr); }
  .hero__content{ padding: 110px 0 84px; }
  .hero__sidecta{ display:none; }
  .footer__inner{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .industries{ grid-template-columns: 1fr; }
  .process__steps{ grid-template-columns: 1fr; }
  .container{ width: calc(100% - 28px); }
}

/* Responsive: keep title alignment reasonable on small screens */
@media (max-width: 980px){
  #capabilities .panel .section__title{ min-height: unset; }
  .card__title{ min-height: unset; }
}
