:root {
  --bg: #f4f8ff;
  --surface: #ffffff;
  --surface-alt: #eef5ff;
  --text: #0f2138;
  --muted: #46607d;
  --line: #cdddf1;
  --brand: #1e5aa8;
  --brand-strong: #143e77;
  --accent: #f2c33a;
  --shadow: 0 14px 34px rgba(20, 62, 119, 0.12);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background: radial-gradient(circle at 10% 12%, #d8e9ff 0, transparent 35%),
    radial-gradient(circle at 86% 72%, #fff2bf 0, transparent 32%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

h1,
h2,
h3,
.logo-text {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

p {
  margin: 0;
}

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

.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--brand-strong);
  font-weight: 700;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 2.7rem 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(244, 248, 255, 0.88);
  border-bottom: 1px solid rgba(205, 221, 241, 0.8);
}

.nav-wrap {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  font-size: 0.95rem;
}

.logo-image {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
}

.logo-text {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: var(--muted);
  font-weight: 500;
  transition: color 180ms ease;
}

.nav a:hover {
  color: var(--brand-strong);
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.4rem;
}

.hero {
  padding-top: 2rem;
  padding-bottom: 0.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  padding: 0;
}

.hero-content {
  padding: 0;
  max-width: 52ch;
}

.hero-tags {
  margin-top: 1.05rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-tags span {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.34rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  background: rgba(30, 90, 168, 0.14);
  color: var(--brand-strong);
  border-radius: 999px;
  padding: 0.24rem 0.6rem;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  margin-bottom: 0.35rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-tagline {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0.9rem;
}

.hero-copy {
  max-width: 56ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.hero-actions .btn {
  padding: 0.52rem 0.9rem;
  font-size: 0.9rem;
}

.cta-row {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 12px;
  font-weight: 700;
  padding: 0.68rem 1rem;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  cursor: pointer;
}

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

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 22px rgba(30, 90, 168, 0.28);
}

.btn-primary:hover {
  background: var(--brand-strong);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-full {
  width: 100%;
}

.hero-metrics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.hero-metrics li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.5rem 0.65rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface-alt);
}

.hero-metrics strong {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.2;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.2;
}

.hero-aside {
  display: block;
  max-width: 390px;
  justify-self: end;
}

.hero-media {
  display: grid;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.hero-media:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
  box-shadow: 0 10px 24px rgba(20, 62, 119, 0.16);
}

.hero-media-visual {
  position: relative;
  background: #f8fbff;
  padding: 0.45rem;
  border-bottom: 1px solid var(--line);
}

.hero-media-video {
  width: 100%;
  height: 168px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 1px solid var(--line);
  background: #fff;
}

.hero-media-badge {
  position: absolute;
  top: 0.82rem;
  left: 0.82rem;
  background: rgba(19, 44, 90, 0.9);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.18rem 0.48rem;
}

.hero-media-body {
  padding: 0.52rem 0.64rem 0.58rem;
  display: grid;
  gap: 0.3rem;
}

.hero-media-body strong {
  font-size: 0.92rem;
  line-height: 1.25;
}

.hero-media-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.hero-media-points {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.1rem;
  color: var(--text);
  font-size: 0.78rem;
}

.hero-media-cta {
  color: var(--brand-strong);
  font-weight: 600;
  font-size: 0.82rem;
}

.card,
.split-card,
.step,
blockquote,
.contact-info,
.contact-form {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-panel {
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 0.7rem;
}

.hero-panel h2 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.hero-panel p {
  color: var(--muted);
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
}

.highlights {
  padding-top: 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.highlight-card {
  background: rgba(246, 250, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.85rem;
}

.highlight-card h3 {
  font-size: 1.04rem;
  margin-bottom: 0.4rem;
}

.highlight-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.client-strip {
  padding-top: 0;
}

.trust-head {
  margin-bottom: 0.75rem;
}

.trust-head h2 {
  max-width: 18ch;
}

.trust-tree {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfdff 0%, #f5faff 100%);
  box-shadow: var(--shadow);
  padding: 0.9rem 0.9rem 0.8rem;
}

.trust-root {
  width: fit-content;
  margin: 0 auto 0.85rem;
  padding: 0.52rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(30, 90, 168, 0.24);
  background: #fff;
  text-align: center;
  display: grid;
  gap: 0.1rem;
  position: relative;
}

.trust-root strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.trust-root span {
  color: var(--muted);
  font-size: 0.76rem;
}

.trust-root::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 1px);
  width: 1px;
  height: 16px;
  background: rgba(30, 90, 168, 0.35);
  transform: translateX(-50%);
}

.trust-branches {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  padding-top: 0.38rem;
}

.trust-branches::before {
  content: "";
  position: absolute;
  left: 12.5%;
  right: 12.5%;
  top: -1px;
  height: 1px;
  background: rgba(30, 90, 168, 0.25);
}

.trust-branch {
  position: relative;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.46rem 0.45rem;
  font-weight: 700;
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.24;
}

.trust-branch::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 1px;
  height: 8px;
  background: rgba(30, 90, 168, 0.28);
  transform: translateX(-50%);
}

.carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.carousel-controls {
  display: flex;
  gap: 0.5rem;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text);
}

.product-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 260px);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}

.track-card {
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.track-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.track-card h3,
.track-card .link-btn {
  padding-left: 0.9rem;
  padding-right: 0.9rem;
}

.track-card h3 {
  font-size: 1rem;
  padding-top: 0.85rem;
}

.track-card .link-btn {
  display: block;
  padding-top: 0.45rem;
  padding-bottom: 0.9rem;
}

.sample-cta {
  padding-top: 0.9rem;
}

.coverage-map {
  padding-top: 0.4rem;
  padding-bottom: 1.2rem;
}

.coverage-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.7rem;
  align-items: start;
}

.coverage-map-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 0.8rem;
}

.coverage-map-card img {
  width: 100%;
  display: block;
  border-radius: 14px;
}

.coverage-layout.compact {
  max-width: 1040px;
}

.coverage-map-card.compact {
  padding: 0.55rem;
}

.coverage-proof-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 0.65rem;
}

.coverage-proof-head {
  font-weight: 700;
  color: var(--brand-strong);
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
}

.coverage-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}

.coverage-stats-grid div {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-alt);
  padding: 0.45rem;
  display: grid;
  gap: 0.15rem;
}

.coverage-stats-grid strong {
  font-size: 1rem;
  line-height: 1;
}

.coverage-stats-grid span {
  color: var(--muted);
  font-size: 0.72rem;
}

.sample-box {
  background: linear-gradient(135deg, #f4f9ff, #fffdf2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.fab {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 999px;
  padding: 0.62rem 0.85rem;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--surface);
}

.fab-whatsapp {
  background: #1fa855;
  border-color: #1b8f4a;
  color: #fff;
}

.fab-call {
  background: var(--brand);
  border-color: var(--brand-strong);
  color: #fff;
}

@media (min-width: 641px) {
  .fab-call {
    display: none;
  }
}

.mini-form,
.contact-form {
  display: grid;
  gap: 0.7rem;
}

label {
  display: grid;
  gap: 0.25rem;
  font-weight: 600;
  font-size: 0.9rem;
}

input,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 0.58rem 0.64rem;
  font: inherit;
  background: #fff;
}

select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 0.58rem 2.2rem 0.58rem 0.64rem;
  font: inherit;
  color: var(--text);
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 16px) calc(50% - 3px), calc(100% - 10px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(30, 90, 168, 0.25);
  border-color: var(--brand);
}

select:focus {
  outline: 2px solid rgba(30, 90, 168, 0.25);
  border-color: var(--brand);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.split-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.2rem;
}

.split-card p {
  color: var(--muted);
  max-width: 72ch;
}

.about-card {
  gap: 0.75rem;
  padding: 0.95rem;
}

.about-lead {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.45;
  max-width: 58ch;
}

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

.about-points span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-alt);
  padding: 0.38rem 0.56rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.about-stats {
  margin-top: 0.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.42rem;
}

.about-stats div {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.55rem;
  background: var(--surface-alt);
}

.about-stats strong {
  display: block;
  font-size: 0.96rem;
}

.about-stats span {
  color: var(--muted);
  font-size: 0.74rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.card {
  padding: 1.1rem;
  position: relative;
  overflow: hidden;
}

.card-media {
  padding: 0;
}

.card-media img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--line);
}

.card-media img.omr-portfolio-img {
  object-fit: contain;
  background: #fff;
}

.card-media h3,
.card-media .link-btn {
  padding-left: 1.1rem;
  padding-right: 1.1rem;
}

.card-media h3 {
  padding-top: 0.75rem;
}

.card-media .link-btn {
  padding-top: 0.35rem;
  padding-bottom: 0.75rem;
}

.card::before {
  content: "";
  position: absolute;
  inset: auto -35% -60% auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(30, 90, 168, 0.16), transparent 66%);
}

.card-media::before {
  display: none;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.card p {
  color: var(--muted);
}

/* Product portfolio – concise tile grid */
.section.product-portfolio {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.product-portfolio-head {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.product-portfolio-head .eyebrow {
  margin-bottom: 0;
}

.product-portfolio-head h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  margin: 0;
  line-height: 1.2;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.product-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.product-tile {
  display: block;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 4px 16px rgba(20, 62, 119, 0.08);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-tile:hover {
  border-color: var(--brand);
  box-shadow: 0 6px 20px rgba(30, 90, 168, 0.12);
}

.product-tile-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--line);
  background: var(--surface-alt);
}

.product-tile-img.omr-img {
  object-fit: cover;
  object-position: center top;
  background: #fff;
}

.product-tile-title {
  display: block;
  padding: 0.46rem 0.62rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.product-portfolio-cta {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
}

.product-portfolio-cta a {
  color: var(--brand-strong);
  font-weight: 600;
}

.product-portfolio-cta a:hover {
  text-decoration: underline;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pill-grid span {
  padding: 0.5rem 0.78rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-weight: 600;
  color: var(--muted);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
  position: relative;
  align-items: stretch;
}

.step {
  position: relative;
  padding: 0.72rem 0.7rem 0.66rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #ffffff 0%, #f4f9ff 100%);
  box-shadow: 0 8px 20px rgba(20, 62, 119, 0.08);
}

.step span {
  min-width: 46px;
  width: fit-content;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 0 0.5rem;
  background: linear-gradient(135deg, var(--brand), #2b7bd6);
}

.step h3 {
  margin: 0.56rem 0 0.26rem;
  font-size: 0.95rem;
  line-height: 1.25;
}

.step p {
  color: var(--muted);
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.35;
}

.testimonials {
  padding-top: 1.2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.85rem;
  display: grid;
  gap: 0.7rem;
}

.testimonial-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: center;
}

.testimonial-head img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.testimonial-head h3 {
  margin: 0;
  font-size: 1rem;
}

.testimonial-head p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.verified-pill {
  font-size: 0.74rem;
  font-weight: 700;
  color: #1f7a3d;
  background: #e6f7ec;
  border: 1px solid #bfe9cd;
  padding: 0.24rem 0.42rem;
  border-radius: 999px;
}

.testimonial-copy {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact {
  padding-bottom: 2.2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 0.8rem;
}

.contact-info,
.contact-form {
  padding: 1rem;
}

.contact-info h3 {
  margin-bottom: 0.8rem;
}

.contact-info p {
  color: var(--muted);
  margin-bottom: 0.52rem;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
}

.footer-wrap {
  min-height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
}

.footer p,
.footer a {
  color: var(--muted);
  font-weight: 500;
}

.bg-glow {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  width: 36vw;
  height: 36vw;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

.bg-glow-top {
  background: #b8d5ff;
  top: -12vw;
  right: -9vw;
}

.bg-glow-bottom {
  background: #ffe8a8;
  left: -10vw;
  bottom: -16vw;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .about-layout,
  .highlights-grid,
  .coverage-layout,
  .sample-box,
  .contact-grid,
  .testimonial-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

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

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

  .hero-aside {
    max-width: 100%;
    justify-self: auto;
  }

  .hero-media-video {
    height: 180px;
  }

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

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

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

  .trust-head h2 {
    max-width: 100%;
  }

  .about-points {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .carousel-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .sample-box {
    display: grid;
  }

  .nav {
    position: fixed;
    inset: 78px 4vw auto 4vw;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 0.9rem;
    flex-direction: column;
    align-items: flex-start;
    transform: scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav.open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .menu-btn {
    display: block;
  }
}

@media (max-width: 640px) {
  .highlights {
    display: none;
  }

  .section {
    padding: 1.65rem 0;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-grid {
    padding: 0;
    gap: 0.85rem;
  }

  .hero-content h1 {
    font-size: 1.45rem;
    line-height: 1.2;
    margin-bottom: 0.3rem;
  }

  .hero-tagline {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }

  .hero .hero-actions {
    flex-direction: row;
    margin-bottom: 0.75rem;
  }

  .hero .hero-actions .btn {
    flex: 1;
    min-width: 0;
  }

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

  .hero-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
  }

  .hero-metrics li {
    padding: 0.4rem 0.5rem;
  }

  .hero-metrics strong {
    font-size: 0.82rem;
  }

  .hero-metrics span {
    font-size: 0.68rem;
  }

  .hero-media {
    border-radius: 16px;
  }

  .hero-media-visual {
    padding: 0.4rem;
  }

  .hero-media-video {
    height: 132px;
    aspect-ratio: auto;
  }

  .hero-media-body {
    padding: 0.5rem 0.56rem;
    gap: 0.24rem;
  }

  .hero-media-body strong {
    font-size: 0.86rem;
  }

  .hero-media-body p {
    font-size: 0.76rem;
  }

  .hero-media-points {
    font-size: 0.73rem;
    gap: 0.06rem;
  }

  .hero-media-points li:nth-child(2) {
    display: none;
  }

  .hero-media-badge {
    font-size: 0.62rem;
    padding: 0.15rem 0.4rem;
  }

  .hero-panel {
    display: none;
  }

  .coverage-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.38rem;
  }

  .coverage-stats-grid strong {
    font-size: 0.92rem;
  }

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

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

  .product-tile-img {
    height: 104px;
  }

  .product-tile-title {
    padding: 0.42rem 0.55rem;
    font-size: 0.84rem;
  }

  /* Product portfolio – mobile heading */
  .product-portfolio-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
  }

  .product-portfolio-head .eyebrow {
    margin-bottom: 0;
  }

  .product-portfolio-head h2 {
    font-size: 1.22rem;
    line-height: 1.2;
  }

  .section.product-portfolio {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .trust-tree {
    padding: 0.75rem 0.65rem 0.65rem;
  }

  .trust-root {
    margin-bottom: 0.72rem;
  }

  .trust-root::after {
    height: 12px;
  }

  .trust-branches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.38rem;
    padding-top: 0.22rem;
  }

  .trust-branches::before {
    left: 25%;
    right: 25%;
  }

  .trust-branch {
    padding: 0.4rem 0.35rem;
    font-size: 0.76rem;
  }

  .floating-actions {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: row;
    gap: 0.6rem;
  }

  .fab {
    flex: 1;
    text-align: center;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

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

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0.5rem 0;
  }
}
