:root {
  --accent: #4c8fff;
  --max: 1240px;
  --bg: #f5f8fd;
  --surface: #ffffff;
  --surface-2: #eef4ff;
  --line: #d7e2f4;
  --text: #102d63;
  --muted: #5b7097;
  --primary: #2767f5;
  --primary-dark: #174ab8;
  --secondary: #6ca7ff;
  --shadow: 0 16px 38px rgba(32,72,145,.09);
  --shadow-strong: 0 22px 52px rgba(32,72,145,.14);
  --radius: 22px;
  --section-space: clamp(4.5rem,7vw,7rem);
  --section-space-compact: clamp(3.2rem,5vw,5rem);
  --content-measure: 68ch;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #f5f8fd;
}

body {
  margin: 0;
  font-family: Inter,system-ui,Arial,sans-serif;
  background: linear-gradient(180deg,#ffffff 0%,#f7faff 35%,#f3f7fd 100%);
  color: var(--text);
  letter-spacing: -.005em;
}

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

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

button,input,textarea,select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 10px;
  top: 10px;
  z-index: 999;
  background: #000;
  color: #fff;
  padding: 8px 10px;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(167,190,232,.45);
  box-shadow: 0 8px 24px rgba(36,74,145,.055);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 4px;
  gap: 24px;
  min-height: 72px;
}

.brand img {
  height: auto;
  width: 220px;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 23px;
}

.nav-links a {
  font-size: .94rem;
  font-weight: 760;
  color: #18376d;
  position: relative;
}

.nav-links a:hover,.nav-links a.active {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  color: var(--text);
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  line-height: 0;
  transition: border-color .2s ease,background .2s ease,color .2s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: .22s ease;
  border-radius: 13px;
  padding: 0 19px;
  box-shadow: none;
  min-height: 46px;
}

.btn-sm {
  min-height: 42px;
  padding: 0 16px;
  font-size: .95rem;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg,#2c6dff 0%,#235be1 100%);
  box-shadow: 0 12px 24px rgba(39,103,245,.19);
}

.btn-primary:hover {
  box-shadow: 0 16px 30px rgba(39,103,245,.25);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255,255,255,.92);
  border-color: #c8d8f5;
  color: #173a78;
}

.btn-secondary:hover {
  background: #f8fbff;
  border-color: #9ebcf0;
}

.hero {
  overflow: hidden;
  padding: 58px 0 40px;
  background: radial-gradient(circle at 12% 12%,rgba(80,145,255,.10),transparent 28%),
  radial-gradient(circle at 86% 18%,rgba(62,130,255,.09),transparent 30%),
  linear-gradient(180deg,#ffffff 0%,#f7fbff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 46px;
}

.eyebrow {
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #2b6af6;
  font-size: .76rem;
  letter-spacing: .17em;
}

.hero h1 {
  font-size: clamp(3rem,5vw,4.8rem);
  line-height: .95;
  letter-spacing: -.05em;
  margin: 0 0 18px;
  color: #102d63;
  text-wrap: balance;
}

.hero h1 .accent {
  color: var(--secondary);
}

.hero p {
  line-height: 1.7;
  font-size: 1.06rem;
  color: #5a7098;
  max-width: 610px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 26px 0 22px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  color: #4d648f;
  font-weight: 700;
  font-size: .92rem;
  gap: 12px;
}







.section {
  padding: 60px 0;
  padding-block: var(--section-space);
}

.section-header {
  text-align: center;
  margin: 0 auto 18px;
  max-width: 780px;
  margin-bottom: clamp(2rem,3vw,3rem);
}

.section-header h2 {
  letter-spacing: -.04em;
  margin: 8px 0 8px;
  font-size: clamp(2rem,3vw,2.55rem);
  color: #12336c;
}

.section-header p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.cards-6 {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 14px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(58,83,150,.05);
  padding: 20px 18px;
  border-radius: 19px;
  transition: transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}

.card h3 {
  line-height: 1.2;
  margin: 12px 0 8px;
  font-size: 1.02rem;
  color: #113268;
}

.card p {
  margin: 0;
  font-size: .87rem;
  line-height: 1.6;
  color: #61759a;
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: linear-gradient(145deg,#f3f7ff,#e9f0ff);
  border: 1px solid #d4e0f7;
  color: #245bc9;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.process {
  color: #fff;
  background: linear-gradient(135deg,#173f99 0%,#245fcf 58%,#2b6df5 100%);
  box-shadow: 0 22px 50px rgba(28,73,169,.20);
  padding: 34px 28px;
  border-radius: 26px;
}

.process h2,.process p {
  color: #fff;
}

.process .section-header {
  max-width: none;
  margin-bottom: 26px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 14px;
}

.step {
  text-align: center;
}

.step-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  font-weight: 900;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.4);
}

.step h3 {
  font-size: .95rem;
  margin: 0 0 7px;
}

.step p {
  font-size: .82rem;
  line-height: 1.55;
  color: #dfe8ff;
  margin: 0;
}

.quality-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 34px;
}

.quality-copy h2 {
  font-size: 2.1rem;
  letter-spacing: -.04em;
  margin: 10px 0;
}

.quality-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.bullet-list {
  padding: 0;
  margin: 18px 0;
  display: grid;
  gap: 10px;
}

.bullet-list li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
}

.bullet-list i {
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 900;
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  border: 1px solid #cee0ff;
  background: #edf4ff;
  color: #245bc9;
}

.quality-media {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: 24px;
  border-color: #d3e0f5;
  box-shadow: var(--shadow-strong);
}

.quality-media img {
  aspect-ratio: 4/3;
  object-fit: cover;
}
.cta {
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg,#eef5ff 0%,#e3eeff 100%);
  border-color: #cadbf6;
  box-shadow: 0 18px 40px rgba(34,73,143,.10);
  padding: 30px 32px;
}

.cta h2 {
  margin: 0 0 8px;
  font-size: 2rem;
  letter-spacing: -.04em;
  color: #12336c;
}

.cta p {
  margin: 0;
  color: var(--muted);
}

.footer {
  color: #fff;
  margin-top: 0;
  background: linear-gradient(180deg,#123a8c 0%,#0a2c6e 100%);
  border-top: 1px solid rgba(255,255,255,.09);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr repeat(4,1fr);
  gap: 24px;
  padding: 34px 0;
  padding-top: 42px;
  padding-bottom: 34px;
}

.footer-brand img {
  width: 190px;
}

.footer-brand p,.footer a,.footer span {
  color: #d7e5ff;
}

.footer h4 {
  margin: 0 0 10px;
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
}

.footer a,.footer span {
  display: block;
  margin: 8px 0;
  font-size: .88rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 14px 0 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #d7e5ff;
  font-size: .82rem;
}

.page-hero {
  padding: 58px 0 34px;
  background: radial-gradient(circle at 15% 10%,rgba(72,137,255,.10),transparent 30%),
  linear-gradient(180deg,#ffffff 0%,#f5f9ff 100%);
  border-bottom: 1px solid rgba(177,199,237,.42);
}

.page-hero h1 {
  letter-spacing: -.04em;
  margin: 0 0 10px;
  color: #12336c;
  font-size: clamp(2.45rem,4vw,3.45rem);
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.03rem;
}

.page-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.content-card {
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(58,83,150,.05);
  background: linear-gradient(180deg,#fff,#fbfdff);
  border-radius: 20px;
  padding: 24px;
}

.content-card h3 {
  margin: 0 0 10px;
}

.content-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-weight: 700;
}

.field input,.field textarea,.field select {
  border: 1px solid #ccd9f5;
  border-radius: 12px;
  padding: 12px 14px;
  border-color: #cad8ef;
  background: #fbfdff;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.notice {
  color: var(--muted);
  font-size: .9rem;
}

.banner {
  padding: 14px 16px;
  background: #eef4ff;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #345;
}

.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  color: #fff;
  border-radius: 999px;
  font-weight: 900;
  background: linear-gradient(135deg,#2d6df7,#2459d2);
  box-shadow: 0 16px 34px rgba(38,94,216,.28);
  padding: 12px 18px;
  font-size: .92rem;
  min-width: 56px;
  text-align: center;
}

.hero-photo-grid {
  display: grid;
  grid-template-columns: 1.16fr .92fr .92fr;
  gap: 12px;
  align-items: center;
  min-height: 338px;
}

.hero-photo {
  height: 290px;
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(189,207,239,.85);
  box-shadow: 0 18px 42px rgba(39,76,145,.12);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .35s ease;
}

.hero-photo-main {
  height: 330px;
  transform: translateY(-10px);
}

.hero-photo-main img {
  object-position: 52% center;
}

.hero-photo-side:first-of-type img {
  object-position: 48% center;
}

.hero-photo-side:last-of-type img {
  object-position: 56% center;
}

.hero-photo figcaption {
  font-weight: 800;
  font-size: .74rem;
  line-height: 1;
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  color: var(--text);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(210,224,247,.9);
  box-shadow: 0 12px 24px rgba(24,61,128,.12);
}

.hero-photo:hover img {
  transform: scale(1.025);
}

.hero-photo-audio {
  height: 318px;
  transform: translateY(-10px);
}

.hero-photo-multicam {
  height: 280px;
  transform: translateY(18px);
}

.hero-photo-field {
  height: 300px;
  transform: translateY(-2px);
}

.hero-photo-audio img {
  object-position: 54% center;
}

.hero-photo-multicam img {
  object-position: 48% center;
}

.hero-photo-field img {
  object-position: 56% center;
}

.photo-icon {
  display: grid;
  place-items: center;
  font-size: .72rem;
  font-weight: 900;
  flex: 0 0 auto;
  width: 29px;
  height: 29px;
  border-radius: 9px;
  background: #173f98;
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  box-shadow: 0 6px 14px rgba(20,48,95,.2);
}

.photo-icon svg {
  width: 15px;
  height: 15px;
  display: block;
}

.hero-photo figcaption strong {
  display: block;
  font-size: .72rem;
  line-height: 1.05;
}

.hero-photo figcaption small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: .58rem;
  line-height: 1;
}

.task-library-section {
  padding-top: 24px;
  background: linear-gradient(180deg,#f7faff,#f1f6fe);
}

.task-library-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.task-showcase {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(45,74,145,.07);
}

.task-image-wrap {
  position: relative;
  overflow: hidden;
  background: #eef4ff;
}

.task-image-wrap img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}

.task-category {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--text);
  font-size: .8rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(20,48,95,.14);
  backdrop-filter: blur(8px);
}

.task-labels {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 8px;
  padding: 14px;
}

.task-labels span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 7px 9px;
  border: 1px solid #dbe6fb;
  border-radius: 10px;
  background: #f5f8ff;
  color: #38517d;
  font-size: .74rem;
  font-weight: 750;
  text-align: center;
  line-height: 1.25;
}

.training-architecture-section {
  padding-top: 44px;
  background: #fff;
}

.training-capability-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 16px;
}

.training-capability-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(58,83,150,.055);
  transition: .2s ease;
  background: linear-gradient(180deg,#fff 0%,#fbfdff 100%);
  border-radius: 19px;
  padding: 20px;
}

.training-capability-card:hover {
  transform: translateY(-3px);
  border-color: #bad0f6;
  box-shadow: 0 19px 40px rgba(31,73,145,.105);
}

.training-capability-card.featured {
  background: linear-gradient(135deg,#edf4ff,#fff 62%);
  border-color: #bed0fb;
}

.cap-icon {
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  font-weight: 900;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: linear-gradient(145deg,#f3f7ff,#e8f0ff);
  border: 1px solid #d3e0f8;
  color: #245bc9;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95),0 8px 18px rgba(39,83,171,.06);
}

.training-capability-card h3 {
  margin: 0 0 7px;
  font-size: 1.15rem;
}

.training-capability-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: .9rem;
}

.training-capability-card span {
  margin-top: 12px;
  color: var(--primary);
  font-weight: 800;
  font-size: .84rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ego-focus-section {
  background: linear-gradient(180deg,#f7faff 0%,#eef5ff 100%);
  border-top: 1px solid rgba(171,196,238,.35);
  border-bottom: 1px solid rgba(171,196,238,.35);
}

.ego-focus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 34px;
}

.ego-copy h2 {
  font-size: clamp(2rem,3vw,3rem);
  line-height: 1.04;
  letter-spacing: -.045em;
  margin: 8px 0 14px;
  color: #12336c;
}

.ego-copy>p {
  color: var(--muted);
  line-height: 1.7;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 16px;
  margin: 20px 0 0;
  padding: 0;
}

.check-grid li {
  list-style: none;
  position: relative;
  color: #38517d;
  font-size: .88rem;
  font-weight: 700;
  padding-left: 25px;
}

.check-grid li:before {
  color: #22a35a;
  font-weight: 900;
  content: "";
  position: absolute;
  left: 0;
  top: .05em;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #edf4ff;
  border: 1px solid #cfe0ff;
}

.ego-media-stack {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 12px;
  align-items: end;
}

.ego-media-stack figure {
  margin: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #d4e1f5;
  box-shadow: 0 16px 38px rgba(31,73,145,.10);
}

.ego-media-stack figure:first-child {
  transform: translateY(-12px);
}

.ego-media-stack img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.ego-media-stack figure:last-child img {
  height: 280px;
}

.ego-media-stack figcaption {
  padding: 11px 13px;
  color: #38517d;
  font-weight: 800;
  font-size: .78rem;
}

.industries-benefit-section {
  padding-top: 44px;
  background: #fff;
}

.industry-chip-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 10px;
}

.industry-chip-grid span {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 15px;
  font-weight: 800;
  font-size: .86rem;
  text-align: center;
  box-shadow: 0 7px 18px rgba(58,83,150,.04);
  background: #f7faff;
  border-color: #d8e4f7;
  color: #315384;
  transition: .18s ease;
}

.faq-section {
  padding-top: 42px;
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.faq-grid details {
  border: 1px solid var(--line);
  padding: 0 18px;
  box-shadow: 0 8px 22px rgba(58,83,150,.04);
  background: #fbfdff;
  border-radius: 16px;
}

.faq-grid summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 28px 18px 0;
  font-weight: 850;
  position: relative;
  color: #17366d;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary:after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 1.25rem;
  color: var(--primary);
  transform: translateY(-50%) rotate(90deg);
}

.faq-grid details[open] summary:after {
  content: "";
  transform: translateY(-50%) rotate(0deg);
}

.faq-grid details p {
  margin: 0;
  padding: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
  font-size: .9rem;
}

.service-page-hero {
  background: linear-gradient(180deg,#f6f9ff,#fff);
  border-bottom: 1px solid #e5edfc;
}

.service-page-hero h1 {
  max-width: 900px;
}

.service-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.service-anchor-nav a {
  padding: 9px 12px;
  border: 1px solid #ccd9f5;
  border-radius: 999px;
  background: #fff;
  color: #35517f;
  font-size: .82rem;
  font-weight: 800;
}

.service-anchor-nav a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.service-detail-grid {
  display: grid;
  gap: 18px;
}

.service-detail-card {
  scroll-margin-top: 100px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(45,74,145,.06);
}

.service-detail-card:nth-child(even) {
  background: linear-gradient(135deg,#f6f9ff,#fff);
}

.service-detail-featured {
  border-color: #b9cdfb;
  background: linear-gradient(135deg,#edf4ff,#fff 65%);
}

.service-number {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: #173f98;
  color: #fff;
  font-weight: 900;
  font-size: .78rem;
  margin-bottom: 12px;
}

.service-detail-copy h2 {
  font-size: clamp(1.7rem,2.7vw,2.5rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  margin: 8px 0 12px;
}

.service-detail-copy>p {
  color: var(--muted);
  line-height: 1.7;
}

.capability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.capability-list span {
  padding: 8px 10px;
  border-radius: 999px;
  background: #eef4ff;
  border: 1px solid #d9e5fc;
  color: #38517d;
  font-size: .75rem;
  font-weight: 800;
}

.service-detail-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.service-detail-media.single {
  grid-template-columns: 1fr;
}

.service-detail-media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.service-detail-media.single img {
  height: 360px;
}

.service-visual-panel {
  min-height: 270px;
  border-radius: 20px;
  border: 1px solid #d9e5fb;
  background: linear-gradient(135deg,#edf4ff,#f9fbff);
  display: grid;
  place-items: center;
  padding: 22px;
}

.visual-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.visual-flow span {
  padding: 13px 16px;
  background: #fff;
  border: 1px solid #d6e1f8;
  border-radius: 13px;
  color: #294874;
  font-weight: 850;
}

.visual-flow b,.ots-panel>b {
  color: var(--primary);
}

.doc-stack {
  position: relative;
  width: 220px;
  height: 165px;
}

.doc-stack i {
  position: absolute;
  width: 145px;
  height: 165px;
  border-radius: 13px;
  background: #fff;
  border: 1px solid #cbd9f5;
  box-shadow: 0 10px 24px rgba(45,74,145,.08);
}

.doc-stack i:nth-child(1) {
  left: 0;
  transform: rotate(-8deg);
}

.doc-stack i:nth-child(2) {
  left: 36px;
  transform: rotate(2deg);
}

.doc-stack i:nth-child(3) {
  left: 68px;
  transform: rotate(8deg);
}

.doc-stack span {
  position: absolute;
  bottom: -34px;
  left: 0;
  right: 0;
  text-align: center;
  color: #38517d;
  font-weight: 850;
}

.ots-panel {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.ots-panel div {
  padding: 18px;
  background: #fff;
  border: 1px solid #d5e1f8;
  border-radius: 16px;
  text-align: center;
}

.ots-panel strong,.ots-panel span {
  display: block;
}

.ots-panel span {
  margin-top: 5px;
  color: var(--muted);
  font-size: .76rem;
}

.task-library-clean .task-showcase {
  overflow: hidden;
}

.task-library-clean .task-image-wrap {
  border-radius: 18px;
  overflow: hidden;
}

.task-library-clean .task-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.task-library-clean .task-category,.task-library-clean .task-labels {
  display: none;
}

.task-library-labeled {
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 16px;
}

.task-library-labeled .task-showcase {
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: #0f2f6d;
}

.task-card-head {
  position: absolute;
  z-index: 2;
  inset: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 72px;
  padding: 15px 16px 28px;
  border: 0;
  background: linear-gradient(180deg,rgba(8,31,76,.88) 0%,rgba(8,31,76,.5) 62%,rgba(8,31,76,0) 100%);
  pointer-events: none;
}

.task-card-head h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.34);
}

.task-library-labeled .task-image-wrap {
  height: 100%;
  padding: 0;
  border-radius: 0;
  background: #0f2f6d;
}

.task-library-labeled .task-image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  display: block;
}

.footer-brand .brand {
  display: inline-flex;
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-bottom: 12px;
}

.footer-brand .brand img {
  filter: none;
  width: 236px;
  max-width: 236px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  display: block;
}

.header .brand {
  margin-left: 4px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.header .brand img {
  filter: none;
  width: 218px;
  max-width: 218px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.header .brand,.footer-brand .brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  flex-shrink: 0;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 190px;
  gap: 3px;
}

.brand-lockup .brand-wordmark {
  display: block;
  object-fit: contain;
  width: 190px;
  max-width: none;
  height: auto;
  max-height: none;
}

.brand-lockup .brand-tagline {
  display: block;
  object-fit: contain;
  width: 151px;
  max-width: none;
  height: auto;
  max-height: none;
  margin-left: 19px;
}

.footer-brand .brand-lockup {
  width: 210px;
  gap: 4px;
}

.footer-brand .brand-lockup .brand-wordmark {
  width: 210px;
}

.footer-brand .brand-lockup .brand-tagline {
  width: 168px;
  margin-left: 21px;
}

.ui-icon {
  width: 21px;
  height: 21px;
  display: block;
  overflow: visible;
}

.menu-toggle:hover {
  background: #f4f7ff;
  border-color: #bfd0f5;
  color: var(--primary);
}

.menu-icon {
  width: 21px;
  height: 21px;
  display: block;
}



.icon-badge .ui-icon {
  width: 21px;
  height: 21px;
  stroke-width: 1.75;
}

.cap-icon .ui-icon {
  width: 25px;
  height: 25px;
  stroke-width: 1.7;
}

.training-capability-card.featured .cap-icon {
  background: #245bc9;
  border-color: #245bc9;
  color: #fff;
  box-shadow: 0 10px 22px rgba(36,91,201,.2);
}

.photo-icon .ui-icon {
  width: 15px;
  height: 15px;
  stroke-width: 1.9;
}

.link-arrow {
  width: 15px;
  height: 15px;
  transition: transform .2s ease;
}

.training-capability-card:hover .link-arrow {
  transform: translateX(3px);
}

.bullet-list i .check-icon {
  width: 14px;
  height: 14px;
  stroke-width: 2.15;
}

.check-grid li:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid #245bc9;
  border-width: 0 1.8px 1.8px 0;
  transform: rotate(45deg);
}

.faq-grid summary:before,.faq-grid summary:after {
  content: "";
  position: absolute;
  right: 1px;
  top: 50%;
  width: 13px;
  height: 1.8px;
  border-radius: 2px;
  background: var(--primary);
  transform: translateY(-50%);
  transition: transform .18s ease;
}











.nav-links a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  transition: right .2s ease;
}

.nav-links a:hover:after,.nav-links a.active:after {
  right: 0;
}

.nav-partner {
  font-weight: 700;
  color: #24457e;
}

.hero-note span {
  padding: 7px 10px;
  border: 1px solid #dbe6f8;
  background: rgba(255,255,255,.78);
  border-radius: 999px;
  font-size: .78rem;
  color: #365686;
}
.card:hover {
  transform: translateY(-4px);
  border-color: #bdd0f3;
  box-shadow: 0 20px 42px rgba(31,73,145,.11);
}

.industry-chip-grid span:hover {
  background: #eef5ff;
  border-color: #bdd0f2;
  transform: translateY(-1px);
}

.process-section {
  background: #fff;
}

.quality-section {
  background: linear-gradient(180deg,#f5f9ff 0%,#edf4ff 100%);
}

.faq-grid details[open] {
  background: #f5f9ff;
  border-color: #bdd0f2;
}

.final-cta-section {
  padding-top: 44px;
  padding-bottom: 64px;
  background: linear-gradient(180deg,#fff 0%,#f2f7ff 100%);
}

.field input:focus,.field textarea:focus,.field select:focus {
  outline: 3px solid rgba(39,103,245,.12);
  border-color: #6f9ef5;
}

.footer a,.footer span,.footer-brand p {
  color: #dce8ff;
}

.footer a:hover {
  color: #fff;
}

.header .brand-lockup {
  width: 170px;
  gap: 2px;
}

.header .brand-lockup .brand-wordmark {
  width: 170px;
  max-width: none;
  height: auto;
  max-height: none;
}

.header .brand-lockup .brand-tagline {
  width: 139px;
  max-width: none;
  height: auto;
  max-height: none;
  margin-left: 15px;
}

.form-note {
  font-size: .85rem;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.55;
}

.contact-direct {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(24,74,148,.15);
}

.contact-direct a {
  font-weight: 700;
  color: var(--primary);
}

.contact-direct__links {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.contact-direct__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  max-width: 100%;
  color: var(--primary);
  text-decoration: none;
}

.contact-direct__link svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

.contact-direct__link span {
  overflow-wrap: anywhere;
}

.contact-direct__link--whatsapp {
  color: #168a45;
}

.contact-direct__link:hover,
.contact-direct__link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  padding: 0 14px;
  font: inherit;
}

input:focus-visible,textarea:focus-visible,select:focus-visible,a:focus-visible,button:focus-visible {
  outline: 3px solid rgba(47,105,255,.28);
  outline-offset: 3px;
}

:focus-visible {
  outline: 3px solid rgba(45,104,255,.38);
  outline-offset: 3px;
}

.nav-links a[aria-current="page"] {
  position: relative;
  color: #0f5de8;
  font-weight: 750;
}

.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  transform: scaleX(1);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.5;
}

.form-consent input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  flex: 0 0 auto;
  accent-color: var(--primary);
}

.form-status {
  min-height: 1.4em;
  margin: 10px 0 0;
  color: #254e9c;
  font-weight: 700;
  font-size: .86rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
}

.legal-grid .content-card h2 {
  font-size: 1.25rem;
  margin-top: 0;
}

.legal-grid .content-card p,.legal-grid .content-card li {
  color: var(--muted);
  line-height: 1.7;
}

.legal-grid .content-card a {
  color: var(--primary);
  font-weight: 750;
}

.legal-updated {
  font-size: .85rem;
  font-weight: 750;
}

img[width][height] {
  height: auto;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1.25rem;
  font-size: .84rem;
  color: #64748b;
}

.breadcrumbs a {
  color: #2457c5;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 1rem;
}

.seo-process {
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  counter-reset: steps;
}

.seo-process li {
  counter-increment: steps;
  background: #fff;
  border: 1px solid rgba(28,91,212,.14);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(23,55,106,.06);
}

.seo-process li:before {
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: .8rem;
  border-radius: 999px;
  background: #eaf2ff;
  color: #1757d7;
  font-weight: 800;
}

.seo-process h3 {
  font-size: 1.03rem;
  margin: 0 0 .45rem;
}

.seo-process p {
  font-size: .93rem;
  margin: 0;
  color: #526783;
}

.faq-list {
  max-width: 920px;
  margin-inline: auto;
}

.faq-list details {
  border: 1px solid rgba(28,91,212,.14);
  border-radius: 16px;
  background: #fff;
  padding: 1rem 1.15rem;
  margin-bottom: .8rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 750;
  color: #0d2b5e;
}

.faq-list p {
  margin: .75rem 0 .15rem;
  color: #526783;
}

.enterprise-grid .card {
  height: 100%;
  border-top: 3px solid rgba(31,101,255,.72);
}

.enterprise-grid .card h3 {
  margin-bottom: .55rem;
}

.delivery-output-section {
  background: linear-gradient(180deg,#f7fbff 0%,#eef6ff 100%);
}

.quality-control-matrix {
  background: linear-gradient(180deg,#ffffff 0%,#f5f9ff 100%);
}

.engagement-section {
  background: linear-gradient(180deg,#fff 0%,#f5f9ff 100%);
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}

.engagement-card {
  position: relative;
  background: #fff;
  border: 1px solid #d8e4f7;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 14px 34px rgba(24,62,126,.07);
}

.engagement-card.featured {
  border-color: #8db2f7;
  box-shadow: 0 18px 42px rgba(31,101,255,.13);
}

.engagement-kicker {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #edf4ff;
  color: #1f65ff;
  font-weight: 850;
  margin-bottom: 16px;
}

.engagement-card h3 {
  margin: 0 0 10px;
  color: #12336c;
}

.engagement-card p {
  color: #5b6f8f;
  line-height: 1.65;
  margin: 0 0 18px;
}

.engagement-card a {
  color: #1f5fd1;
  font-weight: 800;
  text-decoration: none;
}

.engagement-card a:hover {
  text-decoration: underline;
}

.project-brief-section {
  background: linear-gradient(180deg,#f7fbff,#eef6ff);
}

.brief-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 14px;
}

.brief-grid article {
  background: #fff;
  border: 1px solid #d8e4f7;
  border-radius: 18px;
  padding: 20px;
}

.brief-grid strong {
  display: block;
  color: #15366f;
  margin-bottom: 7px;
}

.brief-grid span {
  display: block;
  color: #647895;
  font-size: .9rem;
  line-height: 1.55;
}

.example-config-section {
  background: linear-gradient(180deg,#f8fbff 0%,#eef5ff 100%);
}

.example-config {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 32px;
  align-items: start;
  padding: 32px;
  border: 1px solid #dbe7fb;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(31,72,145,.08);
}

.example-config-copy h3 {
  margin-top: 0;
  font-size: 1.45rem;
}

.example-config-copy p {
  color: var(--muted);
}

.config-specs {
  margin: 0;
  display: grid;
  gap: 0;
  border: 1px solid #e1e9f7;
  border-radius: 18px;
  overflow: hidden;
}

.config-specs div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 15px 18px;
  background: #fff;
  border-bottom: 1px solid #e8eef9;
}

.config-specs div:last-child {
  border-bottom: 0;
}

.config-specs dt {
  font-weight: 850;
  color: var(--navy);
}

.config-specs dd {
  margin: 0;
  color: var(--muted);
}

.verification-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 14px;
}

.verification-grid article {
  padding: 22px;
  border-left: 3px solid var(--primary);
  background: #fff;
  border-radius: 0 16px 16px 0;
  box-shadow: 0 12px 30px rgba(33,70,138,.06);
}

.verification-grid h3 {
  margin-top: 0;
}

.verification-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.secure-form-note {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-left: 3px solid var(--primary);
  background: #f5f9ff;
  color: var(--muted);
  font-size: .88rem;
  border-radius: 0 10px 10px 0;
}



.evidence-layout {
  display: grid;
  grid-template-columns: minmax(0,1.7fr) minmax(260px,.65fr);
  gap: 24px;
  align-items: stretch;
}

.delivery-table {
  overflow-x: auto;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #dce7f4;
  box-shadow: 0 14px 38px rgba(8,31,63,.07);
}

.delivery-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.delivery-table th,.delivery-table td {
  text-align: left;
  padding: 18px 20px;
  border-bottom: 1px solid #e6eef8;
  vertical-align: top;
}

.delivery-table th {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #edf4ff;
  color: #09264d;
}

.delivery-table td:first-child {
  font-weight: 750;
  color: #102f55;
  width: 24%;
}

.delivery-table tr:last-child td {
  border-bottom: 0;
}

.evidence-note {
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #071f3f;
  color: #fff;
  border: 0;
  box-shadow: none;
}

.evidence-note h3 {
  color: #fff;
  margin: .5rem 0 .75rem;
}

.evidence-note p {
  color: rgba(255,255,255,.76);
}

.evidence-note .text-link {
  margin-top: 12px;
  font-weight: 750;
  color: #9fc5ff;
}

.evidence-kicker {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8ec5ff;
  font-weight: 800;
}









.task-example-list {
  border-top: 1px solid #dbe7f4;
}

.task-example-list>div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 19px 4px;
  border-bottom: 1px solid #dbe7f4;
}

.task-example-list strong {
  color: #10345f;
}

.task-example-list span {
  color: #526b84;
}

.trust-boundary {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  padding: 42px;
  border-radius: 22px;
  background: #082c59;
  color: #fff;
}

.trust-boundary h2 {
  color: #fff;
  margin-bottom: 0;
}

.trust-boundary p {
  color: #dbe9f8;
}

.trust-boundary p:last-child {
  margin-bottom: 0;
}

.acceptance-flow {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 12px;
}

.acceptance-flow li {
  padding: 20px 18px;
  background: #fff;
  border: 1px solid #dce8f5;
  border-radius: 16px;
}

.acceptance-flow li>span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #e9f3ff;
  color: #135db4;
  font-weight: 800;
  font-size: .78rem;
}

.acceptance-flow h3 {
  font-size: 1rem;
  margin: 14px 0 8px;
}

.acceptance-flow p {
  font-size: .9rem;
  margin: 0;
}

.section-header p,.page-hero p {
  max-width: var(--content-measure);
}

.operating-strip {
  background: #071f3f;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.operating-strip-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}

.operating-strip-grid>div {
  position: relative;
  padding: 1.35rem 1.4rem 1.45rem;
  border-right: 1px solid rgba(255,255,255,.12);
}

.operating-strip-grid>div:first-child {
  border-left: 1px solid rgba(255,255,255,.12);
}

.operating-strip span {
  display: block;
  margin-bottom: .45rem;
  color: #7fb4ff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.operating-strip strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -.01em;
}

.operating-strip small {
  display: block;
  margin-top: .35rem;
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  line-height: 1.45;
}

.training-capability-grid,.engagement-grid {
  gap: 1px;
  background: #dbe7f6;
  border: 1px solid #dbe7f6;
  border-radius: 22px;
  overflow: hidden;
}

.training-capability-card,.engagement-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
}

.training-capability-card:hover,.engagement-card:hover {
  transform: none;
  background: #f7faff;
}

.training-capability-card.featured,.engagement-card.featured {
  background: linear-gradient(145deg,#eef5ff,#fff);
}

.industry-task-section article {
  box-shadow: 0 10px 30px rgba(8,31,63,.06);
  border-color: #dfe8f3;
}

.training-architecture-section,.quality-control-matrix {
  background: linear-gradient(180deg,#f7faff 0%,#eef5ff 100%);
}

.engagement-section,.example-config-section {
  background: #fff;
}

.final-cta-section .cta,.cta {
  box-shadow: 0 20px 50px rgba(8,31,63,.12);
}

.header .btn {
  min-height: 42px;
  padding-inline: 1.05rem;
}

.footer-brand p {
  max-width: 390px;
  font-size: .92rem;
  line-height: 1.65;
}

.card p,.training-capability-card p,.engagement-card p {
  line-height: 1.68;
}

.hero-photo-grid .hero-photo {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.hero-photo-grid .hero-photo > img[width][height] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}

.hero-photo-grid .hero-photo > figcaption {
  z-index: 2;
}

/* Cross-device layout safeguards */
html,body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

main,section,header,footer,.container {
  min-width: 0;
}

img,video,svg,canvas,iframe {
  max-width: 100%;
}

button,a,input,select,textarea {
  -webkit-tap-highlight-color: transparent;
}

input,select,textarea {
  max-width: 100%;
}

pre,code,.content-card,.card,.service-card {
  overflow-wrap: anywhere;
}

.delivery-table,.table-wrap {
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

/* Responsive system: tablet to compact mobile */

@media (max-width:1100px) {
  .hero-grid,.quality-layout,.page-grid-2 {
    grid-template-columns: 1fr;
  }

  .cards-6 {
    grid-template-columns: repeat(3,1fr);
  }

  .steps {
    grid-template-columns: repeat(3,1fr);
  }


  .footer-top {
    grid-template-columns: repeat(2,1fr);
  }

  .hero-photo-grid {
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    min-height: auto;
  }

  .hero-photo,.hero-photo-main {
    height: 250px;
    transform: none;
  }

  .hero-photo-main img {
    object-position: 55% center;
  }

  .hero-photo-audio,.hero-photo-multicam,.hero-photo-field {
    height: 245px;
    transform: none;
  }

  .header .brand img {
    width: 206px;
    max-width: 206px;
    max-height: 50px;
  }

  .footer-brand .brand img {
    width: 224px;
    max-width: 224px;
    max-height: 56px;
  }

  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-grid {
    gap: 28px;
  }

  .section {
    padding: 52px 0;
  }

  .header .brand-lockup {
    width: 162px;
  }

  .header .brand-lockup .brand-wordmark {
    width: 162px;
  }

  .header .brand-lockup .brand-tagline {
    width: 134px;
    margin-left: 14px;
  }
}

@media (max-width:980px) {
  .seo-process {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .evidence-layout,.trust-boundary {
    grid-template-columns: 1fr;
  }


  .acceptance-flow {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width:900px) {
  .ego-focus-grid,.service-detail-card {
    grid-template-columns: 1fr;
  }

  .training-capability-grid {
    grid-template-columns: 1fr;
  }

  .industry-chip-grid {
    grid-template-columns: repeat(3,1fr);
  }

  .ego-media-stack img,.ego-media-stack figure:last-child img {
    height: 280px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .task-library-labeled {
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 10px;
  }

  .task-card-head {
    min-height: 58px;
    padding: 10px 10px 22px;
  }

  .task-card-head h3 {
    font-size: .78rem;
  }

  .task-library-labeled .task-image-wrap img {
    aspect-ratio: 1/1;
  }

  .header .brand img {
    width: 194px;
    max-width: 194px;
    max-height: 47px;
  }

  .footer-brand .brand img {
    width: 212px;
    max-width: 212px;
    max-height: 54px;
  }

  .header .brand {
    margin-left: 6px;
  }

  .brand-lockup {
    width: 180px;
  }

  .brand-lockup .brand-wordmark {
    width: 180px;
  }

  .brand-lockup .brand-tagline {
    width: 145px;
    margin-left: 17px;
  }

  .footer-brand .brand-lockup {
    width: 205px;
  }

  .footer-brand .brand-lockup .brand-wordmark {
    width: 205px;
  }

  .footer-brand .brand-lockup .brand-tagline {
    width: 164px;
    margin-left: 21px;
  }

  .header .brand-lockup {
    width: 154px;
  }

  .header .brand-lockup .brand-wordmark {
    width: 154px;
  }

  .header .brand-lockup .brand-tagline {
    width: 128px;
    margin-left: 13px;
  }

  .engagement-grid {
    grid-template-columns: 1fr;
  }

  .brief-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .example-config {
    grid-template-columns: 1fr;
  }

  .verification-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .operating-strip-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .operating-strip-grid>div:nth-child(3) {
    border-left: 1px solid rgba(255,255,255,.12);
  }

  .operating-strip-grid>div {
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .operating-strip-grid>div:nth-child(n/**/+3) {
    border-bottom: 0;
  }
}

@media (max-width:860px) {
  .task-library-grid {
    grid-template-columns: 1fr;
  }

  .task-labels {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }
}

@media (max-width:760px) {
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 14px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    top: 70px;
    box-shadow: 0 16px 30px rgba(25,60,126,.10);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-actions .nav-partner {
    display: none;
  }
.footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom,.cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 28px;
    padding: 36px 0 28px;
  }

  .hero-photo-grid {
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 7px;
    align-items: center;
  }

  .hero-photo,.hero-photo-main {
    height: 165px;
    transform: none;
    border-radius: 16px;
  }

  .hero-photo img,.hero-photo-main img {
    object-position: center;
  }

  .hero-photo figcaption {
    font-size: .58rem;
    left: 5px;
    right: 5px;
    bottom: 5px;
    gap: 5px;
    padding: 5px 6px;
    border-radius: 9px;
  }

  .hero-photo-audio {
    height: 158px;
    transform: translateY(-6px);
  }

  .hero-photo-multicam {
    height: 142px;
    transform: translateY(7px);
  }

  .hero-photo-field {
    height: 152px;
    transform: none;
  }

  .hero-photo {
    border-radius: 14px;
  }

  .photo-icon {
    font-size: .5rem;
    width: 21px;
    height: 21px;
    border-radius: 6px;
  }

  .photo-icon svg {
    width: 11px;
    height: 11px;
  }

  .hero-photo figcaption strong {
    font-size: .5rem;
  }

  .hero-photo figcaption small {
    display: none;
  }

  .brand img {
    width: 178px;
    max-height: 48px;
  }

  .footer-brand .brand img {
    width: 198px;
    max-width: 198px;
    max-height: 51px;
  }

  .header .brand img {
    width: 182px;
    max-width: 182px;
    max-height: 44px;
  }

  .header .brand {
    margin-left: 2px;
  }

  .brand-lockup {
    width: 166px;
  }

  .brand-lockup .brand-wordmark {
    width: 166px;
  }

  .brand-lockup .brand-tagline {
    width: 136px;
    margin-left: 15px;
  }

  .footer-brand .brand-lockup {
    width: 190px;
  }

  .footer-brand .brand-lockup .brand-wordmark {
    width: 190px;
  }

  .footer-brand .brand-lockup .brand-tagline {
    width: 153px;
    margin-left: 18px;
  }

  .photo-icon .ui-icon {
    width: 11px;
    height: 11px;
  }


  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .header {
    box-shadow: 0 6px 18px rgba(36,74,145,.06);
  }

  .navbar {
    min-height: 68px;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero p {
    font-size: .98rem;
  }

  .section {
    padding: 42px 0;
  }

  .section-header {
    margin-bottom: 22px;
  }

  .cards-6 {
    gap: 11px;
  }

  .card {
    padding: 16px;
  }

  .process {
    padding: 26px 16px;
  }

  .cta {
    padding: 24px 20px;
  }

  .whatsapp-fab {
    font-size: .82rem;
    right: 14px;
    bottom: 14px;
    padding: 10px 14px;
  }

  .header .brand-lockup {
    width: 148px;
  }

  .header .brand-lockup .brand-wordmark {
    width: 148px;
  }

  .header .brand-lockup .brand-tagline {
    width: 124px;
    margin-left: 12px;
  }

  .page-hero h1 {
    max-width: 18ch;
  }

  .content-card h2 {
    font-size: 1.45rem;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .nav-links a[aria-current="page"]::after {
    display: none;
  }

  .enterprise-grid {
    gap: 14px;
  }

  .enterprise-grid .card {
    padding: 20px;
  }
}

@media (max-width:720px) {
  .seo-grid,.seo-process {
    grid-template-columns: 1fr;
  }

  .breadcrumbs {
    margin-bottom: 1rem;
  }
}

@media (max-width:640px) {
  .acceptance-flow {
    grid-template-columns: 1fr;
  }

  .task-example-list>div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .trust-boundary {
    padding: 28px 22px;
  }

  .evidence-note {
    padding: 24px;
  }

  .delivery-table th,.delivery-table td {
    padding: .8rem .7rem;
  }

  :root {
    --section-space: 3.65rem;
    --section-space-compact: 3rem;
  }

  .section-header {
    margin-bottom: 1.75rem;
  }

  .operating-strip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .operating-strip-grid>div {
    padding: 1rem .9rem 1.05rem;
  }

  .operating-strip strong {
    font-size: .92rem;
  }

  .operating-strip small {
    font-size: .71rem;
    line-height: 1.35;
  }

  .training-capability-grid,.engagement-grid {
    display: block;
    border-radius: 18px;
  }

  .training-capability-card,.engagement-card {
    border-bottom: 1px solid #dbe7f6;
    padding: 1.15rem;
  }

  .training-capability-card:last-child,.engagement-card:last-child {
    border-bottom: 0;
  }

  .delivery-table {
    font-size: .82rem;
  }

  .page-hero {
    padding-block: 3.4rem 3rem;
  }
}

@media (max-width:620px) {
  .industry-chip-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .check-grid {
    grid-template-columns: 1fr;
  }

  .ego-media-stack {
    grid-template-columns: 1fr 1fr;
  }

  .ego-media-stack img,.ego-media-stack figure:last-child img {
    height: 190px;
  }

  .ego-media-stack figure:first-child {
    transform: none;
  }

  .service-detail-card {
    padding: 18px;
  }

  .service-detail-media img,.service-detail-media.single img {
    height: 220px;
  }

  .service-detail-media {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail-copy h2 {
    font-size: 1.65rem;
  }

  .ots-panel {
    flex-direction: column;
  }

  .ots-panel>b {
    transform: rotate(90deg);
  }

  .config-specs div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .verification-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-fab {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0;
  }

  .whatsapp-fab::after {
    content: "WA";
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .02em;
  }
}

@media (max-width:560px) {
  .brief-grid {
    grid-template-columns: 1fr;
  }

  .engagement-card {
    padding: 21px;
  }
}

@media (max-width:520px) {
.hero h1 {
    font-size: 2.38rem;
  }

  .brand img {
    width: 158px;
    max-height: 44px;
  }

  .quality-media img {
    aspect-ratio: 1.2/1;
  }

  .hero-photo-grid {
    gap: 5px;
  }

  .hero-photo-audio {
    height: 126px;
    transform: translateY(-5px);
  }

  .hero-photo-multicam {
    height: 114px;
    transform: translateY(6px);
  }

  .hero-photo-field {
    height: 121px;
  }

  .hero-photo figcaption {
    padding: 4px;
  }

  .photo-icon {
    width: 18px;
    height: 18px;
  }

  .photo-icon svg {
    width: 9px;
    height: 9px;
  }

  .hero-photo figcaption strong {
    font-size: .44rem;
  }

  .task-library-grid {
    gap: 12px;
  }

  .task-image-wrap img {
    aspect-ratio: 16/10;
  }

  .task-category {
    left: 8px;
    bottom: 8px;
    padding: 6px 9px;
    font-size: .66rem;
  }

  .task-labels {
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 5px;
    padding: 8px;
  }

  .task-labels span {
    min-height: 34px;
    padding: 5px 4px;
    font-size: .58rem;
    border-radius: 8px;
  }

  .task-library-clean {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .task-library-clean .task-image-wrap img {
    aspect-ratio: 1/1;
  }

  .task-library-labeled {
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 8px;
  }

  .task-card-head {
    min-height: 48px;
    padding: 8px 7px 18px;
    align-items: flex-start;
  }

  .task-card-head h3 {
    font-size: .66rem;
    line-height: 1.12;
  }

  .task-library-labeled .task-image-wrap img {
    aspect-ratio: 1/1;
  }

  .header .brand img {
    width: 168px;
    max-width: 168px;
    max-height: 41px;
  }

  .footer-brand .brand img {
    width: 186px;
    max-width: 186px;
    max-height: 48px;
  }

  .navbar {
    min-height: 68px;
  }

  .brand-lockup {
    width: 154px;
  }

  .brand-lockup .brand-wordmark {
    width: 154px;
  }

  .brand-lockup .brand-tagline {
    width: 128px;
    margin-left: 13px;
  }

  .footer-brand .brand-lockup {
    width: 178px;
  }

  .footer-brand .brand-lockup .brand-wordmark {
    width: 178px;
  }

  .footer-brand .brand-lockup .brand-tagline {
    width: 145px;
    margin-left: 17px;
  }

  .photo-icon .ui-icon {
    width: 9px;
    height: 9px;
  }


  .icon-badge {
    width: 40px;
    height: 40px;
  }

  .cap-icon {
    width: 48px;
    height: 48px;
  }

  .cap-icon .ui-icon {
    width: 22px;
    height: 22px;
  }

  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-note {
    gap: 7px;
  }

  .hero-note span {
    font-size: .68rem;
    padding: 6px 8px;
  }

  .cards-6 {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .card h3 {
    font-size: .9rem;
  }

  .card p {
    font-size: .78rem;
    line-height: 1.5;
  }

  .section-header h2 {
    font-size: clamp(1.72rem,7.5vw,2rem);
    line-height: 1.08;
    text-wrap: balance;
  }

  .section-header p {
    max-width: 36rem;
    font-size: .9rem;
    line-height: 1.62;
  }

  .process {
    border-radius: 20px;
  }

  .steps {
    gap: 16px;
  }

  .quality-layout {
    gap: 24px;
  }

  .cta h2 {
    font-size: 1.65rem;
  }

  .footer-top {
    padding-top: 34px;
  }

  .whatsapp-fab {
    border-radius: 14px;
  }

  .header .brand-lockup {
    width: 140px;
  }

  .header .brand-lockup .brand-wordmark {
    width: 140px;
  }

  .header .brand-lockup .brand-tagline {
    width: 118px;
    margin-left: 11px;
  }
}

@media (max-width: 1024px) {
  .navbar { gap: 16px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: .9rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-photo-grid { max-width: 760px; width: 100%; margin-inline: auto; }
  .cards-6 { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .footer-top { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 820px) {
  body { overflow-x: hidden; }
  .container { width: 100%; max-width: 100%; padding-inline: 18px; }
  .header .btn { display: none; }
  .navbar { min-height: 66px; }
  .nav-links { top: 66px; max-height: calc(100dvh - 66px); overflow-y: auto; overscroll-behavior: contain; }
  .hero { padding-block: 34px 28px; }
  .hero h1 { font-size: clamp(2.45rem,10vw,4rem); line-height: .98; }
  .hero-actions .btn { flex: 1 1 220px; }
  .hero-photo-grid { grid-template-columns: repeat(3,minmax(0,1fr)); min-height: 0; }
  .hero-photo,.hero-photo-main,.hero-photo-audio,.hero-photo-multicam,.hero-photo-field { height: clamp(150px,26vw,220px); transform: none; }
  .hero-photo figcaption { left: 7px; right: 7px; bottom: 7px; }
  .page-grid-2,.quality-layout,.ego-focus-grid,.evidence-layout,.trust-boundary,.service-detail-card { grid-template-columns: 1fr; }
  .industry-chip-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .brief-grid,.verification-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-bottom { gap: 14px; }
}

@media (max-width: 640px) {
  :root { --radius: 18px; }
  .container { padding-inline: 15px; }
  .hero { padding-block: 28px 24px; }
  .hero h1 { font-size: clamp(2.25rem,11.2vw,3.25rem); overflow-wrap: anywhere; }
  .hero p { font-size: .96rem; line-height: 1.62; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .hero-actions .btn { width: 100%; }
  .hero-note { gap: 6px; }
  .hero-note span { font-size: .68rem; }
  .hero-photo-grid {
    width: calc(100% + 18px);
    max-width: none;
    margin-inline: -9px;
    gap: 6px;
  }
  .hero-photo,.hero-photo-main,.hero-photo-audio,.hero-photo-multicam,.hero-photo-field {
    height: clamp(160px,42vw,210px);
    border-radius: 15px;
  }
  .hero-photo figcaption { padding: 6px; gap: 4px; left: 5px; right: 5px; bottom: 5px; }
  .hero-photo figcaption strong { font-size: clamp(.5rem,1.9vw,.66rem); line-height: 1.05; }
  .hero-photo figcaption small { display: none; }
  .photo-icon { width: 21px; height: 21px; flex-basis: 21px; }
.cards-6 { gap: 12px; }
  .card { padding: 18px; }
  .section-header h2,.page-hero h1 { font-size: clamp(1.85rem,8vw,2.45rem); overflow-wrap: anywhere; }
  .section-header p,.page-hero p { font-size: .94rem; }
  .cta { align-items: stretch; padding: 24px 18px; }
  .cta .btn { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  input,textarea,select { min-width: 0; width: 100%; }
  .delivery-table { margin-inline: -2px; }
  .delivery-table table { min-width: 620px; }
  .whatsapp-fab { width: 48px; height: 48px; padding: 0; border-radius: 50%; font-size: 0; }
  .whatsapp-fab::after { content: 'WA'; font-size: .72rem; font-weight: 900; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 430px) {
  .container { padding-inline: 12px; }
  .navbar { gap: 8px; }
  .header .brand-lockup { width: 134px; }
  .header .brand-lockup .brand-wordmark { width: 134px; }
  .header .brand-lockup .brand-tagline { width: 112px; margin-left: 10px; }
  .menu-toggle { width: 42px; height: 42px; }
  .hero h1 { font-size: clamp(2.1rem,11.5vw,2.85rem); }
  .hero-photo-grid {
    width: calc(100% + 20px);
    margin-inline: -10px;
    gap: 4px;
  }
  .hero-photo,.hero-photo-main,.hero-photo-audio,.hero-photo-multicam,.hero-photo-field {
    height: clamp(150px,42vw,178px);
  }
  .photo-icon { display: none; }
  .hero-photo figcaption { justify-content: center; text-align: center; padding: 5px 3px; }
  .hero-photo figcaption strong { font-size: clamp(.5rem,2vw,.62rem); }
  .operating-strip-grid { grid-template-columns: 1fr 1fr; }
  .operating-strip-grid > div { padding: .9rem .7rem; }
  .industry-chip-grid,.brief-grid,.verification-grid { grid-template-columns: 1fr; }
  .task-library-clean { grid-template-columns: 1fr; }
  .task-library-labeled { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 6px; }
  .footer-links { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  .container { padding-inline: 10px; }
  .header .brand-lockup { width: 122px; }
  .header .brand-lockup .brand-wordmark { width: 122px; }
  .header .brand-lockup .brand-tagline { width: 102px; margin-left: 9px; }
  .hero h1 { font-size: 2rem; }
  .hero-photo,.hero-photo-main,.hero-photo-audio,.hero-photo-multicam,.hero-photo-field { height: 148px; }
  .hero-photo figcaption { display: flex; }
  .hero-photo figcaption strong { font-size: .48rem; }
  .btn { padding-inline: 14px; }
  .card { padding: 16px; }
  .task-library-labeled { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 5px; }
}

@media (max-height: 500px) and (orientation: landscape) and (max-width: 950px) {
  .header { position: relative; }
  .nav-links { max-height: calc(100vh - 66px); }
  .hero { padding-block: 24px; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 20px; }
  .hero h1 { font-size: clamp(2rem,5vw,3rem); }
  .hero-photo-grid { min-height: 0; }
  .hero-photo,.hero-photo-main,.hero-photo-audio,.hero-photo-multicam,.hero-photo-field { height: 180px; }
}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }

  *,*::before,*::after {
    animation-duration: .01ms;
    animation-iteration-count: 1;
    transition-duration: .01ms;
  }
}


.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.form-status.is-success {
  color: #167044;
}

.form-status.is-error {
  color: #b42318;
}


/* Turnstile verification */
.turnstile-wrap {
  min-height: 65px;
  margin: 0.2rem 0 0.15rem;
  overflow: hidden;
}

.turnstile-wrap .cf-turnstile {
  max-width: 100%;
}



@media (max-width:640px) {
  .task-library-section { padding-block: 3.2rem; }
  .task-library-section .section-header { margin-bottom: 1.35rem; }
  .task-library-labeled .task-showcase { border-radius: 15px; }
}


/* Quick contact dock — professional SVG actions across desktop and mobile */
.contact-dock {
  position: fixed;
  right: 18px;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.contact-dock__link {
  position: relative;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(176, 196, 230, .78);
  border-radius: 16px;
  color: #17427f;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 14px 30px rgba(30, 66, 126, .18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.contact-dock__link svg {
  width: 23px;
  height: 23px;
  display: block;
}

.contact-dock__link span {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translate(7px, -50%);
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
  padding: 7px 10px;
  border-radius: 9px;
  color: #fff;
  background: #0f274d;
  box-shadow: 0 10px 24px rgba(15, 39, 77, .22);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .01em;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.contact-dock__link:hover,
.contact-dock__link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(45, 109, 247, .6);
  box-shadow: 0 18px 36px rgba(30, 66, 126, .24);
}

.contact-dock__link:hover span,
.contact-dock__link:focus-visible span {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
}

.contact-dock__link:focus-visible {
  outline: 3px solid rgba(45, 109, 247, .28);
  outline-offset: 3px;
}

.contact-dock__link--call {
  color: #fff;
  border-color: #2d6df7;
  background: linear-gradient(135deg, #2d6df7, #1f55c8);
}

.contact-dock__link--whatsapp {
  color: #fff;
  border-color: #20b95a;
  background: linear-gradient(135deg, #2bd46f, #149447);
}

@media (max-width: 700px) {
  .contact-dock {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(177, 197, 230, .74);
    border-radius: 20px;
    background: rgba(247, 250, 255, .94);
    box-shadow: 0 14px 34px rgba(28, 63, 123, .22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .contact-dock__link {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    box-shadow: none;
  }

  .contact-dock__link svg {
    width: 22px;
    height: 22px;
  }

  .contact-dock__link span {
    display: none;
  }

  .footer {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 380px) {
  .contact-dock {
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    gap: 4px;
    padding: 5px;
  }

  .contact-dock__link {
    width: 43px;
    height: 43px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-dock__link,
  .contact-dock__link span {
    transition: none;
  }
}


/* v9.3 — definitive mobile hero sizing and compact contact controls */
/* Retire the old text-based WhatsApp bubble if any stale markup remains. */
.whatsapp-fab {
  display: none !important;
}

/* Professional compact contact dock on laptops and desktops. */
.contact-dock {
  right: 14px;
  bottom: max(14px, env(safe-area-inset-bottom));
  gap: 7px;
}

.contact-dock__link {
  width: 44px;
  height: 44px;
  border-radius: 13px;
}

.contact-dock__link svg {
  width: 18px;
  height: 18px;
}


@media (max-width: 820px) {
  /* Three cards remain in one row and use almost the entire phone width. */
  .hero-photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: calc(100% + 36px) !important;
    max-width: none !important;
    margin-inline: -18px !important;
    gap: 4px !important;
    min-height: 0 !important;
    align-items: stretch !important;
  }

  .hero-photo,
  .hero-photo-main,
  .hero-photo-audio,
  .hero-photo-multicam,
  .hero-photo-field {
    width: 100% !important;
    min-width: 0 !important;
    height: clamp(210px, 34vw, 250px) !important;
    transform: none !important;
    border-radius: 16px !important;
  }

  .hero-photo img,
  .hero-photo-main img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .hero-photo figcaption {
    left: 5px !important;
    right: 5px !important;
    bottom: 5px !important;
    padding: 5px 6px !important;
    gap: 4px !important;
    border-radius: 10px !important;
  }

  .photo-icon {
    width: 20px !important;
    height: 20px !important;
    flex-basis: 20px !important;
    border-radius: 6px !important;
  }

  .photo-icon svg {
    width: 10px !important;
    height: 10px !important;
  }

  .hero-photo figcaption strong {
    font-size: clamp(.52rem, 1.65vw, .66rem) !important;
    line-height: 1.05 !important;
  }

  /* Small, unobtrusive three-icon control for phones and tablets. */
  .contact-dock {
    right: 9px !important;
    bottom: max(9px, env(safe-area-inset-bottom)) !important;
    gap: 4px !important;
    padding: 4px !important;
    border-radius: 15px !important;
  }

  .contact-dock__link {
    width: 34px !important;
    height: 34px !important;
    border-radius: 10px !important;
  }

  .contact-dock__link svg {
    width: 15px !important;
    height: 15px !important;
  }


  .footer {
    padding-bottom: calc(62px + env(safe-area-inset-bottom)) !important;
  }
}

@media (max-width: 640px) {
  .hero-photo-grid {
    width: calc(100% + 30px) !important;
    margin-inline: -15px !important;
    gap: 4px !important;
  }

  .hero-photo,
  .hero-photo-main,
  .hero-photo-audio,
  .hero-photo-multicam,
  .hero-photo-field {
    height: clamp(180px, 48vw, 225px) !important;
    border-radius: 15px !important;
  }
}

@media (max-width: 430px) {
  .hero-photo-grid {
    width: calc(100% + 24px) !important;
    margin-inline: -12px !important;
    gap: 3px !important;
  }

  .hero-photo,
  .hero-photo-main,
  .hero-photo-audio,
  .hero-photo-multicam,
  .hero-photo-field {
    height: clamp(175px, 50vw, 210px) !important;
    border-radius: 14px !important;
  }

  .hero-photo figcaption {
    justify-content: center !important;
    text-align: center !important;
    padding: 5px 3px !important;
  }

  .photo-icon {
    display: none !important;
  }

  .hero-photo figcaption strong {
    font-size: clamp(.5rem, 2vw, .62rem) !important;
  }
}

@media (max-width: 360px) {
  .hero-photo-grid {
    width: calc(100% + 20px) !important;
    margin-inline: -10px !important;
    gap: 3px !important;
  }

  .hero-photo,
  .hero-photo-main,
  .hero-photo-audio,
  .hero-photo-multicam,
  .hero-photo-field {
    height: 176px !important;
  }
}


/* v9.4 — direct contact links replace the floating dock on the Contact page. */
@media (max-width: 820px) {
  .page-contact .footer {
    padding-bottom: 0 !important;
  }
}


/* v9.5 — restore the older balanced hero three-photo row and keep contact controls restrained. */
.hero-photo-grid.hero-photo-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: 100%;
  margin: 18px 0 0;
  gap: 12px;
}

.hero-photo-grid.hero-photo-grid-compact .hero-photo,
.hero-photo-grid.hero-photo-grid-compact .hero-photo-audio,
.hero-photo-grid.hero-photo-grid-compact .hero-photo-multicam,
.hero-photo-grid.hero-photo-grid-compact .hero-photo-field {
  min-width: 0;
  height: clamp(205px, 23vw, 286px);
  border-radius: 18px;
}

.hero-photo-grid.hero-photo-grid-compact .hero-photo figcaption {
  left: 8px;
  right: 8px;
  bottom: 8px;
  padding: 7px 8px;
  gap: 6px;
  border-radius: 12px;
}

.hero-photo-grid.hero-photo-grid-compact .photo-icon {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
  border-radius: 6px;
}

.hero-photo-grid.hero-photo-grid-compact .photo-icon svg {
  width: 10px;
  height: 10px;
}

.hero-photo-grid.hero-photo-grid-compact .hero-photo figcaption strong {
  font-size: .78rem;
  line-height: 1.1;
}

.hero-photo-grid.hero-photo-grid-compact .hero-photo figcaption small {
  font-size: .61rem;
  line-height: 1.15;
}

.contact-dock__link {
  width: 40px;
  height: 40px;
}

.contact-dock__link svg {
  width: 17px;
  height: 17px;
}

@media (max-width: 820px) {
  .hero-photo-grid.hero-photo-grid-compact {
    gap: 8px;
  }

  .hero-photo-grid.hero-photo-grid-compact .hero-photo,
  .hero-photo-grid.hero-photo-grid-compact .hero-photo-audio,
  .hero-photo-grid.hero-photo-grid-compact .hero-photo-multicam,
  .hero-photo-grid.hero-photo-grid-compact .hero-photo-field {
    height: clamp(160px, 31vw, 198px) !important;
    border-radius: 15px !important;
  }

  .hero-photo-grid.hero-photo-grid-compact .hero-photo figcaption {
    left: 6px !important;
    right: 6px !important;
    bottom: 6px !important;
    padding: 6px 7px !important;
  }

  .hero-photo-grid.hero-photo-grid-compact .hero-photo figcaption strong {
    font-size: .66rem !important;
  }

  .hero-photo-grid.hero-photo-grid-compact .hero-photo figcaption small {
    font-size: .55rem !important;
  }

  .contact-dock {
    right: 8px !important;
    bottom: max(8px, env(safe-area-inset-bottom)) !important;
    gap: 4px !important;
    padding: 4px !important;
  }

  .contact-dock__link {
    width: 32px !important;
    height: 32px !important;
    border-radius: 9px !important;
  }

  .contact-dock__link svg {
    width: 14px !important;
    height: 14px !important;
  }

  .footer {
    padding-bottom: calc(58px + env(safe-area-inset-bottom)) !important;
  }
}

@media (max-width: 640px) {
  .hero-photo-grid.hero-photo-grid-compact {
    width: 100% !important;
    margin-inline: 0 !important;
    gap: 6px !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .hero-photo-grid.hero-photo-grid-compact .hero-photo,
  .hero-photo-grid.hero-photo-grid-compact .hero-photo-audio,
  .hero-photo-grid.hero-photo-grid-compact .hero-photo-multicam,
  .hero-photo-grid.hero-photo-grid-compact .hero-photo-field {
    height: clamp(152px, 33vw, 182px) !important;
    border-radius: 14px !important;
  }

  .hero-photo-grid.hero-photo-grid-compact .hero-photo figcaption {
    left: 5px !important;
    right: 5px !important;
    bottom: 5px !important;
    padding: 5px 6px !important;
    gap: 5px !important;
  }

  .hero-photo-grid.hero-photo-grid-compact .photo-icon {
    width: 16px !important;
    height: 16px !important;
    flex-basis: 16px !important;
  }

  .hero-photo-grid.hero-photo-grid-compact .photo-icon svg {
    width: 9px !important;
    height: 9px !important;
  }

  .hero-photo-grid.hero-photo-grid-compact .hero-photo figcaption strong {
    font-size: .60rem !important;
    line-height: 1.05 !important;
  }

  .hero-photo-grid.hero-photo-grid-compact .hero-photo figcaption small {
    display: none !important;
  }
}

@media (max-width: 430px) {
  .hero-photo-grid.hero-photo-grid-compact {
    gap: 5px !important;
  }

  .hero-photo-grid.hero-photo-grid-compact .hero-photo,
  .hero-photo-grid.hero-photo-grid-compact .hero-photo-audio,
  .hero-photo-grid.hero-photo-grid-compact .hero-photo-multicam,
  .hero-photo-grid.hero-photo-grid-compact .hero-photo-field {
    height: clamp(146px, 34vw, 170px) !important;
  }

  .hero-photo-grid.hero-photo-grid-compact .photo-icon {
    display: none !important;
  }

  .hero-photo-grid.hero-photo-grid-compact .hero-photo figcaption {
    justify-content: center !important;
    text-align: center !important;
    padding: 5px 4px !important;
  }

  .hero-photo-grid.hero-photo-grid-compact .hero-photo figcaption strong {
    font-size: .58rem !important;
  }
}

@media (max-width: 360px) {
  .hero-photo-grid.hero-photo-grid-compact {
    gap: 4px !important;
  }

  .hero-photo-grid.hero-photo-grid-compact .hero-photo,
  .hero-photo-grid.hero-photo-grid-compact .hero-photo-audio,
  .hero-photo-grid.hero-photo-grid-compact .hero-photo-multicam,
  .hero-photo-grid.hero-photo-grid-compact .hero-photo-field {
    height: 142px !important;
  }

  .hero-photo-grid.hero-photo-grid-compact .hero-photo figcaption strong {
    font-size: .55rem !important;
  }
}
