/* ==========================================================================
   MySRIS Technology — Corporate Site Stylesheet
   ========================================================================== */

:root {
  /* Brand */
  --coral: #E3563F;
  --coral-dark: #C13F2B;
  --coral-light: #FF7A5C;
  --coral-tint: #FBEAE6;

  /* Corporate ink */
  --navy: #10192B;
  --navy-2: #1A2540;
  --ink: #1C2430;
  --slate: #454E5C;       /* darkened from #5B6472 for AA-compliant body-text contrast */
  --slate-light: #6B7482; /* darkened from #8A93A0 for readable secondary text */

  /* Surfaces */
  --paper: #F7F7F5;
  --paper-2: #FFFFFF;
  --line: #E3E5E8;
  --line-dark: #2B3550;

  /* Type */
  --font-head: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;

  /* Rhythm */
  --container: 1180px;
  --radius-s: 4px;
  --radius-m: 6px;
  --shadow-card: 0 1px 2px rgba(16, 25, 43, 0.06), 0 8px 24px rgba(16, 25, 43, 0.06);
  --shadow-card-hover: 0 6px 14px rgba(16, 25, 43, 0.10), 0 20px 44px rgba(16, 25, 43, 0.12);
  --shadow-glow: 0 10px 30px rgba(227, 86, 63, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.18;
  margin: 0 0 0.5em 0;
  letter-spacing: -0.01em;
}

h1 { font-weight: 800; }
h2 { font-weight: 800; }
h3 { font-weight: 700; }
h4 { font-weight: 700; }

p { margin: 0 0 1em 0; color: var(--slate); max-width: 62ch; font-size: 1.02rem; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

section { position: relative; }

:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.09s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.23s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.30s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.37s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-s);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease-spring), box-shadow 0.25s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s var(--ease);
}
.btn:hover::before { left: 130%; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--coral); color: #fff; }
.btn-primary:hover { background: var(--coral-dark); box-shadow: var(--shadow-glow); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--coral); color: var(--coral-dark); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 200;
  will-change: transform;
}

/* ---------- Header ---------- */
.topbar {
  background: var(--navy);
  color: #C7CCD6;
  font-size: 0.8rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 16px;
}
.topbar-contact { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-contact a:hover { color: #fff; }
.topbar-social { display: flex; gap: 14px; opacity: 0.8; }
.topbar-social a:hover { opacity: 1; color: var(--coral); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s var(--ease), padding 0.25s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 4px 18px rgba(16,25,43,0.06); }

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.brand img { height: 40px; width: auto; }

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
}
.nav-links a {
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--coral);
  transition: right 0.3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.is-active::after { right: 0; }
.nav-links a.is-active { color: var(--coral-dark); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--slate);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 9px 14px;
  border-radius: var(--radius-s);
  border: 1px solid var(--line);
}
.nav-wa:hover { border-color: #25D366; color: #128C4A; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.28;
  pointer-events: none;
  animation: drift 16s ease-in-out infinite alternate;
}
.hero::before {
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--coral) 0%, transparent 70%);
  top: -140px; right: -80px;
}
.hero::after {
  width: 320px; height: 320px;
  background: radial-gradient(circle, #3B5CFF 0%, transparent 70%);
  opacity: 0.14;
  bottom: -120px; left: 8%;
  animation-delay: -8s;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-30px, 30px) scale(1.08); }
}
.hero-grid { position: relative; z-index: 1; }
.hero-copy > * { opacity: 0; transform: translateY(16px); animation: rise 0.7s var(--ease) forwards; }
.hero-eyebrow { animation-delay: 0.05s; }
.hero h1 { animation-delay: 0.15s; }
.hero p.lead { animation-delay: 0.25s; }
.hero-ctas { animation-delay: 0.35s; }
.hero-meta { animation-delay: 0.45s; }
@keyframes rise {
  to { opacity: 1; transform: none; }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
  padding: 88px 0 76px;
}
.hero-eyebrow {
  color: var(--coral);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--coral);
  display: inline-block;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.15rem);
  max-width: 15ch;
}
.hero p.lead {
  color: #C7CCD6;
  font-size: 1.08rem;
  max-width: 46ch;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }
.hero-meta {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-meta div { font-size: 0.85rem; color: #A6ACB9; }
.hero-meta strong {
  display: block;
  color: #fff;
  font-family: var(--font-head);
  font-size: 1rem;
  margin-bottom: 2px;
}

.hero-media { position: relative; }
.hero-media .frame {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-media img { width: 100%; height: 460px; object-fit: cover; }
.hero-media .tag {
  position: absolute;
  left: 22px;
  bottom: -22px;
  background: #fff;
  color: var(--navy);
  padding: 16px 20px;
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-card-hover);
  font-family: var(--font-head);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 280px;
}
.hero-media .tag .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--coral); flex: none;
}
.hero-media .tag strong { display: block; font-size: 0.95rem; }
.hero-media .tag span { font-size: 0.78rem; color: var(--slate); }

/* ---------- Section chrome ---------- */
.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }
.section-alt { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-dark { background: var(--navy); color: #fff; }
.section-dark p { color: #C7CDD8; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--coral-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.kicker::before { content: ""; width: 22px; height: 2px; background: var(--coral); }
.section-dark .kicker { color: var(--coral); }

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center p { margin-left: auto; margin-right: auto; }
.section-head.split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  max-width: none;
}

/* ---------- Problem strip ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.problem-item {
  background: var(--paper-2);
  padding: 26px 22px;
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 500;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), padding-left 0.25s var(--ease);
}
.problem-item:hover {
  background: var(--navy);
  color: #fff;
  padding-left: 28px;
}

/* ---------- Services (zig-zag) ---------- */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
}
.service-row:not(:last-child) { border-bottom: 1px solid var(--line); }
.service-row.is-reversed .service-media { order: 2; }
.service-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-m);
  transition: transform 0.6s var(--ease);
  overflow: hidden;
}
.service-media {
  position: relative;
  border-radius: var(--radius-m);
  isolation: isolate;
}
.service-media { overflow: visible; }
.service-media > img { clip-path: inset(0 round 6px); }
.service-row:hover .service-media img { transform: scale(1.05); }
.service-index {
  position: absolute;
  top: -14px; left: -14px;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: var(--radius-s);
}
.service-copy h3 { font-size: 1.5rem; margin-bottom: 12px; }
.service-copy .service-tagline {
  color: var(--coral-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.service-caps {
  list-style: none;
  margin: 20px 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}
.service-caps li {
  font-size: 0.9rem;
  color: var(--ink);
  padding-left: 18px;
  position: relative;
}
.service-caps li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 7px; height: 7px;
  background: var(--coral);
  border-radius: 1px;
}

/* ---------- Consulting ---------- */
.consult-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.consult-card {
  background: var(--navy-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-m);
  padding: 34px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.consult-card:hover { transform: translateY(-4px); border-color: var(--coral); }
.consult-card h4 { font-size: 1.15rem; margin-bottom: 6px; }
.consult-card .role { color: var(--coral); font-size: 0.82rem; font-weight: 700; font-family: var(--font-head); margin-bottom: 16px; display: block; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag-chip {
  font-size: 0.78rem;
  color: #C7CCD6;
  border: 1px solid var(--line-dark);
  padding: 6px 12px;
  border-radius: 20px;
}

/* ---------- Industries ---------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.industry-card {
  border-radius: var(--radius-m);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.industry-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.6s var(--ease); }
.industry-card:hover img { transform: scale(1.06); }
.industry-card .body { padding: 20px 22px 24px; background: var(--paper-2); }
.industry-card h4 { font-size: 1.02rem; margin-bottom: 6px; }
.industry-card p { font-size: 0.88rem; margin: 0; }

/* ---------- Case study ---------- */
.case-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.case-media { overflow: hidden; border-radius: var(--radius-m); }
.case-media img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-m); transition: transform 0.7s var(--ease); }
.case-media:hover img { transform: scale(1.04); }
.case-block { margin-bottom: 22px; }
.case-block .label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--coral-dark);
  margin-bottom: 6px;
  display: block;
}
.case-block p { color: var(--ink); }

/* ---------- Why us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.why-item {
  background: var(--paper-2);
  padding: 30px 28px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  position: relative;
}
.why-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--coral);
  transition: height 0.3s var(--ease);
}
.why-item:hover { background: #FCFAF9; }
.why-item:hover::before { height: 100%; }
.why-item h4 { font-size: 1.05rem; margin-bottom: 8px; color: var(--navy); }
.why-item p { font-size: 0.92rem; margin: 0; color: var(--slate); }

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 56px;
  font-size: 0.94rem;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.compare-table th {
  font-family: var(--font-head);
  text-align: left;
  padding: 16px 22px;
  color: var(--navy);
  font-size: 0.85rem;
  background: var(--paper);
  border-bottom: 2px solid var(--line);
}
.compare-table th:first-child { color: var(--slate-light); font-weight: 600; background: var(--paper-2); }
.compare-table th.hl { background: var(--coral); color: #fff; }
.compare-table td {
  padding: 17px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  vertical-align: top;
  background: var(--paper-2);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { color: var(--slate-light); width: 26%; font-weight: 600; }
.compare-table td:nth-child(2) { color: var(--slate); }
.compare-table tr td:nth-child(3) { color: var(--navy); font-weight: 600; background: var(--coral-tint); }

/* ---------- Process ---------- */
.process-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 20px;
}
.process-row::before {
  content: "";
  position: absolute;
  top: 22px; left: 5%; right: 5%;
  height: 1px;
  background: var(--line);
}
.process-step { padding: 0 20px 0 0; position: relative; }
.process-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 2px solid var(--coral);
  color: var(--coral-dark);
  font-family: var(--font-head);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  margin-bottom: 18px;
}
.process-step h4 { font-size: 1.02rem; margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; }

/* ---------- Training ---------- */
.training-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.training-media { position: relative; overflow: hidden; border-radius: var(--radius-m); }
.training-media img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius-m); transition: transform 0.7s var(--ease); }
.training-media:hover img { transform: scale(1.04); }
.training-list { list-style: none; margin: 20px 0 28px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.training-list li { font-size: 0.9rem; padding-left: 18px; position: relative; }
.training-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; background: var(--coral); }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 30px 28px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.testi-card.is-spotlight {
  border-color: var(--coral);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
}
.testi-card .mark { font-family: var(--font-head); font-size: 2.4rem; color: var(--coral); line-height: 1; margin-bottom: 8px; display: block; }
.testi-card p { color: var(--ink); font-size: 0.96rem; }
.testi-who { font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; color: var(--navy); margin-top: 16px; }
.testi-who span { display: block; font-weight: 500; color: var(--slate); font-size: 0.82rem; margin-top: 2px; }
.testi-dots { display: flex; justify-content: center; gap: 9px; margin-top: 30px; }
.testi-dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.testi-dots button.is-active { background: var(--coral); transform: scale(1.25); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--coral);
  color: #fff;
  padding: 62px 0;
}
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 6px; font-size: 1.6rem; }
.cta-band p { color: rgba(255,255,255,0.9); margin: 0; }
.cta-band .btn-primary { background: var(--navy); }
.cta-band .btn-primary:hover { background: #060B14; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-card {
  background: var(--navy-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-m);
  padding: 24px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.contact-card:hover { border-color: var(--coral); transform: translateY(-3px); }
.contact-card .label { font-size: 0.78rem; color: var(--coral); font-family: var(--font-head); font-weight: 700; margin-bottom: 8px; display: block; }
.contact-card a, .contact-card div.value { color: #fff; font-weight: 600; font-size: 0.98rem; }
.contact-card a:hover { color: var(--coral); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #A6ACB9; padding-top: 64px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-grid img { height: 34px; margin-bottom: 16px; }
.footer-grid h5 { color: #fff; font-family: var(--font-head); font-size: 0.9rem; margin-bottom: 18px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 11px; font-size: 0.9rem; }
.footer-grid a:hover { color: var(--coral); }
.footer-social { display: flex; gap: 14px; margin-top: 18px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; font-size: 0.82rem; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a:hover { color: var(--coral); }

/* ---------- Floating buttons ---------- */
.float-btn {
  position: fixed;
  right: 26px;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(16,25,43,0.25);
  z-index: 90;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.float-btn:hover { transform: translateY(-3px); }
.whatsapp-btn { bottom: 26px; background: #25D366; color: #fff; }
.top-btn {
  bottom: 92px;
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
  opacity: 0;
  pointer-events: none;
}
.top-btn.is-visible { opacity: 1; pointer-events: auto; }

/* ---------- Mobile ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; padding: 48px 0 64px; }
  .hero-media { order: -1; }
  .hero-media img { height: 300px; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 30px; padding: 40px 0; }
  .service-row.is-reversed .service-media { order: 0; }
  .service-media img { height: 260px; }
  .consult-grid, .consult-grid[style] { grid-template-columns: 1fr !important; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .case-grid { grid-template-columns: 1fr; gap: 30px; }
  .why-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .process-row::before { display: none; }
  .training-grid { grid-template-columns: 1fr; gap: 30px; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .topbar-contact { display: none; }
  .nav-links, .nav-wa { display: none; }
  .nav-toggle { display: block; }
  .site-header .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(16,25,43,0.08);
  }
  .site-header .nav-links.is-open { display: flex; }
  .site-header .nav-links a { display: block; padding: 16px 28px; border-bottom: 1px solid var(--line); }
  .site-header .nav-links a::after { display: none; }
  .nav-actions .nav-wa.mobile-visible { display: inline-flex; }

  .problem-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
  .section { padding: 64px 0; }
  .service-caps, .training-list { grid-template-columns: 1fr; }
}
