/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --traq-blue:       #1788c7;
  --traq-blue-deep:  #1f5ca8;
  --traq-navy:       #1d3177;
  --traq-navy-soft:  #314a93;
  --traq-ice:        #eaf5fc;
  --traq-mist:       #f5f9fd;
  --traq-line:       #c8d9eb;
  --traq-ink:        #152344;
  --traq-muted:      #5f7093;
  --traq-orange:     #da4813;
  --traq-orange-deep:#b83a0f;
  --traq-orange-tint:#fdf0eb;
  --navy:   var(--traq-navy);
  --cobalt: var(--traq-blue-deep);
  --sky:    var(--traq-blue);
  --ink:    var(--traq-ink);
  --mid:    var(--traq-muted);
  --muted:  #AFC0D9;
  --border: var(--traq-line);
  --ice:    var(--traq-ice);
  --bg:     var(--traq-mist);
  --white:  #FFFFFF;
  --orange: var(--traq-orange);
  --orange-deep: var(--traq-orange-deep);
  --orange-tint: var(--traq-orange-tint);
}

/* ─── RESET ──────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display:block; max-width:100%; }
a { text-decoration:none; }
ul { list-style:none; }

h1 { font-size:clamp(36px,5vw,60px); font-weight:800; line-height:1.1; letter-spacing:-1.5px; }
h2 { font-size:clamp(28px,3.8vw,44px); font-weight:800; line-height:1.15; letter-spacing:-1px; color:var(--ink); }
h3 { font-size:20px; font-weight:700; color:var(--ink); }
p { font-size:16px; line-height:1.75; color:var(--mid); }
strong { font-weight:700; color:var(--ink); }
.sky { color: var(--sky); }

.section-label {
  display:inline-block;
  font-size:11px; font-weight:700;
  letter-spacing:.2em; text-transform:uppercase;
  color:var(--sky);
  margin-bottom:14px;
}

/* ─── TOP BAR ────────────────────────────────────────────── */
.topbar {
  position: fixed; top:0; left:0; right:0; z-index:201;
  height: 36px;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex; align-items:center; justify-content:space-between;
  padding: 0 60px;
  transition: transform .25s ease;
}
.topbar-group {
  display:flex; align-items:center; gap:20px;
}
.topbar-item {
  display:flex; align-items:center; gap:6px;
  font-size:12px; color:rgba(255,255,255,.72);
  letter-spacing:.01em;
}
.topbar-item svg { width:13px; height:13px; stroke:var(--sky); flex-shrink:0; }
.topbar-dot {
  width:4px; height:4px; border-radius:50%;
  background:rgba(255,255,255,.18);
}
@media(max-width:860px){ .topbar { display:none; } }

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed; top:36px; left:0; right:0; z-index:200;
  height: 68px;
  display: flex; align-items:center; justify-content:space-between;
  padding: 0 60px;
  background: rgba(29,49,119,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .2s, top .2s;
}
.nav.scrolled { box-shadow: 0 10px 30px rgba(4,13,43,.18); top:0; }

.nav-logo {
  display:flex; align-items:center; gap:10px;
}
.nav-logo img {
  height:48px; width:auto;
  border-radius:6px;
}
.nav-logo-name {
  font-size:10px; font-weight:600;
  letter-spacing:.22em; text-transform:uppercase;
  color:rgba(255,255,255,.74);
  line-height:1;
}

.nav-links {
  display:flex; align-items:center; gap:34px;
}
.nav-links a {
  font-size:15px; font-weight:500;
  color:rgba(255,255,255,.8);
  transition: color .15s;
  letter-spacing:.1px;
}
.nav-links a:hover { color:#fff; }
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a,
.nav-links .current-menu-ancestor > a {
  color:var(--sky);
  border-bottom:2px solid var(--sky);
  padding-bottom:4px;
}
.nav-cta {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background: var(--orange);
  color: var(--white) !important;
  box-shadow:0 10px 22px rgba(218,72,19,.28);
  margin-left:18px;
  padding: 9px 22px;
  border-radius: 999px;
  font-weight:600 !important;
  font-size:14px !important;
  transition: background .15s !important;
  white-space:nowrap;
  line-height:1;
}
.nav-cta::after {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
}
.nav-cta:hover { background: var(--orange-deep); }

/* ─── DROPDOWN ───────────────────────────────────────────── */
.nav-item { position:relative; list-style:none; }

.nav-item-btn {
  display:inline-flex; align-items:center; gap:5px;
  font-size:15px; font-weight:500;
  color:rgba(255,255,255,.8); background:none; border:none;
  cursor:pointer; padding:0; font-family:'DM Sans',sans-serif;
  letter-spacing:.1px;
  transition:color .15s;
}
.nav-item-btn:hover { color:#fff; }
.nav-item-btn svg {
  width:14px; height:14px;
  stroke:currentColor; flex-shrink:0;
  transition:transform .2s;
}
.nav-item.open .nav-item-btn svg { transform:rotate(180deg); }

.nav-dropdown {
  display:none;
  position:absolute; top:calc(100% + 18px); left:50%;
  transform:translateX(-50%);
  min-width:220px;
  background:var(--ice);
  border:1px solid var(--border);
  border-radius:12px;
  box-shadow:0 16px 48px rgba(10,20,66,.13);
  padding:8px 0;
  z-index:300;
  animation:dd-in .18s ease both;
}
.nav-item.open .nav-dropdown { display:block; }

@keyframes dd-in {
  from { opacity:0; transform:translateX(-50%) translateY(8px); }
  to   { opacity:1; transform:translateX(-50%) translateY(0); }
}

.nav-dropdown a {
  display:block;
  padding:11px 20px;
  font-size:14px; font-weight:500;
  color:var(--ink);
  border-bottom:1px solid var(--border);
  transition:background .15s, color .15s;
  white-space:nowrap;
}
.nav-dropdown a:last-child { border-bottom:none; }
.nav-dropdown a:hover { background:var(--ice); color:var(--sky); }

/* Mobile burger */
.burger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:6px; }
.burger span { width:22px; height:1.5px; background:var(--navy); border-radius:2px; transition:.3s; }
.mob-nav {
  display:none; position:fixed; top:104px; left:0; right:0;
  background:var(--navy); border-bottom:1px solid rgba(255,255,255,.08);
  padding:12px 0; z-index:199; flex-direction:column;
}
.mob-nav.open { display:flex; }
.mob-nav a {
  padding:14px 28px; font-size:15px; color:rgba(255,255,255,.82);
  border-bottom:1px solid rgba(255,255,255,.08);
  transition:background .15s;
}
.mob-nav a:hover { background:rgba(255,255,255,.06); }

/* ─── PAGE HERO ──────────────────────────────────────────── */
.page-hero {
  position:relative;
  min-height: 48vh;
  display:flex; align-items:center;
  padding: 140px 0 80px;
  overflow:hidden;
  background: url('../images/bg.jpg') center center / cover no-repeat;
}
.page-hero::before {
  content:'';
  position:absolute; inset:0; z-index:0;
  background: linear-gradient(
    120deg,
    rgba(10,18,56,.95) 0%,
    rgba(21,38,100,.88) 50%,
    rgba(17,88,168,.76) 100%
  );
}
.page-hero-container {
  position:relative; z-index:1;
  width:100%; max-width:1360px;
  margin:0 auto; padding:0 60px;
}
.page-hero-eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; font-weight:700;
  letter-spacing:.2em; text-transform:uppercase;
  color:rgba(255,255,255,.62);
  margin-bottom:18px;
}
.page-hero-eyebrow::before {
  content:'';
  display:inline-block; width:20px; height:2px;
  background:var(--sky);
}
.page-hero h1 { color:var(--white); max-width:700px; }
.page-hero h1 strong { color:var(--sky); }
.page-hero p {
  margin-top:18px;
  font-size:18px; color:rgba(255,255,255,.68);
  line-height:1.72; max-width:640px;
}
.breadcrumb {
  display:flex; align-items:center; gap:8px;
  margin-top:32px;
  font-size:13px; color:rgba(255,255,255,.42);
}
.breadcrumb a { color:rgba(255,255,255,.55); transition:color .15s; }
.breadcrumb a:hover { color:var(--white); }
.breadcrumb span { font-size:11px; }

/* ─── SHARED LAYOUT ──────────────────────────────────────── */
.wrap { max-width:1360px; margin:0 auto; padding:96px 60px; }

/* ─── WHO WE ARE ─────────────────────────────────────────── */
.who-shell { background:var(--ice); }

.who-inner {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}
.who-visual {
  position:relative;
  min-height:520px;
}
.who-img-main {
  position:absolute;
  left:0;
  top:40px;
  width:78%;
  height:360px;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 26px 54px rgba(10,20,66,.14);
  background:url('../images/sap-tm-analytics.jpg') center/cover no-repeat;
}
.who-img-accent {
  position:absolute;
  right:8%;
  bottom:0;
  width:54%;
  height:210px;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(10,20,66,.12);
  background:url('../images/transport-logistics.jpg') center/cover no-repeat;
  border:4px solid var(--white);
}
.who-badge {
  position:absolute;
  left:0;
  bottom:30px;
  z-index:2;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color:var(--white);
  border-radius:16px;
  padding:16px 22px;
  font-size:13px;
  font-weight:600;
  box-shadow:0 12px 28px rgba(21,35,68,.22);
  line-height:1.4;
}
.who-badge strong {
  display:block;
  font-size:22px;
  font-weight:700;
  letter-spacing:-0.5px;
  color:var(--white);
}
.who-copy h2 { margin-bottom:22px; }
.who-copy p { margin-bottom:16px; }
.who-copy p:last-of-type { margin-bottom:0; }

.what-we-do {
  margin-top:36px;
  padding-top:28px;
  border-top:1px solid var(--border);
}
.what-we-do h3 {
  font-size:15px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--navy);
  margin-bottom:16px;
}
.wwd-list {
  display:flex;
  flex-direction:column;
  gap:10px;
}
.wwd-list li {
  display:flex;
  align-items:center;
  gap:10px;
  font-size:16px;
  color:var(--mid);
}
.wwd-list li::before {
  content:'';
  width:12px;
  height:12px;
  flex-shrink:0;
  background:var(--sky);
  clip-path:polygon(0 0,58% 0,100% 50%,58% 100%,0 100%,42% 50%);
}

/* ─── OUR PERSPECTIVE ────────────────────────────────────── */
.perspective-shell {
  position:relative;
  overflow:hidden;
  background: url('../images/bg.jpg') center center / cover no-repeat;
}
.perspective-shell::before {
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(120deg, rgba(10,18,56,.92) 0%, rgba(21,38,100,.84) 48%, rgba(17,88,168,.70) 100%);
  pointer-events:none;
}
.perspective-shell .wrap {
  position:relative;
  z-index:1;
}
.perspective-inner { max-width:760px; }
.perspective-inner .section-label { color:rgba(255,255,255,.62); }
.perspective-inner .section-label::after { background:var(--sky); }
.perspective-inner h2 { margin-bottom:22px; color:var(--white); }
.perspective-inner p {
  margin-bottom:16px;
  color:rgba(255,255,255,.74);
}
.perspective-inner p:last-of-type { margin-bottom:0; }

.pull-quote {
  margin-top:48px;
  padding:36px 40px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  border-radius:16px;
  text-align:center;
  backdrop-filter: blur(10px);
}
.pull-quote p {
  font-size:clamp(18px,2.4vw,26px);
  font-weight:700;
  color:var(--white);
  line-height:1.45;
  letter-spacing:-.3px;
  margin:0;
}

/* ─── WHO WE SERVE ───────────────────────────────────────── */
.serve-shell { background:var(--bg); }
.serve-head { max-width:580px; margin-bottom:56px; }
.serve-tabs {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:20px;
}
.serve-tab {
  display:flex;
  align-items:flex-start;
  gap:10px;
  flex:1 1 240px;
  min-width:0;
  padding:18px 20px;
  border:1px solid var(--border);
  border-radius:14px;
  background:var(--white);
  text-align:left;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.serve-tab:hover {
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(21,35,68,.08);
}
.serve-tab.is-active {
  background:linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  border-color:transparent;
  box-shadow:0 16px 34px rgba(21,35,68,.12);
}
.serve-tab-num {
  font-size:11px;
  font-weight:800;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--sky);
  flex-shrink:0;
  padding-top:2px;
}
.serve-tab.is-active .serve-tab-num,
.serve-tab.is-active .serve-tab-title {
  color:#fff;
}
.serve-tab-title {
  font-size:14px;
  font-weight:700;
  line-height:1.4;
  color:var(--ink);
}
.serve-panels {
  display:grid;
}
.serve-panel {
  animation: serve-panel-in .28s ease both;
}
@keyframes serve-panel-in {
  from { opacity:0; transform:translateY(10px); }
  to { opacity:1; transform:translateY(0); }
}
.serve-card {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:0 12px 34px rgba(21,35,68,.08);
  overflow:hidden;
  padding:28px 30px 26px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.serve-card-num {
  font-size:11px;
  font-weight:800;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:2px;
}
.serve-card h3 {
  font-size:20px;
  line-height:1.28;
  margin:0;
}
.serve-card .serve-intro {
  font-size:15px;
  color:var(--mid);
  line-height:1.7;
  margin-bottom:4px;
}
.serve-card ul {
  list-style:none;
  padding:0;
  margin:6px 0 0;
  display:grid;
  gap:10px;
}
.serve-card li {
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:15px;
  color:var(--mid);
  margin-bottom:10px;
  line-height:1.58;
}
.serve-card li::before {
  content:'';
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--sky);
  flex-shrink:0;
  margin-top:8px;
}

/* ─── OUR APPROACH ───────────────────────────────────────── */
.approach-shell {
  position:relative;
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,.06);
  background:
    linear-gradient(135deg, rgba(4,8,16,.9), rgba(8,39,74,.82)),
    url('../images/bg.jpg') center/cover no-repeat;
}
.approach-shell::before {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(4,8,16,.88) 0%, rgba(8,39,74,.72) 55%, rgba(12,94,146,.34) 100%);
  z-index:0;
}
.approach-shell .wrap {
  position:relative;
  z-index:1;
}
.approach-head { max-width:560px; margin-bottom:56px; }
.approach-head .section-label { color:rgba(255,255,255,.68); }
.approach-head .section-label::after { background:rgba(255,255,255,.42); }
.approach-head h2,
.approach-head h2 strong {
  color:var(--white) !important;
  text-shadow:0 4px 18px rgba(0,0,0,.18);
}
.approach-head p { color:rgba(255,255,255,.74); }
.approach-carousel {
  position:relative;
  padding-bottom:48px;
}
.approach-carousel .swiper-wrapper {
  align-items:stretch;
}
.approach-carousel .swiper-slide {
  height:auto;
  display:flex;
}
.approach-card {
  width:100%;
  height:100%;
  background:var(--ice);
  border:1px solid var(--border);
  border-radius:14px;
  padding:28px 26px;
  position:relative;
  overflow:hidden;
  cursor:default;
  transition:transform .22s ease, box-shadow .22s ease;
}
.approach-carousel .swiper-slide-active .approach-card,
.approach-carousel .swiper-slide:first-child .approach-card {
  background:linear-gradient(135deg, var(--sky) 0%, var(--cobalt) 100%);
  border-color:rgba(255,255,255,.08);
}
.approach-card::after {
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(135deg, var(--navy) 0%, var(--cobalt) 60%, var(--sky) 100%);
  opacity:0;
  transition:opacity .28s ease;
  border-radius:14px;
}
.approach-card:hover { transform:translateY(-5px); box-shadow:0 16px 40px rgba(21,35,68,.18); }
.approach-card:hover::after { opacity:1; }
.approach-card-num, .approach-card h4, .approach-card p { position:relative; z-index:1; }
.approach-card-num {
  font-size:11px; font-weight:800;
  letter-spacing:.2em; text-transform:uppercase;
  color:var(--sky);
  margin-bottom:14px;
  transition:color .28s ease;
}
.approach-card:hover .approach-card-num { color:rgba(255,255,255,.65); }
.approach-carousel .swiper-slide-active .approach-card-num,
.approach-carousel .swiper-slide:first-child .approach-card-num,
.approach-carousel .swiper-slide-active .approach-card h4,
.approach-carousel .swiper-slide:first-child .approach-card h4,
.approach-carousel .swiper-slide-active .approach-card p,
.approach-carousel .swiper-slide:first-child .approach-card p {
  color:#fff;
}
.approach-card h4 {
  font-size:15px; font-weight:700;
  color:var(--ink);
  margin-bottom:8px;
  line-height:1.3;
  transition:color .28s ease;
}
.approach-card:hover h4 { color:#fff; }
.approach-card p {
  font-size:13px; color:var(--mid);
  line-height:1.65; margin:0;
  transition:color .28s ease;
}
.approach-card:hover p { color:rgba(255,255,255,.82); }
.approach-prev,
.approach-next {
  position:absolute;
  top:-78px;
  right:0;
  z-index:2;
}
.approach-prev {
  right:56px;
}
.approach-pagination {
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:24px;
}
.approach-pagination .swiper-pagination-bullet {
  width:9px;
  height:9px;
  border-radius:999px;
  background:rgba(255,255,255,.24);
  opacity:1;
  transition:width .2s ease, background .2s ease;
}
.approach-pagination .swiper-pagination-bullet-active {
  width:28px;
  background:var(--sky);
}

/* ─── WHAT MAKES US DIFFERENT ────────────────────────────── */
.diff-shell {
  background:var(--ice);
}
.diff-head {
  max-width:620px;
  margin-bottom:56px;
}
.diff-head .section-label { color:rgba(31,76,134,.72); }
.diff-head h2 {
  color:var(--ink);
  max-width:560px;
}
.diff-head p {
  max-width:560px;
  margin-top:18px;
  color:rgba(34,37,42,.72);
  font-size:18px;
  line-height:1.7;
}
.diff-layout {
  display:grid;
  grid-template-columns:minmax(0, .95fr) minmax(0, 1.05fr);
  gap:28px;
  align-items:stretch;
}
.diff-visual {
  position:relative;
  min-height:640px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 20px 54px rgba(0,0,0,.24);
}
.diff-visual img {
  width:100%;
  height:100%;
  object-fit:cover;
}
.diff-visual-overlay {
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  padding:34px;
  background:
    linear-gradient(180deg, rgba(6,10,18,.66) 0%, rgba(6,10,18,.42) 34%, rgba(6,10,18,.68) 100%),
    linear-gradient(135deg, rgba(13,23,42,.28) 0%, rgba(13,23,42,0) 55%);
}
.diff-visual-overlay .section-label {
  color:#fff;
  margin-bottom:12px;
}
.diff-visual-overlay h3 {
  max-width:420px;
  font-size:clamp(32px,3.6vw,54px);
  line-height:1.02;
  letter-spacing:-1.5px;
  color:#fff;
  margin-bottom:14px;
  text-shadow:0 4px 20px rgba(0,0,0,.48);
}
.diff-visual-overlay h3 strong {
  color:#fff;
}
.diff-visual-overlay p {
  max-width:420px;
  color:#fff;
  font-size:16px;
  line-height:1.7;
  margin:0;
  text-shadow:0 3px 14px rgba(0,0,0,.42);
}
.diff-callout {
  margin-top:auto;
  align-self:flex-start;
  width:min(100%, 220px);
  padding:22px 20px 18px;
  border-radius:18px;
  background:linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color:#fff;
  box-shadow:0 18px 40px rgba(218,72,19,.28);
}
.diff-callout strong {
  display:block;
  font-size:18px;
  line-height:1.18;
  color:#fff;
  margin-bottom:14px;
}
.diff-callout span {
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  font-weight:700;
  color:rgba(255,255,255,.92);
}
.diff-callout span::before {
  content:'';
  width:28px;
  height:28px;
  border-radius:50%;
  background:rgba(255,255,255,.18);
  display:inline-block;
}
.diff-accordion {
  display:flex;
  flex-direction:column;
  gap:14px;
  min-width:0;
  padding-top:2px;
}
.diff-item {
  background:rgba(247,250,255,.98);
  border:1px solid rgba(31,76,134,.10);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 14px 32px rgba(8,16,38,.08);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.diff-item[open] {
  background:rgba(247,250,255,.98);
  border-color:rgba(31,76,134,.18);
  box-shadow:0 18px 40px rgba(8,16,38,.10);
}
.diff-summary {
  list-style:none;
  display:flex;
  align-items:center;
  gap:18px;
  padding:22px 24px;
  cursor:pointer;
  min-height:88px;
}
.diff-summary::-webkit-details-marker { display:none; }
.diff-summary-text {
  font-size:17px;
  font-weight:700;
  color:#15233f;
  line-height:1.3;
}
.diff-summary::after {
  content:'+';
  margin-left:auto;
  width:34px;
  height:34px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:var(--sky);
  background:#e9f4ff;
  border:1px solid rgba(63,128,184,.28);
  font-size:20px;
  line-height:1;
  flex:0 0 34px;
}
.diff-item[open] .diff-summary::after {
  content:'−';
  color:#fff;
  background:linear-gradient(135deg, var(--sky) 0%, #1f679a 100%);
  border-color:transparent;
}
.diff-panel {
  padding:0 24px 22px;
}
.diff-panel p {
  font-size:15px;
  color:rgba(21,35,63,.72);
  line-height:1.7;
  margin:0;
}

/* ─── OUR COMMITMENT ─────────────────────────────────────── */
.commit-shell { background:var(--ice); }
.commit-inner {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}
.commit-copy h2 { margin-bottom:22px; }
.commit-copy p { margin-bottom:16px; }
.commit-copy p:last-of-type { margin-bottom:0; }
.commit-tagline {
  margin-top:32px;
  padding:20px 24px;
  background:var(--bg);
  border-left:4px solid var(--sky);
  border-radius:0 10px 10px 0;
  font-size:15px; font-weight:600;
  color:var(--navy);
  line-height:1.5;
}

.commit-list {
  display:flex; flex-direction:column; gap:18px;
}
.commit-item {
  display:flex; align-items:flex-start; gap:16px;
  padding:22px 24px;
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:12px;
}
.commit-check {
  width:32px; height:32px; border-radius:8px; flex-shrink:0;
  background:linear-gradient(135deg,var(--navy),var(--sky));
  display:flex; align-items:center; justify-content:center;
}
.commit-check svg { width:15px; height:15px; stroke:var(--white); }
.commit-item-text {
  font-size:15px; font-weight:600;
  color:var(--ink);
  line-height:1.45;
}

/* ─── CTA ─────────────────────────────────────────────────── */
.cta-shell {
  position:relative; overflow:hidden;
  background: url('../images/656.jpg') center center / cover no-repeat;
}
.cta-shell::before {
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(
    110deg,
    rgba(13,21,60,.92) 0%,
    rgba(21,38,100,.86) 45%,
    rgba(23,136,199,.70) 100%
  );
  pointer-events:none;
}
.cta-inner {
  position:relative; z-index:1;
  max-width:1360px; margin:0 auto;
  padding:88px 60px;
  display:flex; align-items:center; justify-content:space-between;
  gap:40px; flex-wrap:wrap;
}
.cta-copy h2 { color:var(--white); max-width:520px; }
.cta-copy p {
  margin-top:12px;
  font-size:18px; color:rgba(255,255,255,.72);
  line-height:1.72; max-width:460px;
}
.cta-btns {
  display:flex; gap:14px; flex-shrink:0; flex-wrap:wrap;
}
.btn-white {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--white); color:var(--navy);
  font-family:'DM Sans',sans-serif;
  font-size:14px; font-weight:700;
  padding:14px 28px; border-radius:999px;
  transition:opacity .15s;
  white-space:nowrap;
}
.btn-white:hover { opacity:.88; }
.btn-ghost-cta {
  display:inline-flex; align-items:center; gap:8px;
  background:transparent; color:rgba(255,255,255,.72);
  border:1px solid rgba(255,255,255,.22);
  font-family:'DM Sans',sans-serif;
  font-size:14px; font-weight:500;
  padding:13px 26px; border-radius:999px;
  transition:border-color .15s, color .15s;
  white-space:nowrap;
}
.btn-ghost-cta:hover { border-color:rgba(255,255,255,.5); color:var(--white); }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background:var(--navy);
  border-top:1px solid rgba(255,255,255,.06);
}
.footer-inner {
  max-width:1360px; margin:0 auto;
  padding:64px 60px 48px;
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:0 48px;
  align-items:start;
}
.footer-brand img {
  height:48px; width:auto;
  border-radius:6px;
  margin-bottom:18px;
}
.footer-brand p {
  font-size:14px; color:rgba(255,255,255,.46);
  line-height:1.75; max-width:280px;
}
.footer-social-label {
  font-size:11px; font-weight:700;
  letter-spacing:.18em; text-transform:uppercase;
  color:rgba(255,255,255,.36);
  margin-top:28px; margin-bottom:14px;
}
.footer-socials {
  display:flex; gap:10px;
}
.footer-social-btn {
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center;
  transition:background .15s, border-color .15s;
}
.footer-social-btn:hover {
  background:var(--sky);
  border-color:var(--sky);
}
.footer-social-btn svg { width:16px; height:16px; fill:rgba(255,255,255,.7); }
.footer-social-btn:hover svg { fill:var(--white); }

.footer-col h4 {
  font-size:13px; font-weight:700;
  color:var(--white);
  margin-bottom:20px;
  letter-spacing:-.1px;
}
.footer-col ul { list-style:none; padding:0; margin:0; }
.footer-col li {
  display:flex; align-items:center; gap:8px;
  margin-bottom:12px;
}
.footer-col li::before {
  content:'';
  width:5px; height:5px; border-radius:50%;
  background:rgba(255,255,255,.2); flex-shrink:0;
}
.footer-col a {
  font-size:14px; color:rgba(255,255,255,.52);
  transition:color .15s;
}
.footer-col a:hover { color:var(--white); }

.footer-bottom {
  max-width:1360px; margin:0 auto;
  padding:20px 60px;
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:12px;
}
.footer-bottom p {
  font-size:13px; color:rgba(255,255,255,.28);
}
.footer-back-top {
  width:40px; height:40px; border-radius:10px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center;
  transition:background .15s;
  cursor:pointer;
}
.footer-back-top:hover { background:var(--sky); border-color:var(--sky); }
.footer-back-top svg { width:16px; height:16px; stroke:rgba(255,255,255,.7); }
.footer-bottom-links {
  display:flex; gap:24px;
}
.footer-bottom-links a {
  font-size:13px; color:rgba(255,255,255,.36);
  transition:color .15s;
}
.footer-bottom-links a:hover { color:var(--white); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width:1100px) {
  .diff-layout { grid-template-columns:1fr; gap:24px; }
  .diff-visual { min-height:460px; }
  .footer-inner { grid-template-columns:1fr 1fr; gap:40px; }
}

@media (max-width:860px) {
  .nav { padding:0 24px; }
  .nav-links { display:none; }
  .nav-cta { display:none; }
  .burger { display:flex; }
  .page-hero { padding:100px 0 60px; min-height:auto; }
  .page-hero-container { padding:0 24px; }
  .wrap { padding:72px 24px; }
  .who-inner { grid-template-columns:1fr; gap:40px; }
  .who-visual { min-height:340px; }
  .who-img-main { width:100%; height:310px; top:0; }
  .who-img-accent { width:52%; height:190px; right:0; }
  .who-badge { left:auto; right:0; bottom:18px; }
  .serve-tabs { gap:10px; }
  .serve-tab { flex:1 1 100%; padding:16px 18px; }
  .serve-tab-title { font-size:13px; }
  .approach-prev,
  .approach-next {
    top:-66px;
  }
  .diff-visual { min-height:400px; }
  .diff-visual-overlay { padding:24px; }
  .diff-visual-overlay h3 { font-size:clamp(28px, 8vw, 40px); }
  .diff-callout { width:min(100%, 200px); padding:18px 16px 16px; }
  .diff-summary { padding:18px 18px; min-height:72px; }
  .diff-summary-text { font-size:15px; }
  .diff-summary::after { width:30px; height:30px; flex-basis:30px; font-size:18px; }
  .diff-panel { padding:0 18px 18px; }
  .commit-inner { grid-template-columns:1fr; gap:40px; }
  .cta-inner { padding:60px 24px; flex-direction:column; align-items:flex-start; }
  .footer-inner { grid-template-columns:1fr; gap:32px; padding:44px 24px 28px; }
  .footer-bottom { padding:16px 24px; }
}

@media (max-width:640px) {
  .footer-bottom-links { display:none; }
}
body { font-size:1rem; }
p { font-size:1rem; }
