:root {
  --bg: #f5fdff;
  --surface: #ffffff;
  --surface-2: #e9f8fc;
  --blue: #1227ff;
  --blue-soft: #21b3d0;
  --red: #ff1414;
  --white: #ffffff;
  --text: #07184e;
  --muted: #52647d;
  --line: rgba(7, 24, 78, 0.12);
  --shadow: 0 24px 80px rgba(7, 24, 78, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(33, 179, 208, 0.22), transparent 24rem),
    radial-gradient(circle at 84% 6%, rgba(18, 39, 255, 0.13), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f2fcff 42%, #ffffff 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 24, 78, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 24, 78, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent 78%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  padding: 14px 0;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.78);
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(18, 39, 255, 0.22);
}

.brand span {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: #26385e;
  font-size: 0.95rem;
}

.site-nav a,
.nav-dropdown-toggle {
  transition: color 180ms ease;
}

.site-nav a:hover,
.nav-dropdown-toggle:hover {
  color: var(--blue);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.nav-dropdown-toggle span {
  color: var(--red);
  font-size: 0.8rem;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 40;
  display: none;
  min-width: 260px;
  padding: 0.7rem;
  border: 1px solid rgba(18, 39, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: #11182c;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, 8px);
}

.nav-dropdown-menu a {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  color: #10172d;
  font-weight: 800;
}

.nav-dropdown-menu a:hover {
  color: var(--blue);
  background: rgba(18, 39, 255, 0.08);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  display: grid;
  transform: translate(-50%, 0);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 39, 255, 0.06);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue);
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  min-height: calc(92vh - 78px);
  padding: 52px 0 70px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 5.6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-text {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(255, 20, 20, 0.26);
}

.btn-secondary {
  border-color: rgba(18, 39, 255, 0.22);
  background: rgba(18, 39, 255, 0.08);
}

.btn-whatsapp {
  border-color: rgba(33, 179, 208, 0.32);
  background: rgba(33, 179, 208, 0.12);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 650px;
}

.metrics div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.metrics strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.75rem;
}

.metrics span {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-slider {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow), 0 0 90px rgba(18, 39, 255, 0.24);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 520ms ease;
}

.slide.is-active {
  opacity: 1;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 24, 78, 0.64), rgba(7, 24, 78, 0.02)),
    linear-gradient(180deg, transparent, rgba(7, 24, 78, 0.5));
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-copy {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 2;
  max-width: 520px;
}

.slide-copy span {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.slide-copy strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--white);
  background: rgba(5, 7, 18, 0.56);
  font-size: 2rem;
  cursor: pointer;
  transform: translateY(-50%);
}

.slider-prev {
  left: 1rem;
}

.slider-next {
  right: 1rem;
}

.slider-dots {
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  z-index: 3;
  display: flex;
  gap: 0.45rem;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--red);
  box-shadow: 0 0 18px rgba(255, 20, 20, 0.72);
}

.dashboard-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(18, 39, 255, 0.22), rgba(255, 20, 20, 0.05));
  box-shadow: var(--shadow), 0 0 90px rgba(18, 39, 255, 0.32);
  backdrop-filter: blur(16px);
}

.main-dashboard {
  position: absolute;
  inset: 42px 0 auto auto;
  width: min(100%, 520px);
  min-height: 430px;
  padding: 1rem;
  animation: floatPanel 6s ease-in-out infinite;
}

.dashboard-top {
  display: flex;
  gap: 0.5rem;
  padding: 0.2rem 0 1rem;
}

.dashboard-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.dashboard-top span:first-child {
  background: var(--red);
}

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

.panel {
  min-height: 150px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(5, 7, 18, 0.64);
}

.panel small,
.software-spotlight .eyebrow {
  color: var(--muted);
}

.panel strong {
  display: block;
  margin: 0.25rem 0 1rem;
  font-size: 1.8rem;
}

.wide-panel {
  grid-column: 1 / -1;
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 0.45rem;
  height: 88px;
}

.bar-chart i {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--red), var(--blue-soft));
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--white);
  font-size: 0.85rem;
}

.status-dot::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px var(--red);
}

.module-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.module-list span {
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(62, 99, 255, 0.35);
  border-radius: 8px;
  color: #dfe5ff;
  background: rgba(18, 39, 255, 0.14);
}

.floating-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.chip-red {
  top: 16px;
  right: 24px;
  background: var(--red);
}

.chip-blue {
  bottom: 34px;
  left: 6px;
  background: var(--blue);
}

.trusted {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 1rem 0 5rem;
}

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

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.logo-row span {
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #07184e;
  background: rgba(255, 255, 255, 0.8);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.about,
.services,
.software,
.why,
.team,
.portfolio,
.testimonials,
.contact,
.page-section,
.home-overview {
  padding: 5rem 0;
}

.page-hero {
  padding: 7rem 0 3rem;
}

.page-hero-image {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: end;
  padding: 8rem 0 4rem;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.5)),
    var(--banner-image);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-bottom: 1px solid var(--line);
}

.page-hero-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(245, 253, 255, 0.94));
}

.page-hero-image .section-shell {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(2.75rem, 5vw, 5.4rem);
  line-height: 1;
}

.page-hero p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.8;
}

.about-grid,
.card-grid,
.team-grid,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-grid article,
.feature-card,
.software-list article,
.team-grid article,
.portfolio-grid article,
.testimonial-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.2);
}

.about-grid article,
.feature-card,
.software-list article,
.team-grid article,
.portfolio-grid article,
.testimonial-card {
  padding: 1.25rem;
}

.about-grid h3,
.feature-card h3,
.software-list h3,
.team-grid h3,
.portfolio-grid h3 {
  margin-bottom: 0.7rem;
}

.about-grid p,
.feature-card p,
.software-list p,
.team-grid p,
.portfolio-grid p,
.contact-copy p,
.testimonial-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

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

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--red));
  font-size: 0.8rem;
  font-weight: 900;
}

.software-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
}

.software-spotlight {
  min-height: 520px;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border: 1px solid rgba(62, 99, 255, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(18, 39, 255, 0.12), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at 90% 14%, rgba(33, 179, 208, 0.28), transparent 18rem);
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.software-spotlight h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
}

.software-spotlight p {
  color: var(--muted);
  line-height: 1.7;
}

.text-link {
  width: fit-content;
  color: var(--blue);
  font-weight: 900;
  border-bottom: 2px solid var(--red);
}

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

.software-list article {
  min-height: 250px;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: 6rem 0 4rem;
}

.product-hero-banner {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  overflow: hidden;
  border-radius: 8px;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.54)),
    var(--banner-image);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 4rem 2rem;
}

.product-hero h1 {
  max-width: 850px;
  font-size: clamp(2.8rem, 5.2vw, 5.6rem);
  line-height: 1;
}

.product-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.8;
}

.proof-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.proof-strip strong {
  color: var(--red);
  font-size: 2rem;
}

.proof-strip span {
  color: #dfe5ff;
  font-weight: 800;
}

.product-shot {
  padding: 0.7rem;
  border: 1px solid rgba(62, 99, 255, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(18, 39, 255, 0.22), rgba(255, 20, 20, 0.08)),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow), 0 0 80px rgba(18, 39, 255, 0.22);
}

.product-shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.industry-grid,
.feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.industry-grid article,
.feature-list article,
.cta-panel {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.industry-grid span {
  color: var(--red);
  font-weight: 900;
}

.industry-grid p,
.feature-list p,
.demo-section p,
.cta-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.feature-split,
.demo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 2rem;
  align-items: start;
}

.feature-split h2,
.demo-section h2,
.cta-panel h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.04;
}

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

.demo-section {
  padding: 5rem 0;
}

.video-frame {
  overflow: hidden;
  border: 1px solid rgba(62, 99, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.cta-panel {
  text-align: center;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 20, 20, 0.28), transparent 20rem),
    linear-gradient(145deg, rgba(33, 179, 208, 0.24), rgba(255, 255, 255, 0.95));
}

.cta-panel p {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.cta-panel .hero-actions {
  justify-content: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.why-grid div {
  min-height: 170px;
  padding: 1.25rem;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.why-grid div:last-child {
  border-right: 0;
}

.why-grid strong {
  display: block;
  color: var(--red);
  font-size: 0.9rem;
  margin-bottom: 3.5rem;
}

.why-grid span {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
}

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

.team-grid article span,
.portfolio-grid span {
  color: var(--red);
  font-weight: 900;
}

.team-grid h3 {
  font-size: 1rem;
}

.portfolio-grid article {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.92)),
    linear-gradient(135deg, rgba(33, 179, 208, 0.24), rgba(255, 20, 20, 0.1));
}

.testimonial-card {
  max-width: 870px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-card p {
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 1.4;
}

.testimonial-card span {
  color: var(--blue);
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 2rem;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1;
}

.contact-details {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.contact-details a,
.contact-details span {
  color: #26385e;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form span {
  color: #26385e;
  font-weight: 800;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.9rem;
  color: var(--white);
  background: #07184e;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
  box-shadow: 0 20px 38px rgba(255, 20, 20, 0.34);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.55fr 0.55fr;
  gap: 2rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  color: #07184e;
}

.site-footer h3 {
  margin-bottom: 0.9rem;
}

.site-footer a:not(.brand) {
  display: block;
  margin: 0.45rem 0;
  color: var(--muted);
}

.footer-brand {
  margin-bottom: 1rem;
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1050px) {
  .service-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero,
  .software-layout,
  .contact,
  .product-hero,
  .feature-split,
  .demo-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 460px;
  }

  .main-dashboard {
    left: 0;
    right: auto;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 7, 18, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.9rem;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    padding: 0.9rem;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 0 0.55rem 0.55rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
  }

  .nav-dropdown-menu a {
    color: var(--white);
  }

  .hero {
    padding-top: 32px;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4.3rem);
  }

  .metrics,
  .trusted,
  .about-grid,
  .card-grid,
  .software-list,
  .industry-grid,
  .feature-list,
  .why-grid,
  .team-grid,
  .portfolio-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 400px;
  }

  .hero-slider {
    min-height: 420px;
  }

  .main-dashboard {
    inset: 24px 0 auto 0;
    min-height: 360px;
  }

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

  .panel {
    min-height: auto;
  }

  .wide-panel {
    grid-column: auto;
  }

  .trusted {
    padding-bottom: 3rem;
  }

  .about,
  .services,
  .software,
  .why,
  .team,
  .portfolio,
  .testimonials,
  .contact,
  .page-section,
  .home-overview {
    padding: 3.5rem 0;
  }

  .page-hero {
    padding: 4rem 0 1rem;
  }

  .page-hero-image {
    min-height: 480px;
    padding: 5.5rem 0 2.5rem;
    background-attachment: scroll;
  }

  .product-hero-banner {
    width: min(100% - 32px, 1180px);
    padding: 2rem 1rem;
    background-attachment: scroll;
  }

  .why-grid div {
    min-height: 140px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .why-grid div:last-child {
    border-bottom: 0;
  }
}
