:root {
  --navy: #10245c;
  --blue: #2557d6;
  --cyan: #6cc8ff;
  --green: #17a673;
  --amber: #f1a332;
  --ink: #14213d;
  --muted: #5d697d;
  --line: #dfe6f2;
  --soft: #f5f8fc;
  --white: #fff;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(16, 36, 92, 0.12);
  --container: 1180px;
  --nav-height: 76px;
  --font: "Open Sans", Arial, sans-serif;
  --brand-font: "Montserrat", "Open Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f8f3ec;
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.6;
}

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

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

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

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

.btn {
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  padding: 11px 20px;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(37, 87, 214, 0.35);
  color: var(--navy);
}

.btn--lg {
  font-size: 17px;
  padding: 14px 24px;
}

.eyebrow {
  color: var(--blue);
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--cyan);
}

.nav {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  min-height: var(--nav-height);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav--scrolled {
  box-shadow: 0 10px 30px rgba(16, 36, 92, 0.12);
}

.nav__container {
  align-items: center;
  display: flex;
  gap: 20px;
  min-height: var(--nav-height);
}

.nav__logo {
  flex: 0 0 auto;
}

.nav__logo-img {
  border-radius: 14px;
  height: 54px;
  width: auto;
}

.nav__links {
  align-items: center;
  display: flex;
  gap: 18px;
  margin-left: auto;
}

.nav__links > ul,
.nav__list {
  align-items: center;
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav__link {
  background: transparent;
  border: 0;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.nav__link[aria-current="page"],
.nav__link:hover {
  color: var(--blue);
}

.nav__hamburger {
  background: transparent;
  border: 0;
  display: none;
  margin-left: auto;
  padding: 6px;
}

.nav__hamburger span {
  background: var(--navy);
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 25px;
}

.mega {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  left: 50%;
  opacity: 0;
  padding: 18px;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 1px);
  transform: translateX(-50%);
  transition: 0.18s ease;
  width: min(460px, calc(100vw - 32px));
}

.nav__item--mega:hover .mega,
.nav__item--mega.is-open .mega {
  opacity: 1;
  pointer-events: auto;
}

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

.mega__title {
  color: var(--navy);
  display: block;
  font-size: 15px;
  font-weight: 800;
}

.site-search {
  align-items: center;
  display: flex;
  position: relative;
}

.site-search__label {
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

/* Icon-only toggle button (always visible) */
.site-search__toggle {
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  padding: 6px;
  transition: background 0.15s;
  z-index: 1;
}

.site-search__toggle:hover {
  background: rgba(16, 36, 92, 0.07);
}

/* Input — collapsed by default */
.site-search__input {
  background: #fff;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink);
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  padding: 8px 0;
  pointer-events: none;
  transition: max-width 0.28s ease, opacity 0.22s ease, padding 0.28s ease, border-color 0.22s;
  width: 220px;
}

.site-search--open .site-search__input {
  border-color: rgba(16, 36, 92, 0.18);
  max-width: 220px;
  opacity: 1;
  padding: 8px 40px 8px 14px;
  pointer-events: auto;
}

.site-search__input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 87, 214, 0.12);
  outline: none;
}

/* Submit — inside input, hidden until open */
.site-search__button {
  background: transparent;
  border: none;
  color: var(--blue);
  cursor: pointer;
  font-size: 0;
  opacity: 0;
  padding: 6px 8px;
  pointer-events: none;
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.2s;
}

.site-search--open .site-search__button {
  opacity: 1;
  pointer-events: auto;
}

.site-search__results {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 2px;
  left: 0;
  margin-top: 8px;
  max-height: 320px;
  overflow: auto;
  padding: 8px;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 1005;
}

.site-search__results[hidden] {
  display: none;
}

.site-search__result {
  border-radius: 12px;
  display: block;
  padding: 10px 12px;
}

.site-search__result:hover,
.site-search__result:focus {
  background: #f3f7ff;
  outline: none;
}

.site-search__result strong {
  color: var(--navy);
  display: block;
  font-size: 14px;
}

.site-search__result span,
.site-search__empty {
  color: var(--muted);
  display: block;
  font-size: 12px;
  margin-top: 2px;
}

.site-search__empty {
  padding: 10px 12px;
}

/* ── Hero — light bg + circuit animation ──────────────── */
.hero {
  align-items: center;
  background: linear-gradient(145deg, #fdf9f4 0%, #f8f3ec 40%, #f3ede0 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(92vh - var(--nav-height));
  overflow: hidden;
  position: relative;
}

.hero::after {
  background: radial-gradient(circle, rgba(100, 70, 30, 0.045) 1px, transparent 1px);
  background-size: 20px 20px;
  content: '';
  height: 100%;
  inset: 0;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.3) 0%, transparent 60%);
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
}

.hero__circuit {
  height: 100%;
  inset: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.hero__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  max-width: 700px;
  padding: 80px 24px 100px;
  position: relative;
  text-align: center;
  z-index: 10;
}

.wordmark-img {
  animation: appear 0.7s ease 1.4s forwards;
  display: block;
  height: auto;
  margin-bottom: 36px;
  max-width: min(520px, 82vw);
  opacity: 0;
}

.hero__eyebrow {
  animation: appear 0.5s ease 3.1s forwards;
  letter-spacing: 0.18em;
  opacity: 0;
}

.hero__h1 {
  animation: appear 0.5s ease 3.4s forwards;
  color: #062a54;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  max-width: 520px;
  opacity: 0;
}

.hero__desc {
  animation: appear 0.5s ease 3.7s forwards;
  color: #1d446c;
  font-size: 14px;
  line-height: 1.7;
  max-width: 430px;
  opacity: 0;
}

.hero__actions,
.page-actions {
  animation: appear 0.5s ease 4s forwards;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  opacity: 0;
}

/* ── Stats strip ──────────────────────────────────────── */
.stats-strip {
  background: var(--navy);
  padding: 24px 0;
}

.stats-strip__inner {
  align-items: center;
  display: flex;
  gap: 0;
  justify-content: space-around;
}

.stat {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}

.stat strong {
  color: #00a3e0;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1;
}

.stat span {
  color: rgba(233, 242, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Stats slide-in animation — pure CSS, plays on load */
.stat {
  animation: stat-in 0.55s ease both;
}

.stat:nth-child(1) { animation-delay: 0.1s; }
.stat:nth-child(2) { animation-delay: 0.22s; }
.stat:nth-child(3) { animation-delay: 0.34s; }

.page-section {
  background: transparent;
  padding: 82px 0;
}

.page-section--tint {
  background: linear-gradient(135deg, #f3f7ff, #eefaf5);
}

.section-kicker {
  margin-bottom: 32px;
  max-width: 760px;
}

.section-kicker--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker h2,
.quote-layout h2,
.split h2,
.footer h2,
.page-title {
  color: var(--navy);
  font-size: clamp(27px, 4vw, 44px);
  letter-spacing: 0;
  line-height: 1.14;
}

.section-kicker p {
  color: var(--muted);
  font-size: 18px;
  margin-top: 12px;
}

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

.solution-card {
  background: #123;
  border-radius: var(--radius);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 310px;
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.solution-card::before {
  background: linear-gradient(180deg, rgba(7, 20, 48, 0.06), rgba(7, 20, 48, 0.86)), var(--card-image) center/cover;
  content: "";
  inset: 0;
  position: absolute;
  transition: 0.25s ease;
}

.solution-card:hover::before {
  transform: scale(1.04);
}

.solution-card span,
.solution-card p {
  position: relative;
}

.solution-card span {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.18;
}

.solution-card p {
  color: #ecf4ff;
  margin-top: 10px;
}

.trust-grid,
.card-grid,
.supply-grid,
.contact-grid,
.content-grid {
  display: grid;
  gap: 18px;
}

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

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

.card-grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

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

.trust-grid article,
.content-card,
.supply-card,
.highlight-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(16, 36, 92, 0.06);
  padding: 24px;
}

.trust-grid strong,
.content-card h2,
.content-card h3,
.supply-card h3,
.highlight-panel h2 {
  color: var(--navy);
}

.trust-icon {
  background: linear-gradient(135deg, #edf8fc, #ddf0f8);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  margin-bottom: 14px;
  width: 44px;
}

.trust-icon svg {
  height: 22px;
  width: 22px;
}

/* Industry tiles with icon + hover */
.industry-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(16, 36, 92, 0.06);
  padding: 24px;
  transition: 0.22s ease;
}

.industry-card:hover {
  border-color: rgba(0, 163, 224, 0.4);
  box-shadow: 0 18px 40px rgba(0, 122, 170, 0.12);
  transform: translateY(-3px);
}

.industry-icon {
  align-items: center;
  background: linear-gradient(135deg, #edf8fc, #ddf0f8);
  border-radius: 10px;
  display: flex;
  height: 44px;
  justify-content: center;
  margin-bottom: 14px;
  width: 44px;
}

.industry-icon svg {
  height: 22px;
  width: 22px;
}

.industry-card h3 {
  color: var(--navy);
  margin-bottom: 6px;
}

/* Home CTA section */
.home-cta {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}

.home-cta h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.14;
  margin-bottom: 14px;
}

.home-cta p {
  color: rgba(233, 242, 255, 0.78);
  font-size: 17px;
  margin: 0 auto;
  max-width: 480px;
}

.home-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.home-cta .btn--ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.home-cta .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* WhatsApp floating button */
.whatsapp-fab {
  align-items: center;
  background: #25d366;
  border-radius: 50%;
  bottom: 24px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.22);
  display: flex;
  height: 52px;
  justify-content: center;
  position: fixed;
  right: 24px;
  text-decoration: none;
  transition: 0.2s ease;
  width: 52px;
  z-index: 900;
}

.whatsapp-fab:hover {
  background: #1ebe5d;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.whatsapp-fab svg {
  height: 28px;
  width: 28px;
}

.brand-band {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding: 34px 0;
}

.brand-band .container,
.brand-strip {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.brand-band span,
.brand-strip span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  font-weight: 800;
  padding: 10px 16px;
}

.brand-band__inner {
  display: grid !important;
  gap: 26px;
}

.brand-band__copy {
  margin-bottom: 0;
  max-width: none;
}

.brand-band__copy h2 {
  color: #fff;
}

.partner-marquee {
  overflow: hidden;
  position: relative;
}

.partner-marquee::before,
.partner-marquee::after {
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: 90px;
  z-index: 1;
}

.partner-marquee::before {
  background: linear-gradient(90deg, var(--navy), rgba(16, 36, 92, 0));
  left: 0;
}

.partner-marquee::after {
  background: linear-gradient(270deg, var(--navy), rgba(16, 36, 92, 0));
  left: auto;
  right: 0;
}

.partner-marquee__track {
  align-items: center;
  animation: marquee-slide 24s linear infinite;
  display: flex;
  gap: 18px;
  width: max-content;
}

.partner-marquee:hover .partner-marquee__track {
  animation-play-state: paused;
}

.partner-marquee__logo {
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  flex: 0 0 auto;
  height: 62px;
  width: auto;
}

.brand-strip {
  margin-top: 28px;
}

.brand-strip span {
  background: var(--soft);
  border-color: var(--line);
  color: var(--navy);
}

.page-hero {
  background: var(--navy);
  color: #fff;
  isolation: isolate;
  position: relative;
}

.page-hero--plain {
  background: linear-gradient(135deg, #07152f, #0f2d6d 62%, #1a4fa0);
}

.page-hero--image::before {
  background: linear-gradient(90deg, rgba(5, 13, 32, 0.88), rgba(5, 13, 32, 0.6), rgba(5, 13, 32, 0.24)), var(--hero-image) center/cover;
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.page-hero__content,
.page-hero__inner {
  max-width: 850px;
  padding: 112px 24px;
}

.page-hero__inner--centered,
.page-actions--centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: 0;
  line-height: 1.08;
  margin-bottom: 18px;
}

.page-hero p,
.page-lead {
  color: #edf5ff;
  font-size: 20px;
}

.page-shell {
  padding: 64px 0 82px;
}

.page-shell--compact {
  padding-top: 48px;
}

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

.supply-card span {
  color: var(--green);
  font-weight: 800;
}

.supply-card p,
.content-card p,
.bullet-panel p,
.highlight-panel p,
.prose li {
  color: var(--muted);
  margin-top: 8px;
}

.split {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: 0.9fr 1.1fr;
}

.bullet-panel {
  display: grid;
  gap: 14px;
}

.bullet-panel p {
  background: #fff;
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(16, 36, 92, 0.06);
  padding: 18px;
}

.quote-section {
  background: #07152f;
  color: #fff;
  padding: 82px 0;
}

body:not(.page--inquiry) .quote-section {
  display: none;
}

.quote-layout {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: 0.82fr 1fr;
}

.quote-layout--inquiry {
  grid-template-columns: 0.7fr 1.05fr;
}

.quote-layout p {
  color: #d7e5ff;
}

.quote-form {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 16px;
  padding: 24px;
}

.inquiry-form-card {
  border: 1px solid rgba(108, 200, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
}

.form-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.quote-form label {
  color: var(--navy);
  display: grid;
  font-weight: 800;
  gap: 7px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  padding: 12px 13px;
  width: 100%;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 87, 214, 0.12);
  outline: none;
}

.form-status {
  color: var(--green);
  min-height: 24px;
  font-weight: 800;
}

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

.whatsapp-link {
  color: var(--cyan);
  display: inline-block;
  font-weight: 800;
  margin-top: 18px;
}

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

.inquiry-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(108, 200, 255, 0.16);
  border-radius: 20px;
  padding: 28px;
}

.inquiry-contact-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.inquiry-contact-list a {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(108, 200, 255, 0.12);
  border-radius: 14px;
  color: #e9f2ff;
  font-weight: 700;
  padding: 14px 16px;
}

.related-section h2 {
  color: var(--navy);
  margin-bottom: 18px;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.related-links a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  font-weight: 800;
  padding: 12px 16px;
}

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

.prose ul,
.footer__col ul {
  margin-top: 10px;
  padding-left: 18px;
}

.footer__col li + li {
  margin-top: 8px;
}

.info-link {
  color: var(--blue);
  font-weight: 700;
}

.footer {
  background: #07152f;
  color: #dce9ff;
  padding: 64px 0 28px;
}

.footer__top {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding-bottom: 36px;
}

.footer h2 {
  color: #fff;
  font-size: clamp(22px, 3vw, 30px);
  max-width: 620px;
}

.footer__grid,
.footer__body {
  display: grid;
  gap: 30px;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  padding: 28px 0;
}

.footer__logo {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  filter: none;
  height: auto;
  margin-bottom: 16px;
  max-width: 280px;
  padding: 10px 14px;
}

.footer__brand,
.footer__col {
  align-content: start;
  display: grid;
  gap: 8px;
}

.footer__col h3,
.footer__col h4 {
  color: #fff;
  font-family: var(--brand-font);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer a {
  color: #dce9ff;
  font-size: 13px;
}

.footer a:hover {
  color: #6cc8ff;
}

.footer__brand p,
.footer__brand a,
.footer__bottom p,
.footer__bottom a {
  font-size: 12.5px;
}

.inquiry-dock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  bottom: 24px;
  box-shadow: var(--shadow);
  max-width: 320px;
  padding: 18px 18px 16px;
  position: fixed;
  right: 20px;
  z-index: 980;
}

.inquiry-dock[hidden] {
  display: none;
}

.inquiry-dock__close {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  position: absolute;
  right: 10px;
  top: 10px;
}

.inquiry-dock__eyebrow {
  color: var(--blue);
  display: inline-block;
  font-family: var(--brand-font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.inquiry-dock strong {
  color: var(--navy);
  display: block;
  font-family: var(--brand-font);
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 6px;
  max-width: 220px;
}

.inquiry-dock p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 14px;
}

.inquiry-dock__actions {
  display: flex;
  gap: 10px;
}

.inquiry-dock__actions .btn {
  flex: 1;
}

.footer__bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding-top: 22px;
}

.footer__bottom div {
  display: flex;
  gap: 16px;
}

@keyframes marquee-slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes stat-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sidebar-slide-in {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

@keyframes node-pulse {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }

  50% {
    opacity: 0.65;
    transform: scale(1.4);
  }
}

@keyframes trace-draw {
  from {
    stroke-dashoffset: var(--len, 300);
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes led-blink {
  0%,
  100% {
    opacity: 0.9;
  }

  50% {
    opacity: 0.12;
  }
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes appear {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes tr-open {
  0%   { stroke-dashoffset: var(--len); opacity: 0 }
  5%   { opacity: 0.72 }
  30%  { stroke-dashoffset: 0; opacity: 0.72 }
  68%  { stroke-dashoffset: 0; opacity: 0.42 }
  86%  { stroke-dashoffset: 0; opacity: 0 }
  100% { stroke-dashoffset: var(--len); opacity: 0 }
}

@keyframes tr-dim {
  0%   { stroke-dashoffset: var(--len); opacity: 0 }
  5%   { opacity: 0.38 }
  30%  { stroke-dashoffset: 0; opacity: 0.38 }
  68%  { stroke-dashoffset: 0; opacity: 0.2 }
  86%  { stroke-dashoffset: 0; opacity: 0 }
  100% { stroke-dashoffset: var(--len); opacity: 0 }
}

@keyframes nd {
  0%, 100% { opacity: 0.35 }
  50%       { opacity: 1 }
}

@keyframes nd-in {
  from { opacity: 0 }
  to   { opacity: 0.85 }
}

@keyframes marquee-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .solution-grid,
  .supply-grid,
  .card-grid--3,
  .card-grid--5,
  .trust-grid,
  .contact-grid,
  .content-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-layout,
  .split,
  .footer__grid,
  .footer__body {
    grid-template-columns: 1fr;
  }

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

  .nav__links {
    gap: 12px;
  }
}

@media (max-width: 760px) {
  :root {
    --nav-height: 68px;
  }

  .container {
    padding: 0 18px;
  }

  .nav__logo-img {
    height: 44px;
  }

  .nav__hamburger {
    display: block;
  }

  .nav__links {
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    left: 0;
    padding: 18px;
    position: absolute;
    right: 0;
    top: var(--nav-height);
  }

  .nav__links.open {
    display: block;
  }

  .nav__links > ul,
  .nav__list {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .site-search {
    margin-top: 14px;
  }

  .site-search--open .site-search__input {
    max-width: 180px;
  }

  .mega {
    border: 1px solid var(--line);
    box-shadow: none;
    display: none;
    margin-top: 10px;
    opacity: 1;
    padding: 14px;
    pointer-events: auto;
    position: static;
    transform: none;
    width: auto;
  }

  .nav__item--mega.is-open .mega {
    display: block;
  }

  .mega__grid,
  .solution-grid,
  .supply-grid,
  .card-grid--3,
  .card-grid--5,
  .trust-grid,
  .contact-grid,
  .content-grid--2,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: calc(88vh - var(--nav-height));
  }

  .hero__content,
  .page-hero__content,
  .page-hero__inner {
    padding: 60px 18px 80px;
  }

  .stats-strip__inner {
    gap: 18px 0;
    flex-wrap: wrap;
  }

  .stat {
    width: 50%;
  }

  .page-section,
  .quote-section,
  .page-shell {
    padding: 58px 0;
  }

  .inquiry-highlights {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 240px;
  }

  .footer__top,
  .footer__bottom {
    display: grid;
  }

  .partner-marquee__logo {
    height: 54px;
  }

  .inquiry-dock {
    bottom: 16px;
    left: 16px;
    max-width: none;
    right: 16px;
  }

  .inquiry-dock__actions {
    flex-direction: column;
  }
}

/* Contact strip */
.contact-strip {
  background: var(--navy);
  padding: 24px 0;
}

.contact-strip__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  align-items: center;
  justify-content: center;
}

.contact-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 0.9rem;
}

.contact-strip__item svg {
  flex-shrink: 0;
  opacity: 0.8;
}

.contact-strip__item span {
  color: rgba(255,255,255,0.85);
}

.contact-strip__item a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.contact-strip__item a:hover {
  opacity: 0.75;
}

/* Social sidebar */
.social-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(100%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 8px;
  background: var(--navy);
  border-radius: 10px 0 0 10px;
  z-index: 900;
  box-shadow: -4px 0 20px rgba(16,36,92,0.18);
  animation: sidebar-slide-in 0.6s cubic-bezier(0.22,1,0.36,1) 0.8s both;
}

.social-sidebar__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.social-sidebar__link:hover {
  transform: scale(1.15);
}

.social-sidebar__link--fb:hover  { background: #1877F2; }
.social-sidebar__link--ig:hover  { background: #E1306C; }
.social-sidebar__link--li:hover  { background: #0A66C2; }
.social-sidebar__link--mail:hover { background: #ea4335; }
.social-sidebar__link--wa:hover  { background: #25D366; }

@media (max-width: 600px) {
  .social-sidebar {
    padding: 8px 6px;
    gap: 6px;
  }

  .social-sidebar__link {
    width: 32px;
    height: 32px;
  }

  .social-sidebar__link svg {
    width: 15px;
    height: 15px;
  }
}

/* ── FAQ section (injected by MCP add_faq tool for AEO) ─────────────────── */
.faq-section {
  padding: 3.5rem 0;
  background: var(--soft);
}

.faq-section h2 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 2rem;
  text-align: center;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  margin-bottom: 1rem;
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.5rem;
}

.faq-item p {
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
  font-size: 0.95rem;
}
