/* ─── Tokens ─────────────────────────────────────────── */
:root {
  --bg:         #040c18;
  --bg2:        #081120;
  --bg3:        #0c1828;
  --ink:        #0d1117;
  --paper:      #f5f7fb;
  --white:      #ffffff;
  --line:       #e2e8f0;
  --muted:      #64748b;
  --orange:     #f4511e;
  --orange2:    #ff7a47;
  --green:      #10b981;
  --r:          16px;
  --r-sm:       10px;
  --sh:         0 20px 60px rgba(4,12,24,.12);
  --sh-lg:      0 40px 100px rgba(4,12,24,.2);
  --tr:         .26s cubic-bezier(.4,0,.2,1);
  --copy-size:  1.02rem;
  --copy-line:  1.82;
}

/* ─── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; line-height: var(--copy-line); }
h1, h2, h3 { margin: 0; }

.hero-copy p,
.sec-sub,
.svc-why-copy p,
.svc-why-panel p,
.svc-body > p,
.sub-card p,
.feat-card p,
.info-panel p,
.c-card p,
.form-box .form-sub,
.response-aside p,
.response-next p,
.cta-sec p,
.testimonial-body p,
.foot-about p,
.foot-col address,
.legal-body,
.career-val p,
.no-openings p,
.faq-a,
.why-card > p,
.story-text > p,
.h-tl-item p,
.fits-box li,
.ind-overlay p,
.p-step p,
.perk-card p,
.contact-copy,
.response-sub,
.testimonial-foot p {
  font-size: var(--copy-size);
  line-height: var(--copy-line);
}

/* ─── Shell ──────────────────────────────────────────── */
.shell {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

/* ─── Nav ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(4, 12, 24, .9);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 72px;
}

/* nav links grow to fill middle; cta stays right */
.nav-wrap > nav  { flex: 1; }
.nav-cta         { flex-shrink: 0; margin-left: 8px; }

.brand { display: inline-flex; width: 154px; flex-shrink: 0; }
.site-footer .brand { width: 142px; margin-bottom: 22px; }

nav {
  display: flex;
  justify-content: center;
  gap: 2px;
}
nav a {
  padding: 9px 15px;
  border-radius: var(--r-sm);
  color: rgba(255,255,255,.55);
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .01em;
  transition: color var(--tr), background var(--tr);
}
nav a:hover, nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255,255,255,.07);
}

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  background: transparent;
  cursor: pointer;
  padding: 0 10px;
}
.nav-toggle span {
  display: block; height: 2px;
  background: rgba(255,255,255,.75);
  border-radius: 2px;
  transition: transform var(--tr), opacity var(--tr);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Buttons ────────────────────────────────────────── */
.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  font: 800 .86rem/1 "Plus Jakarta Sans", Arial, sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  text-decoration: none;
}
.nav-cta, .btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 28px rgba(244,81,30,.38);
}
.nav-cta:hover, .btn-primary:hover {
  background: var(--orange2);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(244,81,30,.48);
}
.btn-ghost {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.16);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 28px rgba(244,81,30,.35);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--bg3);
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.1);
}
.btn-dark:hover { background: #152036; transform: translateY(-2px); }

.btn-lg { min-height: 54px; padding: 0 30px; font-size: .93rem; border-radius: 12px; }

.hero-contact-row {
  display: none;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.hero-contact-row a {
  color: rgba(255,255,255,.72);
  font-size: .86rem;
  font-weight: 800;
  text-decoration: none;
  transition: color var(--tr);
}
.hero-contact-row a:hover { color: #fff; }
.hero-contact-row span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
}

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
  overflow: hidden;
}

/* dot grid */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* orange glow blob */
.hero::after {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,81,30,.13) 0%, transparent 65%);
  top: -300px; right: -200px;
  pointer-events: none;
}

.hero-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 64px;
  align-items: center;
  padding: 120px 0 100px;
}

/* hero text */
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  margin-bottom: 28px;
  border-radius: 100px;
  background: rgba(244,81,30,.1);
  border: 1px solid rgba(244,81,30,.28);
  color: var(--orange2);
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.hero-kicker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}

h1 {
  font-size: clamp(3rem, 5.8vw, 5.4rem);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: .94;
  color: #fff;
  margin-bottom: 26px;
}
h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #f4511e 0%, #ff9a3c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  max-width: 520px;
  margin-bottom: 38px;
  color: rgba(255,255,255,.52);
  font-size: 1.08rem;
  line-height: 1.8;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}

.hero-metrics {
  display: flex;
  gap: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
}
.hm-item { }
.hm-item strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.hm-item span {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: rgba(255,255,255,.38);
}

/* hero image side */
.hero-visual {
  position: relative;
}

.hero-img-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
}
.hero-img-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

/* floating badges on image */
.h-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(8,17,32,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.h-badge-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  background: rgba(244,81,30,.15);
  flex-shrink: 0;
}
.h-badge strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2px;
}
.h-badge span {
  font-size: .68rem;
  font-weight: 700;
  color: rgba(255,255,255,.48);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.h-badge-1 { bottom: 28px; left: -24px; }
.h-badge-2 { top: 28px; right: -24px; }

/* ─── Marquee ────────────────────────────────────────── */
.marquee-section {
  background: var(--bg2);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 20px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.38);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  white-space: nowrap;
}
.marquee-item::before {
  content: '●';
  color: var(--orange);
  font-size: .5rem;
}

/* ─── Stat Band ──────────────────────────────────────── */
.stat-band {
  background: var(--bg3);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  padding: 44px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
  position: relative;
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #f4511e, #ff9a3c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35);
}

/* ─── Section base ───────────────────────────────────── */
.sec { padding: 96px 0; }
.sec-light { background: var(--white); }
.sec-paper { background: var(--paper); }
.sec-dark { background: var(--bg); }
.sec-dark2 { background: var(--bg2); }

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--orange);
  margin-bottom: 14px;
}
.sec-label::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.sec-head { max-width: 680px; margin-bottom: 52px; }
.sec-head.center { text-align: center; margin-left: auto; margin-right: auto; }

h2 {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.04;
  margin-bottom: 16px;
}
.sec-dark h2, .sec-dark2 h2 { color: #fff; }
.sec-dark .sec-sub, .sec-dark2 .sec-sub { color: rgba(255,255,255,.48); }

.sec-sub {
  font-size: 1.05rem;
  line-height: 1.78;
  font-weight: 500;
  color: var(--muted);
}

/* ─── Service Why Section ───────────────────────────── */
.svc-why-sec {
  padding: 78px 0;
}
.svc-why-sec .sec-head {
  max-width: 760px;
  margin-bottom: 30px;
}
.svc-why-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: stretch;
}
.svc-why-copy {
  display: grid;
  gap: 14px;
}
.svc-why-copy p {
  margin: 0;
  padding: 24px 26px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--paper);
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 500;
}
.svc-why-copy p:first-child {
  color: var(--ink);
  background: #fff;
  border-color: rgba(244,81,30,.22);
}
.svc-why-panel {
  padding: 28px;
  border-radius: var(--r);
  background: var(--bg);
  color: #fff;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--sh);
}
.svc-why-panel span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--orange2);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.svc-why-panel h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.22;
}
.svc-why-panel p {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: .92rem;
  line-height: 1.72;
}

/* ─── Service Cards ──────────────────────────────────── */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.svc-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: var(--orange);
}
.sec-paper .svc-card { background: var(--white); }

.svc-img {
  position: relative;
  height: 230px;
  overflow: hidden;
  flex-shrink: 0;
}
.svc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  display: block;
}
.svc-card:hover .svc-img img { transform: scale(1.06); }
.svc-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(4,12,24,.55) 100%);
}
.svc-chip {
  position: absolute;
  bottom: 14px; left: 14px; z-index: 1;
  padding: 5px 13px;
  border-radius: 100px;
  background: var(--orange);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.svc-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px;
}
.svc-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(244,81,30,.09);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  margin-bottom: 16px;
  transition: background var(--tr);
}
.svc-card:hover .svc-icon { background: rgba(244,81,30,.16); }

.svc-body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.015em;
  color: var(--ink);
  margin-bottom: 10px;
}
.svc-body > p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.svc-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(244,81,30,.08);
  border: 1px solid rgba(244,81,30,.12);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--orange);
  font-size: .88rem;
  font-weight: 800;
  transition: gap var(--tr);
}
.svc-link:hover { gap: 12px; }
.svc-link::after {
  content: '';
  width: .42em;
  height: .42em;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.ui-icon {
  width: 1.15em;
  height: 1.15em;
  display: block;
  flex-shrink: 0;
}

/* ─── Sub-service Cards ──────────────────────────────── */
.sub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.sub-card {
  padding: 24px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.sub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh);
  border-color: rgba(244,81,30,.4);
}
.sec-paper .sub-card { background: var(--white); }

.sub-icon { color: var(--orange); margin-bottom: 12px; line-height: 1; }
.sub-icon .ui-icon { width: 28px; height: 28px; }
.h-badge-icon .ui-icon,
.why-icon .ui-icon,
.val-icon .ui-icon,
.mv-icon .ui-icon,
.appr-icon .ui-icon,
.iic-icon .ui-icon,
.c-icon .ui-icon,
.career-val-icon .ui-icon,
.perk-icon .ui-icon,
.no-openings-icon .ui-icon,
.foot-badge .ui-icon,
.legal-badge .ui-icon {
  width: 1em;
  height: 1em;
}
.sub-card h3 { font-size: .97rem; font-weight: 800; margin-bottom: 8px; color: var(--ink); }
.sub-card p { color: var(--muted); font-size: .85rem; line-height: 1.65; margin-bottom: 14px; }
.sub-card a { color: var(--orange); font-weight: 800; font-size: .82rem; }
.sub-card a:hover { text-decoration: underline; }

/* ─── Industry Cards (image overlay) ────────────────── */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.ind-card {
  position: relative;
  height: 250px;
  border-radius: var(--r);
  overflow: hidden;
  cursor: default;
}
.ind-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.ind-card:hover img { transform: scale(1.08); }

.ind-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(4,12,24,.95) 0%,
    rgba(4,12,24,.55) 45%,
    rgba(4,12,24,.12) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  transition: background var(--tr);
}
.ind-card:hover .ind-overlay {
  background: linear-gradient(to top,
    rgba(4,12,24,1) 0%,
    rgba(4,12,24,.72) 50%,
    rgba(4,12,24,.22) 100%);
}

.ind-overlay h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 5px;
  letter-spacing: -.01em;
}
.ind-overlay p {
  color: rgba(255,255,255,.58);
  font-size: .78rem;
  line-height: 1.5;
}

/* ─── Process Steps ──────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.p-step {
  padding: 32px 24px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r);
  transition: background var(--tr), border-color var(--tr);
}
.p-step:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(244,81,30,.3);
}
.p-num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
  background: linear-gradient(90deg, rgba(244,81,30,.6), rgba(255,122,71,.3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.p-step h3 { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.p-step p { color: rgba(255,255,255,.48); font-size: .85rem; line-height: 1.65; }

/* ─── Feature / About ────────────────────────────────── */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.feat-card {
  padding: 30px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh);
  border-color: rgba(244,81,30,.3);
}
.feat-emoji { font-size: 2rem; margin-bottom: 16px; }
.feat-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; }
.feat-card p { color: var(--muted); font-size: .9rem; line-height: 1.7; }

/* ─── Split layout (service inner page) ─────────────── */
.split-2col {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

.check-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: .92rem;
  transition: border-color var(--tr);
}
.check-list li:hover { border-color: rgba(244,81,30,.35); }
.check-list li::before {
  content: '';
  width: 20px; height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg width='11' height='8' viewBox='0 0 11 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.8L4 7L10 1' stroke='white' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
  margin-top: 1px;
}

.info-panel {
  padding: 32px;
  background: var(--bg);
  border-radius: var(--r);
  color: #fff;
  border: 1px solid rgba(255,255,255,.07);
}
.info-panel h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 12px; color: #fff; }
.info-panel p { color: rgba(255,255,255,.55); line-height: 1.75; font-size: .92rem; margin-bottom: 24px; }

/* ─── Team ───────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.team-card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  height: 360px;
  box-shadow: var(--sh-sm);
  cursor: default;
  transition: transform var(--tr), box-shadow var(--tr);
}
.team-card:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); }

.team-photo {
  position: absolute;
  inset: 0;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .6s ease;
}
.team-card:hover .team-photo img { transform: scale(1.07); }

.team-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 60px 18px 20px;
  background: linear-gradient(
    to top,
    rgba(4,12,24,.97) 0%,
    rgba(4,12,24,.65) 55%,
    transparent 100%
  );
  text-align: left;
}
.team-info h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 5px;
  letter-spacing: -.01em;
}
.team-role {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--orange2);
}

/* ─── Contact ────────────────────────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 36px;
  align-items: start;
  min-width: 0;
}
.contact-cards { display: grid; gap: 14px; }

.c-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color var(--tr);
}
.c-card:hover { border-color: rgba(244,81,30,.3); }
.c-card-link {
  color: inherit;
  text-decoration: none;
  transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr);
}
.c-card-link:hover {
  transform: translateY(-2px);
  border-color: rgba(244,81,30,.48);
  box-shadow: 0 18px 38px rgba(15,23,42,.08);
}
.c-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(244,81,30,.09);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--orange);
  flex-shrink: 0;
}
.c-card h3 { font-size: .88rem; font-weight: 800; margin-bottom: 4px; }
.c-card p { color: var(--muted); font-size: .84rem; line-height: 1.55; }

.form-box {
  padding: 36px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh);
  min-width: 0;
}
.form-box h3 { font-size: 1.35rem; font-weight: 900; margin-bottom: 6px; }
.form-box .form-sub { color: var(--muted); font-size: .9rem; margin-bottom: 28px; }
.form-quick-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
.form-quick-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
  transition: border-color var(--tr), color var(--tr), transform var(--tr);
}
.form-quick-links a:hover {
  color: var(--orange);
  border-color: rgba(244,81,30,.45);
  transform: translateY(-2px);
}

/* Contact form response page */
.response-page {
  min-height: 100vh;
  padding-bottom: 0 !important;
  background:
    radial-gradient(circle at 18% 18%, rgba(244,81,30,.13), transparent 30%),
    linear-gradient(135deg, #f7f9fd 0%, #eef3f9 48%, #ffffff 100%);
}
.response-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 72px 0;
}
.response-shell { max-width: 1040px; }
.response-card {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.1);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 34px 100px rgba(15,23,42,.16);
}
.response-aside {
  position: relative;
  min-height: 430px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(4,12,24,.2), rgba(4,12,24,.92)),
    url("assets/seo-process-visual.webp") center/cover;
  color: #fff;
}
.response-aside::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.13) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .26;
}
.response-aside > * {
  position: relative;
  z-index: 1;
}
.response-brand {
  position: absolute;
  top: 28px;
  left: 30px;
  width: 150px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 32px rgba(0,0,0,.16);
}
.response-brand img {
  width: 100%;
  height: auto;
}
.response-pill {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.response-aside h2 {
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 12px;
}
.response-aside p {
  color: rgba(255,255,255,.66);
  font-size: .95rem;
  line-height: 1.7;
}
.response-main {
  padding: clamp(32px, 6vw, 62px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.response-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--green);
  background: rgba(16,185,129,.1);
  box-shadow: inset 0 0 0 1px rgba(16,185,129,.2);
}
.response-card.is-error .response-icon {
  color: var(--orange);
  background: rgba(244,81,30,.09);
  box-shadow: inset 0 0 0 1px rgba(244,81,30,.22);
}
.response-label {
  margin-bottom: 12px;
}
.response-main h1 {
  max-width: 650px;
  color: var(--ink);
  font-size: clamp(2rem, 4.3vw, 3.65rem);
  line-height: .98;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.response-copy {
  max-width: 640px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}
.response-next {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 12px;
  max-width: 600px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--paper);
}
.response-next span {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg3);
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
}
.response-next p {
  align-self: center;
  color: #334155;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.5;
}
.response-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.response-actions .btn {
  min-width: 156px;
  border-radius: 12px;
}
.response-btn {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.response-btn:hover {
  color: var(--orange);
  border-color: rgba(244,81,30,.45);
  transform: translateY(-2px);
}

.form-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; }
.form-row.full { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; min-width: 0; }
.form-field label {
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--ink);
}
.optional-label {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font: 500 .93rem "Plus Jakarta Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  outline: none;
  transition: border-color var(--tr), box-shadow var(--tr), background var(--tr);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,81,30,.1);
  background: #fff;
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field select[name="country_code"] {
  font-weight: 800;
}
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ─── CTA Section ────────────────────────────────────── */
.cta-sec {
  position: relative;
  padding: 110px 0;
  background: var(--bg);
  overflow: hidden;
}
.cta-sec::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(244,81,30,.16) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 10% 60%, rgba(30,64,175,.13) 0%, transparent 55%);
  pointer-events: none;
}
.cta-sec::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-tag {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--orange2);
  margin-bottom: 16px;
}
.cta-sec h2 {
  color: #fff;
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin-bottom: 16px;
}
.cta-sec p { color: rgba(255,255,255,.52); font-size: 1.05rem; line-height: 1.78; max-width: 580px; }
.cta-btns { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }

/* ─── Testimonials / Clients ─────────────────────────── */
.testimonials-sec {
  overflow: hidden;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 28px;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  box-shadow: 0 18px 52px rgba(15,23,42,.06);
  transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244,81,30,.32);
  box-shadow: var(--sh);
}
.testimonial-stars {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-bottom: 22px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(244,81,30,.08);
  color: var(--orange);
  font-size: .78rem;
  letter-spacing: .08em;
}
.rating-icons {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.rating-icons .ui-icon {
  width: 13px;
  height: 13px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.5;
}
.testimonial-quote {
  color: #334155;
  font-size: .96rem;
  line-height: 1.82;
  font-weight: 600;
}
.testimonial-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.testimonial-foot h3 {
  color: var(--ink);
  font-size: .94rem;
  font-weight: 900;
  margin-bottom: 5px;
}
.testimonial-foot p {
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.45;
}
.testimonial-foot span {
  flex-shrink: 0;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--bg3);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  white-space: nowrap;
}
/* ─── Client Industry Grid ───────────────────────────── */
.client-industry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 40px;
}
.ci-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 18px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.ci-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh);
  border-color: rgba(244,81,30,.35);
}
.ci-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(244,81,30,.08);
  color: var(--orange);
}
.ci-icon .ui-icon { width: 21px; height: 21px; }
.ci-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ci-tag {
  font-size: .64rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--orange);
}
.ci-card strong {
  display: block;
  font-size: .85rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}
.ci-result {
  font-size: .76rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}

/* ─── Clients & Partners Panel ───────────────────────── */
.clients-sec {
  position: relative;
  overflow: hidden;
}
.clients-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 8%, rgba(244,81,30,.08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.68), rgba(248,250,252,.94));
}
.clients-sec .shell {
  position: relative;
  z-index: 1;
}
.clients-wrap {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(560px, 1.12fr);
  gap: 34px;
  align-items: start;
  margin-bottom: 30px;
}
.clients-wrap > div:first-child {
  position: sticky;
  top: 96px;
  padding-top: 10px;
}
.clients-wrap h2 {
  max-width: 720px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 18px;
}
.clients-panel {
  padding: 24px;
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(148,163,184,.28);
  box-shadow: 0 24px 70px rgba(15,23,42,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.clients-panel h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.clients-panel h3::after {
  content: "10 verticals";
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(244,81,30,.09);
  color: var(--orange);
  font-size: .66rem;
  letter-spacing: .06em;
}
.client-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.client-chip {
  position: relative;
  min-height: 88px;
  padding: 16px 16px 15px;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 12px 32px rgba(15,23,42,.045);
  transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr);
}
.client-chip::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--orange), rgba(255,121,77,.2));
}
.client-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(244,81,30,.32);
  box-shadow: 0 18px 44px rgba(15,23,42,.09);
}
.client-chip span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: .66rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.client-chip strong {
  display: block;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 900;
  line-height: 1.3;
}

/* ─── Partner Divider ────────────────────────────────── */
.partner-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.partner-divider::before,
.partner-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.partner-divider span {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  white-space: nowrap;
}

/* ─── Partner Strip ──────────────────────────────────── */
.partner-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  padding-top: 44px;
}
.partner-strip::before {
  content: "International platforms";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.partner-logo {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 14px 18px;
  border: 1.5px solid rgba(15,23,42,.08);
  border-radius: var(--r-sm);
  background: #fff;
  box-shadow: 0 12px 32px rgba(15,23,42,.045);
  color: var(--ink);
  font-size: .92rem;
  font-weight: 900;
  text-align: center;
  transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr);
}
.partner-logo:hover {
  transform: translateY(-3px);
  border-color: rgba(244,81,30,.34);
  box-shadow: 0 18px 40px rgba(15,23,42,.1);
}
.partner-logo img {
  max-height: 32px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(1);
  opacity: .65;
  transition: filter var(--tr), opacity var(--tr);
}
.partner-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}
.partner-logo span {
  font-size: clamp(.78rem, 1.2vw, .95rem);
  font-weight: 900;
  color: #1f2937;
  letter-spacing: .01em;
  text-align: center;
}

/* ─── Footer ─────────────────────────────────────────── */
.site-footer {
  background: #030912;
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 72px 0 36px;
  color: #fff;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 52px;
}
.foot-about p {
  color: rgba(255,255,255,.4);
  font-size: .88rem;
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
}
.foot-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  color: rgba(255,255,255,.38);
  font-size: .72rem;
  font-weight: 700;
}

.foot-col h4 {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.28);
  margin-bottom: 18px;
}
.foot-col a {
  display: block;
  margin-bottom: 11px;
  color: rgba(255,255,255,.48);
  font-size: .88rem;
  font-weight: 500;
  transition: color var(--tr);
}
.foot-col a:hover { color: #fff; }
address {
  font-style: normal;
  color: rgba(255,255,255,.4);
  font-size: .85rem;
  line-height: 1.75;
}
.footer-contact-links {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}
.footer-contact-links a {
  display: inline-flex;
  width: fit-content;
  color: rgba(255,255,255,.68);
  font-size: .86rem;
  font-weight: 800;
}
.footer-contact-links a:hover { color: #fff; }

.foot-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,.24);
  font-size: .8rem;
}

.sticky-contact {
  position: fixed;
  right: 22px;
  bottom: 18px;
  z-index: 250;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sticky-contact a {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
  transition: transform var(--tr), box-shadow var(--tr);
}
.sticky-contact a:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(0,0,0,.34);
}
.sticky-whatsapp {
  background: #25d366;
}
.sticky-whatsapp svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}
.back-to-top {
  background: rgba(3,9,18,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.back-to-top .ui-icon {
  width: 24px;
  height: 24px;
}

/* ─── Legal / Policy Pages ───────────────────────────── */
.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.legal-hero {
  background: var(--bg);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.legal-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}
.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(244,81,30,.1);
  border: 1px solid rgba(244,81,30,.25);
  color: var(--orange2);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
}
.legal-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -.025em;
}
.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}
.legal-meta span {
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.38);
}
.legal-meta strong { color: rgba(255,255,255,.65); }

/* Legal body content */
.legal-body {
  padding: 64px 0 80px;
  background: var(--white);
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  font-size: .97rem;
  line-height: 1.82;
  color: #374151;
}

.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.015em;
  margin-top: 48px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--line);
}
.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-content p { margin-bottom: 16px; }

.legal-content ul, .legal-content ol {
  margin: 0 0 18px 0;
  padding-left: 22px;
}
.legal-content li { margin-bottom: 8px; }

.legal-content a { color: var(--orange); font-weight: 600; }
.legal-content a:hover { text-decoration: underline; }

.legal-content .highlight-box {
  padding: 20px 24px;
  background: rgba(244,81,30,.06);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 24px 0;
  font-weight: 600;
  color: var(--ink-2);
}

.legal-toc {
  padding: 24px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  margin-bottom: 40px;
}
.legal-toc h3 { margin: 0 0 14px; font-size: .9rem; font-weight: 800; }
.legal-toc ol { margin: 0; padding-left: 18px; }
.legal-toc li { margin-bottom: 6px; font-size: .88rem; }
.legal-toc a { color: var(--orange); font-weight: 700; }

/* ─── Career Page ────────────────────────────────────── */
.career-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.career-val {
  padding: 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r);
  transition: background var(--tr), border-color var(--tr);
}
.career-val:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(244,81,30,.3);
}
.career-val-icon { font-size: 1.8rem; margin-bottom: 14px; }
.career-val h3 { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.career-val p { color: rgba(255,255,255,.5); font-size: .88rem; line-height: 1.65; }

.no-openings {
  text-align: center;
  padding: 64px 32px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  max-width: 600px;
  margin: 0 auto;
}
.no-openings-icon { font-size: 3rem; margin-bottom: 16px; line-height: 1; }
.no-openings h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 12px; }
.no-openings p { color: var(--muted); line-height: 1.75; margin-bottom: 24px; }

.perks-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.perk-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
}
.perk-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(244,81,30,.09);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.perk-card h3 { font-size: .9rem; font-weight: 800; margin-bottom: 4px; }
.perk-card p { color: var(--muted); font-size: .83rem; line-height: 1.55; }

/* ─── FAQ Accordion ──────────────────────────────────── */
.faq-list { display: grid; gap: 10px; }

details.faq-item {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color var(--tr);
}
details.faq-item[open] { border-color: rgba(244,81,30,.4); }

summary.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 800;
  font-size: .95rem;
  color: var(--ink);
  list-style: none;
  user-select: none;
  line-height: 1.4;
}
summary.faq-q::-webkit-details-marker { display: none; }
summary.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--tr);
}
details.faq-item[open] summary.faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.8;
}
.faq-a p { margin-bottom: 10px; }
.faq-a p:last-child { margin-bottom: 0; }

/* ─── Why US Grid ────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  counter-reset: why-card;
}

.why-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,247,243,.58)),
    var(--white);
  border: 1px solid rgba(148,163,184,.28);
  border-radius: 14px;
  box-shadow: 0 16px 45px rgba(15,23,42,.05);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr), background var(--tr);
}
.why-card::before {
  counter-increment: why-card;
  content: "0" counter(why-card);
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(15,23,42,.08);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}
.why-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), rgba(255,121,77,.18));
  opacity: .85;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 70px rgba(15,23,42,.1);
  border-color: rgba(244,81,30,.34);
  background:
    linear-gradient(135deg, #fff, rgba(255,241,235,.78)),
    var(--white);
}
.why-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(244,81,30,.12), rgba(255,121,77,.06));
  color: var(--orange);
  box-shadow: inset 0 0 0 1px rgba(244,81,30,.14);
}
.why-icon .ui-icon {
  width: 24px;
  height: 24px;
}
.why-card h3 {
  position: relative;
  z-index: 1;
  max-width: 82%;
  font-size: 1.08rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--ink);
}
.why-card > p {
  position: relative;
  z-index: 1;
  color: #475569;
  font-size: .92rem;
  line-height: 1.78;
  margin-bottom: 0;
}

/* ─── Story Section ──────────────────────────────────── */
.story-wrap {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: start;
}
.story-img {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  position: sticky;
  top: 100px;
}
.story-img img { width: 100%; height: 500px; object-fit: cover; display: block; }

.story-text > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 18px;
}
.story-quote {
  margin: 28px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--orange);
  background: rgba(244,81,30,.05);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  color: var(--ink-2);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.7;
  font-style: italic;
}

/* ─── Horizontal Timeline ────────────────────────────── */
.h-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  margin-top: 48px;
  gap: 4px;
}
.h-timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10px; right: 10px;
  height: 2px;
  background: rgba(255,255,255,.1);
  z-index: 0;
}
.h-tl-item { position: relative; padding-top: 52px; padding-right: 12px; }
.h-tl-dot {
  position: absolute;
  top: 10px; left: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--bg);
  z-index: 1;
  box-shadow: 0 0 0 2px rgba(244,81,30,.4);
}
.tl-period {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--orange2);
  margin-bottom: 6px;
}
.h-tl-item h4 { font-size: .92rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.h-tl-item p { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.55; }

/* ─── Fits / Not Fits ────────────────────────────────── */
.fits-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.fits-box {
  padding: 26px;
  border-radius: var(--r-sm);
  border: 1.5px solid;
}
.fits-box.yes {
  background: rgba(16,185,129,.04);
  border-color: rgba(16,185,129,.28);
}
.fits-box.no {
  background: rgba(239,68,68,.04);
  border-color: rgba(239,68,68,.22);
}
.fits-box h3 {
  font-size: .88rem;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fits-box.yes h3 { color: var(--green); }
.fits-box.no  h3 { color: #ef4444; }
.fits-box ul { margin: 0; padding-left: 18px; }
.fits-box li { font-size: .87rem; color: var(--muted); margin-bottom: 9px; line-height: 1.5; }

/* ─── Problem List ───────────────────────────────────── */
.problem-list { display: grid; gap: 10px; }
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 18px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-size: .9rem;
  color: #4b5563;
  line-height: 1.55;
}
.problem-item::before {
  content: '!';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(245,158,11,.12);
  color: #f59e0b;
  font-size: .75rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── Deliverable Grid ───────────────────────────────── */
.deliv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }

.deliv-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink-2);
  line-height: 1.45;
}
.deliv-item::before {
  content: '';
  width: 20px; height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg width='10' height='7' viewBox='0 0 10 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.2L3.5 6L9 1' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/11px no-repeat;
  margin-top: 1px;
}

/* ─── Next Steps (contact) ───────────────────────────── */
.next-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 24px;
}
.next-steps::before {
  content: '';
  position: absolute;
  top: 27px; left: 28px; right: 28px;
  height: 2px;
  background: var(--line);
}
.next-step { position: relative; padding-top: 68px; }
.ns-num {
  position: absolute;
  top: 0; left: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900;
  color: #fff;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(244,81,30,.32);
}
.next-step h3 { font-size: .97rem; font-weight: 800; margin-bottom: 8px; }
.next-step p { color: var(--muted); font-size: .87rem; line-height: 1.65; }

/* ─── Values Grid ────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.val-card {
  padding: 26px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  transition: transform var(--tr), box-shadow var(--tr);
}
.val-card:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.val-icon { font-size: 1.8rem; margin-bottom: 12px; line-height: 1; }
.val-card h3 { font-size: .97rem; font-weight: 800; margin-bottom: 8px; }
.val-card p { color: var(--muted); font-size: .87rem; line-height: 1.65; margin: 0; }

/* ─── Info Strip ─────────────────────────────────────── */
.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--bg3);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  margin-bottom: 52px;
}
.is-cell {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,.07);
  text-align: center;
}
.is-cell:last-child { border-right: none; }
.is-cell .is-icon { font-size: 1.7rem; margin-bottom: 8px; line-height: 1; }
.is-cell h4 { color: #fff; font-size: .95rem; font-weight: 800; margin-bottom: 4px; }
.is-cell p { color: rgba(255,255,255,.42); font-size: .82rem; line-height: 1.5; margin: 0; }

/* ─── About page additions ───────────────────────────── */
.about-approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.appr-card {
  padding: 28px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.appr-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh);
  border-color: rgba(244,81,30,.28);
}
.appr-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(244,81,30,.09);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.appr-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.appr-card p { color: var(--muted); font-size: .88rem; line-height: 1.68; margin: 0; }

/* ─── Industry detail expand ─────────────────────────── */
.ind-intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.ind-intro-card {
  padding: 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-sm);
  text-align: center;
}
.ind-intro-card .iic-icon { font-size: 1.8rem; margin-bottom: 10px; }
.ind-intro-card h3 { color: #fff; font-size: .95rem; font-weight: 800; margin-bottom: 6px; }
.ind-intro-card p { color: rgba(255,255,255,.48); font-size: .82rem; line-height: 1.55; margin: 0; }

/* ─── CEO Message ────────────────────────────────────── */
.ceo-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}
.ceo-photo-card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.ceo-photo-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.ceo-name-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 20px 20px;
  background: linear-gradient(to top, rgba(4,12,24,.96), transparent);
  color: #fff;
}
.ceo-name-badge strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 4px;
}
.ceo-name-badge span {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--orange2);
}
.ceo-quote {
  margin: 24px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--orange);
  background: rgba(244,81,30,.05);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.75;
  font-style: italic;
}
.ceo-body {
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.82;
  margin-bottom: 16px;
}
.ceo-sig {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: .95rem;
  font-weight: 800;
  font-style: italic;
}

/* ─── Mission & Vision ───────────────────────────────── */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.mv-card {
  padding: 36px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r);
  transition: border-color var(--tr), background var(--tr);
}
.mv-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(244,81,30,.28);
}
.mv-card-accent {
  background: rgba(244,81,30,.07);
  border-color: rgba(244,81,30,.22);
}
.mv-card-accent:hover {
  background: rgba(244,81,30,.11);
  border-color: rgba(244,81,30,.4);
}
.mv-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 14px;
}
.mv-label {
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--orange2);
  margin-bottom: 10px;
}
.mv-card h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 14px;
}
.mv-card p {
  color: rgba(255,255,255,.55);
  font-size: .92rem;
  line-height: 1.78;
  margin-bottom: 20px;
}
.mv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}
.mv-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.65);
  font-size: .87rem;
  line-height: 1.5;
}
.mv-list li::before {
  content: '';
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--orange) url("data:image/svg+xml,%3Csvg width='10' height='7' viewBox='0 0 10 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.2L3.5 6L9 1' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
}

/* ─── Utils ──────────────────────────────────────────── */
.mt-36 { margin-top: 36px; }
.center { text-align: center; }
.mb-0 { margin-bottom: 0; }

/* ════════════════════════════════════════════════════════
   RESPONSIVE - Desktop to Tablet to Mobile
   Breakpoints: 1100px | 820px | 580px | 400px
════════════════════════════════════════════════════════ */

/* ── Tablet wide (≤ 1100px) ──────────────────────────── */
@media (max-width: 1100px) {
  /* Hero stacks */
  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 80px 0 60px;
  }
  .hero-img-card img { height: 300px; }
  .h-badge-1 { bottom: 16px; left: 14px; }
  .h-badge-2 { top: 16px; right: 14px; }

  /* Stats 2x2 */
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: 1px solid rgba(255,255,255,.06); }
  .stat-cell:nth-child(3) { border-left: none; }

  /* Layouts */
  .split-2col     { grid-template-columns: 1fr; }
  .svc-why-wrap   { grid-template-columns: 1fr; }
  .ceo-wrap       { grid-template-columns: 1fr; gap: 36px; }
  .ceo-photo-card img { height: 320px; }
  .mv-grid        { grid-template-columns: 1fr; }
  .cta-inner      { grid-template-columns: 1fr; }
  .cta-btns       { flex-direction: row; flex-wrap: wrap; }
  .foot-grid      { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-grid   { grid-template-columns: repeat(2, 1fr); }
  .story-wrap     { grid-template-columns: 1fr; gap: 40px; }
  .story-img      { position: static; }
  .story-img img  { height: 300px; }
  .h-timeline     { grid-template-columns: repeat(3, 1fr); }
  .next-steps     { grid-template-columns: repeat(2, 1fr); }
  .next-steps::before { display: none; }
  .info-strip     { grid-template-columns: 1fr; }
  .is-cell        { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .ind-intro      { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid     { grid-template-columns: 1fr; }
  .testimonial-card     { min-height: auto; }
  .clients-wrap         { grid-template-columns: 1fr; gap: 24px; }
  .clients-wrap > div:first-child { position: static; }
  .client-industry-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .partner-strip        { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ── Tablet narrow / large mobile (≤ 820px) ─────────── */
@media (max-width: 820px) {
  body { padding-bottom: 72px; }

  /* ── NAV FIX ── */
  .nav-toggle { display: flex; }
  .nav-cta    { display: none !important; } /* hide CTA button */

  /* Mobile nav dropdown — full-width below header */
  nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    z-index: 300;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 16px 16px;
    background: rgba(4, 12, 24, .98);
    border-bottom: 1px solid rgba(255,255,255,.07);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 16px 48px rgba(0,0,0,.4);
  }
  nav.open { display: flex; }
  nav a {
    padding: 13px 16px;
    border-radius: var(--r-sm);
    font-size: .95rem;
    color: rgba(255,255,255,.75);
    border: 1px solid transparent;
  }
  nav a:hover, nav a[aria-current="page"] {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.08);
    color: #fff;
  }

  /* Nav wrap: logo left, toggle right — no extra columns */
  .nav-wrap {
    position: relative;
    justify-content: space-between;
  }
  .nav-wrap nav { flex: none; } /* don't grow in the flexbox on mobile */

  /* Grids to 2 cols */
  .svc-grid             { grid-template-columns: 1fr; }
  .sub-grid             { grid-template-columns: repeat(2, 1fr); }
  .ind-grid             { grid-template-columns: repeat(2, 1fr); }
  .feat-grid            { grid-template-columns: repeat(2, 1fr); }
  .team-grid            { grid-template-columns: repeat(2, 1fr); }
  .why-grid             { grid-template-columns: 1fr; }
  .fits-wrap            { grid-template-columns: 1fr; }
  .deliv-grid           { grid-template-columns: 1fr; }
  .values-grid          { grid-template-columns: repeat(2, 1fr); }
  .about-approach-grid  { grid-template-columns: 1fr; }
  .career-values        { grid-template-columns: repeat(2, 1fr); }
  .perks-grid           { grid-template-columns: 1fr; }
  .contact-wrap         { grid-template-columns: 1fr; }
  .h-timeline           { grid-template-columns: repeat(2, 1fr); }
  .h-timeline::before   { display: none; }
  .ind-intro            { grid-template-columns: 1fr; }
  .client-chip-grid     { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .client-industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partner-strip        { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .response-wrap      { padding: 42px 0; align-items: flex-start; }
  .response-card      { grid-template-columns: 1fr; }
  .response-aside     { min-height: 250px; }
  .response-main      { padding: 34px; }

  /* Hero adjustments */
  h1 { font-size: clamp(2.2rem, 7vw, 3.4rem); }
  .hero-metrics { gap: 24px; flex-wrap: wrap; }
  .sec { padding: 64px 0; }
}

/* ── Mobile (≤ 580px) ────────────────────────────────── */
@media (max-width: 580px) {
  .shell { width: calc(100% - 28px); }

  /* Typography */
  h1   { font-size: 2.1rem; line-height: 1.02; letter-spacing: -.02em; }
  h2   { font-size: 1.7rem; }

  /* Hero */
  .hero-wrap        { padding: 60px 0 50px; }
  .hero-img-card img { height: 220px; }
  .h-badge          { padding: 10px 12px; }
  .h-badge strong   { font-size: .88rem; }
  .h-badge span     { font-size: .62rem; }
  .hero-metrics     { gap: 18px; }
  .hm-item strong   { font-size: 1.3rem; }

  /* Hero actions stack */
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Stat band */
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { padding: 28px 16px; }
  .stat-cell:nth-child(2) { border-right: 1px solid rgba(255,255,255,.06); }
  .stat-cell:nth-child(3) { border-left: none; }

  /* Cards to 1 col */
  .svc-grid,
  .svc-why-wrap,
  .sub-grid,
  .ind-grid,
  .feat-grid,
  .team-grid,
  .process-grid,
  .values-grid,
  .career-values,
  .client-chip-grid { grid-template-columns: 1fr; }
  .clients-panel,
  .testimonial-card {
    padding: 20px;
  }
  .clients-wrap h2 {
    font-size: 1.85rem;
  }
  .clients-panel h3 {
    align-items: flex-start;
    flex-direction: column;
  }
  .testimonial-foot {
    align-items: flex-start;
    flex-direction: column;
  }
  .partner-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .partner-logo {
    min-height: 60px;
    padding: 12px 8px;
  }

  /* Industry cards shorter on phone */
  .ind-card { height: 200px; }
  .team-card { height: 300px; }

  .svc-why-sec {
    padding: 52px 0;
  }
  .svc-why-sec .sec-head {
    margin-bottom: 22px;
  }
  .svc-why-copy p {
    padding: 18px;
    font-size: .92rem;
    line-height: 1.68;
  }
  .svc-why-panel {
    padding: 22px;
  }
  .svc-why-panel h3 {
    font-size: 1.08rem;
  }

  /* Next steps */
  .next-steps { grid-template-columns: 1fr; gap: 36px; }
  .next-steps::before { display: none; }

  /* CTA */
  .cta-inner   { gap: 28px; }
  .cta-btns    { flex-direction: column; align-items: flex-start; width: 100%; }
  .cta-btns .btn { width: 100%; justify-content: center; }

  /* Footer */
  .foot-grid    { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom  { flex-direction: column; align-items: flex-start; gap: 10px; }
  .foot-bottom span:last-child { flex-direction: column; gap: 8px; display: flex; }

  /* Contact form */
  .contact-wrap { gap: 18px; }
  .form-row       { grid-template-columns: 1fr; }
  .contact-cards  { gap: 10px; }
  .c-card {
    padding: 14px;
    gap: 12px;
    border-radius: 14px;
  }
  .c-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: .9rem;
  }
  .c-card h3 { font-size: .84rem; }
  .c-card p { font-size: .78rem; }
  .form-box {
    padding: 20px;
    border-radius: 16px;
    box-shadow: none;
  }
  .form-box h3 { font-size: 1.2rem; }
  .form-box .form-sub {
    font-size: .84rem;
    line-height: 1.65;
    margin-bottom: 18px;
  }
  .form-quick-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
  }
  .form-quick-links a {
    min-height: 40px;
    padding: 0 8px;
    font-size: .78rem;
  }
  .form-field {
    gap: 6px;
    margin-bottom: 12px;
  }
  .form-field label {
    font-size: .68rem;
    letter-spacing: .04em;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    min-height: 46px;
    padding: 12px 13px;
    font-size: .9rem;
    border-radius: 12px;
  }
  .form-field textarea { min-height: 120px; }
  .response-wrap {
    padding: 24px 0;
  }
  .response-card {
    border-radius: 14px;
  }
  .response-aside {
    min-height: 220px;
    padding: 26px 22px;
  }
  .response-brand {
    top: 20px;
    left: 20px;
    width: 128px;
  }
  .response-aside h2 {
    font-size: 1.55rem;
  }
  .response-main {
    padding: 26px 20px;
  }
  .response-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    margin-bottom: 18px;
  }
  .response-main h1 {
    font-size: 2rem;
    line-height: 1.05;
  }
  .response-copy {
    font-size: .92rem;
    line-height: 1.65;
  }
  .response-next {
    margin-top: 22px;
    padding: 14px;
  }
  .response-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .response-actions .btn {
    width: 100%;
  }
  .sticky-contact {
    left: auto;
    right: 14px;
    bottom: 12px;
  }
  .sticky-contact a {
    width: 48px;
    height: 48px;
  }

  /* Sections */
  .sec          { padding: 52px 0; }
  .sec-head     { margin-bottom: 32px; }

  /* Legal */
  .legal-hero   { padding: 60px 0 44px; }
  .legal-meta   { flex-direction: column; gap: 8px; }
  .legal-content h2 { font-size: 1.15rem; }

  /* Marquee */
  .marquee-track { animation-duration: 18s; }
}

/* ── Small mobile (≤ 400px) ──────────────────────────── */
@media (max-width: 400px) {
  h1 { font-size: 1.85rem; }
  .brand { width: 130px; }
  .nav-toggle { width: 36px; height: 36px; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-cell { border-right: none !important; border-left: none !important; }
  .hero-badge-2 { display: none; }
  .btn-lg { min-height: 48px; font-size: .88rem; }
  .form-quick-links { grid-template-columns: 1fr; }
  .form-box { padding: 18px; }
  .form-field input,
  .form-field select,
  .form-field textarea {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Final floating action override */
.sticky-contact {
  position: fixed !important;
  right: 22px !important;
  bottom: 22px !important;
  left: auto !important;
  transform: none !important;
  z-index: 999 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  width: auto !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.sticky-contact a {
  width: 54px !important;
  height: 54px !important;
  min-height: 54px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  text-decoration: none !important;
}
.sticky-contact .sticky-whatsapp {
  background: #25d366 !important;
  box-shadow: 0 16px 36px rgba(37, 211, 102, .34) !important;
}
.sticky-contact .sticky-whatsapp svg {
  width: 31px !important;
  height: 31px !important;
  fill: #fff !important;
}
.sticky-contact .back-to-top {
  background: rgba(3, 9, 18, .92) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  font-size: 1.25rem !important;
  box-shadow: 0 16px 36px rgba(0,0,0,.25) !important;
}

/* SEO breadcrumb */
.breadcrumb-bar {
  display: none;
  background: #08111f;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.breadcrumb {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.56);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .05em;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.breadcrumb::-webkit-scrollbar { display: none; }
.breadcrumb a {
  color: rgba(255,255,255,.68);
  text-decoration: none;
  transition: color var(--tr);
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb span[aria-current="page"] { color: var(--orange); }
.breadcrumb-sep {
  color: rgba(255,255,255,.25) !important;
  font-weight: 700;
}

@media (max-width: 820px) {
  body { padding-bottom: 112px !important; }

  .sticky-contact {
    right: max(14px, env(safe-area-inset-right)) !important;
    bottom: calc(28px + env(safe-area-inset-bottom, 0px)) !important;
  }
  .sticky-contact a {
    width: 52px !important;
    height: 52px !important;
    min-height: 52px !important;
  }
}

@media (max-width: 580px) {
  .sticky-contact {
    right: max(12px, env(safe-area-inset-right)) !important;
    bottom: calc(30px + env(safe-area-inset-bottom, 0px)) !important;
    gap: 9px !important;
  }
  .sticky-contact a {
    width: 50px !important;
    height: 50px !important;
    min-height: 50px !important;
  }
}
