:root {
  --navy-950: #061225;
  --navy-900: #091a32;
  --navy-800: #102b4e;
  --blue-600: #1268e8;
  --blue-500: #1f7aff;
  --cyan-400: #23c7e8;
  --orange-500: #ff6a2b;
  --orange-600: #eb5317;
  --ink-900: #0d1c2e;
  --ink-700: #31445b;
  --ink-500: #66778c;
  --line: #dce6f0;
  --surface: #f4f8fc;
  --white: #fff;
  --shadow-sm: 0 12px 30px rgba(12, 35, 62, .08);
  --shadow-lg: 0 28px 70px rgba(6, 24, 49, .16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1200px;
  --header-height: 82px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink-900);
  background: var(--white);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  color: var(--ink-900);
  font-weight: 760;
  line-height: 1.1;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: 1.35rem; }
p { color: var(--ink-700); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding-block: clamp(76px, 9vw, 128px); }
.section--soft { background: var(--surface); }
.section--dark { background: var(--navy-950); color: var(--white); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: #bdcce0; }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading--center { text-align: center; margin-inline: auto; }
.section-heading p { font-size: 1.1rem; max-width: 680px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue-600);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.eyebrow--light { color: #7edff1; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--orange-500);
  color: var(--white);
  font-size: .95rem;
  font-weight: 750;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(255, 106, 43, .22);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--orange-600); box-shadow: 0 14px 32px rgba(255, 106, 43, .32); }
.button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid rgba(31, 122, 255, .45);
  outline-offset: 3px;
}
.button--small { min-height: 44px; padding: 11px 20px; font-size: .88rem; }
.button--outline { color: var(--navy-900); background: transparent; border-color: #aebed0; box-shadow: none; }
.button--outline:hover { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); }
.button--light { color: var(--navy-950); background: var(--white); box-shadow: none; }
.button--light:hover { color: var(--navy-950); background: #eaf4ff; }
.button--ghost-light { color: var(--white); background: transparent; border-color: rgba(255,255,255,.42); box-shadow: none; }
.button--ghost-light:hover { background: rgba(255,255,255,.1); }
.text-link { color: var(--blue-600); font-weight: 760; }
.text-link span { display: inline-block; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; top: 10px; left: 10px; padding: 10px 14px; color: white; background: var(--navy-950); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(8, 27, 53, .08); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; width: 220px; flex: 0 0 220px; overflow: visible; }
.brand > a, .brand .custom-logo-link { display: flex; align-items: center; max-width: 100%; }
.brand img, .brand .custom-logo { width: 220px; max-width: 100%; max-height: 58px; object-fit: contain; object-position: left center; }
.primary-nav { display: flex; align-items: center; gap: 28px; }
.gt-menu { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.gt-menu li { position: relative; list-style: none; }
.gt-menu > li > a { display: flex; align-items: center; min-height: 44px; white-space: nowrap; }
.gt-menu a { color: var(--ink-700); font-size: .93rem; font-weight: 700; }
.gt-menu a:hover, .gt-menu .current-menu-item > a { color: var(--blue-600); }
.gt-menu .menu-item-has-children > a::after {
  content: "";
  width: 7px;
  height: 7px;
  margin: -4px 0 0 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.gt-menu .sub-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 235px;
  margin: 0;
  padding: 10px;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.gt-menu .sub-menu::before { content: ""; position: absolute; inset: -12px 0 auto; height: 12px; }
.gt-menu .sub-menu a { display: block; padding: 11px 13px; border-radius: 9px; white-space: nowrap; }
.gt-menu .sub-menu a:hover, .gt-menu .sub-menu .current-menu-item > a { color: var(--blue-600); background: #eef5ff; }
.gt-menu li:hover > .sub-menu, .gt-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.menu-toggle span:not(.screen-reader-text) { display: block; width: 23px; height: 2px; margin: 5px auto; background: var(--navy-950); transition: .2s ease; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(780px, calc(100svh - var(--header-height)));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy-950);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,18,37,.99) 0%, rgba(6,18,37,.94) 43%, rgba(6,18,37,.32) 72%, rgba(6,18,37,.52) 100%), url('../images/hero-tech.webp') center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 560px;
  height: 560px;
  right: 4vw;
  top: 50%;
  border: 1px solid rgba(62,196,255,.17);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 70px rgba(45,139,255,.035), 0 0 0 140px rgba(45,139,255,.025);
}
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 48px; padding-block: 72px; }
.hero__content { max-width: 720px; }
.hero h1 { color: var(--white); margin-bottom: 26px; }
.hero h1 em { color: #73ddff; font-style: normal; }
.hero__content > p { max-width: 650px; margin-bottom: 34px; color: #c2d2e5; font-size: clamp(1.05rem, 2vw, 1.28rem); }
.hero__visual { position: relative; align-self: end; min-height: 590px; display: grid; place-items: end center; }
.hero__visual img { width: min(610px, 48vw); max-height: 580px; object-fit: contain; filter: drop-shadow(0 35px 50px rgba(0,0,0,.45)); }
.hero__badge { position: absolute; left: 0; bottom: 90px; padding: 14px 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; color: white; background: rgba(5,22,43,.75); backdrop-filter: blur(12px); box-shadow: var(--shadow-lg); }
.hero__badge strong { display: block; font-size: 1.3rem; }
.hero__badge span { color: #a9bdd6; font-size: .82rem; }
.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 26px 20px; border-right: 1px solid var(--line); text-align: center; }
.trust-item:first-child { border-left: 1px solid var(--line); }
.trust-item strong { display: block; color: var(--navy-950); font-size: 1.25rem; }
.trust-item span { color: var(--ink-500); font-size: .84rem; }

.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.category-card { position: relative; min-height: 440px; overflow: hidden; border-radius: var(--radius-md); background: var(--navy-900); box-shadow: var(--shadow-sm); }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.category-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 28%, rgba(4,14,29,.88) 100%); }
.category-card__body { position: absolute; z-index: 2; inset: auto 30px 28px; color: var(--white); }
.category-card__body span { color: #90def0; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.category-card h3 { margin: 8px 0 10px; color: var(--white); font-size: clamp(1.6rem, 3vw, 2.3rem); }
.category-card p { margin: 0; color: #d4e0ed; }
.category-card:hover img { transform: scale(1.045); }
.category-card--coming::before { content: "Capabilities"; position: absolute; z-index: 3; top: 20px; right: 20px; padding: 8px 12px; border-radius: 999px; color: var(--navy-950); background: white; font-size: .72rem; font-weight: 800; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.value-card:hover { transform: translateY(-5px); border-color: #b9d5f3; box-shadow: var(--shadow-sm); }
.value-icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 14px; color: var(--blue-600); background: #eaf3ff; font-size: 1.2rem; font-weight: 800; }
.value-card h3 { margin-bottom: 12px; }
.value-card p { margin-bottom: 0; }

.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; counter-reset: step; }
.process-step { position: relative; padding: 28px 22px 0 0; counter-increment: step; }
.process-step::before { content: "0" counter(step); display: grid; width: 52px; height: 52px; place-items: center; margin-bottom: 22px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: #81dff1; font-weight: 800; }
.process-step:not(:last-child)::after { content: ""; position: absolute; top: 26px; left: 64px; right: 12px; height: 1px; background: linear-gradient(90deg, rgba(124,219,241,.65), rgba(124,219,241,.1)); }
.process-step h3 { color: white; font-size: 1.05rem; }
.process-step p { font-size: .9rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 7vw, 90px); align-items: center; }
.split__media { position: relative; }
.split__media img { width: 100%; min-height: 520px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split__stat { position: absolute; right: -24px; bottom: 30px; width: 190px; padding: 24px; border-radius: var(--radius-md); color: white; background: var(--blue-600); box-shadow: var(--shadow-lg); }
.split__stat strong { display: block; font-size: 2.3rem; line-height: 1; }
.split__stat span { font-size: .85rem; }
.check-list { display: grid; gap: 13px; list-style: none; margin: 30px 0 36px; padding: 0; }
.check-list li { position: relative; padding-left: 30px; color: var(--ink-700); font-weight: 650; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--blue-600); font-weight: 900; }

.stats-band { margin-top: 58px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); }
.stat { padding: 30px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border: 0; }
.stat strong { display: block; color: var(--navy-950); font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1; }
.stat span { color: var(--ink-500); font-size: .85rem; }

.inquiry-cta { background: linear-gradient(120deg, #0a65dd, #083d91 72%, #082d62); }
.inquiry-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.inquiry-cta h2 { max-width: 660px; margin-bottom: 15px; color: white; }
.inquiry-cta p { max-width: 650px; margin: 0; color: #d4e6ff; }
.inquiry-cta .button-row { flex: 0 0 auto; }

.page-hero { position: relative; overflow: hidden; padding: clamp(78px, 10vw, 140px) 0; background: var(--navy-950); }
.page-hero::after { content: ""; position: absolute; inset: 0; opacity: .42; background: url('../images/hero-tech.webp') center/cover; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 900px; margin-bottom: 22px; color: white; }
.page-hero p { max-width: 720px; color: #c5d5e8; font-size: 1.15rem; }
.breadcrumb { display: flex; gap: 8px; margin-bottom: 28px; color: #7fdff4; font-size: .8rem; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.breadcrumb a { color: white; opacity: .78; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.product-card__media { display: grid; place-items: center; aspect-ratio: 1.18; overflow: hidden; background: #f0f4f8; }
.product-card__media img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s ease; }
.product-card:hover .product-card__media img { transform: scale(1.035); }
.product-card__body { padding: 24px; }
.product-card__body > span { color: var(--blue-600); font-size: .72rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.product-card h3 { margin: 7px 0 10px; font-size: 1.35rem; }
.product-card p { margin-bottom: 16px; font-size: .9rem; }
.product-card__specs { display: grid; gap: 8px; margin: 0 0 18px; padding: 0; color: var(--ink-700); font-size: .86rem; line-height: 1.5; list-style: none; }
.product-card__specs li { position: relative; padding-left: 15px; }
.product-card__specs li::before { position: absolute; top: .64em; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--blue-500); content: ""; }
.compatibility-note { max-width: 860px; margin: 34px auto 0; color: var(--ink-500); font-size: .82rem; line-height: 1.65; text-align: center; }
.capability-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.capability-card { display: grid; grid-template-columns: .95fr 1.05fr; min-height: 370px; overflow: hidden; border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); }
.capability-card img { width: 100%; height: 100%; object-fit: cover; }
.capability-card__body { align-self: center; padding: 36px; }
.capability-card__body ul { padding-left: 18px; color: var(--ink-700); }

.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.about-value { padding: 30px; border-left: 3px solid var(--blue-500); background: var(--surface); }
.about-value h3 { margin-bottom: 10px; }
.about-value p { margin: 0; }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(42px, 7vw, 90px); align-items: start; }
.contact-cards { display: grid; gap: 16px; margin-top: 34px; }
.contact-card { padding: 22px 24px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: white; }
.contact-card span { display: block; margin-bottom: 4px; color: var(--ink-500); font-size: .77rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.contact-card strong, .contact-card a { color: var(--ink-900); font-weight: 700; }
.contact-form { padding: clamp(28px, 5vw, 50px); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-lg); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--ink-900); font-size: .85rem; font-weight: 750; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid #cbd7e4; border-radius: 10px; color: var(--ink-900); background: #fbfdff; }
.field input, .field select { height: 52px; padding: 0 15px; }
.field textarea { min-height: 150px; padding: 14px 15px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue-500); background: white; }
.form-note { margin-top: 16px; color: var(--ink-500); font-size: .8rem; }
.form-status { margin-bottom: 22px; padding: 14px 16px; border-radius: 10px; font-weight: 650; }
.form-status--success { color: #11653d; background: #e7f8ef; }
.form-status--error { color: #9d271d; background: #fff0ee; }
.honeypot { position: absolute; left: -9999px; }

.prose { max-width: 850px; }
.prose h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.prose p, .prose li { font-size: 1.05rem; }
.page-default { min-height: 60vh; }
.site-footer { padding-top: 74px; color: #b8c7d8; background: #050f20; }
.footer-grid { display: grid; grid-template-columns: 1.45fr .75fr .75fr 1.35fr; gap: 48px; padding-bottom: 60px; }
.footer-brand img { width: 230px; margin-bottom: 24px; filter: grayscale(1) brightness(0) invert(1); }
.footer-brand p { max-width: 330px; color: #94a9c0; }
.site-footer h2 { margin-bottom: 22px; color: white; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer ul { display: grid; gap: 10px; list-style: none; margin: 0; padding: 0; }
.site-footer a:hover { color: white; }
.footer-contact { font-size: .9rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; color: #71879e; font-size: .78rem; }
.whatsapp-float { position: fixed; z-index: 990; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 8px; padding: 12px 17px; border-radius: 999px; color: white; background: #19a865; font-size: .86rem; font-weight: 800; box-shadow: 0 10px 30px rgba(9,94,56,.3); transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px); }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1020px) {
  :root { --header-height: 72px; }
  .menu-toggle { display: block; position: relative; z-index: 3; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: fixed; z-index: 2; inset: var(--header-height) 0 auto; display: none; max-height: calc(100svh - var(--header-height)); overflow-y: auto; padding: 28px 20px 34px; border-top: 1px solid var(--line); background: white; box-shadow: var(--shadow-lg); }
  .primary-nav.is-open { display: block; }
  .gt-menu { align-items: stretch; flex-direction: column; gap: 0; }
  .gt-menu li { border-bottom: 1px solid var(--line); }
  .gt-menu > li > a { display: flex; min-height: auto; padding: 15px 4px; }
  .gt-menu .sub-menu { position: static; min-width: 0; margin: -4px 0 10px; padding: 0 0 0 18px; border: 0; border-radius: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; transition: none; }
  .gt-menu .sub-menu::before { display: none; }
  .gt-menu .sub-menu li { border: 0; }
  .gt-menu .sub-menu a { padding: 10px 4px; color: var(--ink-500); white-space: normal; }
  .gt-menu li:hover > .sub-menu, .gt-menu li:focus-within > .sub-menu { transform: none; }
  .nav-cta { width: 100%; margin-top: 22px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { padding-top: 30px; }
  .hero__visual { min-height: 440px; }
  .hero__visual img { width: min(650px, 92vw); max-height: 480px; }
  .hero__badge { left: 4%; bottom: 40px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .process-step::after { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding-block: 72px; }
  .brand { width: 180px; flex-basis: 180px; }
  .brand img, .brand .custom-logo { width: 180px; }
  .hero { min-height: auto; }
  .hero__grid { padding-block: 56px 28px; gap: 10px; }
  .hero h1 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero__content > p { font-size: 1rem; }
  .hero__visual { min-height: 340px; }
  .hero__visual img { max-height: 360px; }
  .hero__badge { bottom: 20px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .category-grid, .value-grid, .split, .about-values, .contact-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 350px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .split__media { order: -1; }
  .split__media img { min-height: 340px; }
  .split__stat { right: 12px; bottom: 12px; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .inquiry-cta__inner { align-items: flex-start; flex-direction: column; }
  .product-grid { grid-template-columns: 1fr; }
  .capability-card { grid-template-columns: 1fr; }
  .capability-card img { height: 270px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-grid > :last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 5px; }
  .whatsapp-float span:last-child { display: none; }
  .whatsapp-float { width: 48px; height: 48px; justify-content: center; padding: 0; }
}

@media (max-width: 440px) {
  .button-row .button { width: 100%; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-top: 1px solid var(--line); }
  .stat:first-child { border-top: 0; }
}
