:root {
  --bg: #f7f9ff;
  --surface: #ffffff;
  --surface-soft: #f1f5ff;
  --text: #101828;
  --muted: #5b6475;
  --brand: #1f8e89;
  --brand-2: #2d7fd4;
  --line: #dbe3fb;
  --shadow: 0 10px 35px rgba(18, 38, 95, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(circle at top right, #e7eeff 0%, var(--bg) 40%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-top: 6px solid #1c9d9a;
  border-bottom: 1px solid rgba(16, 24, 40, 0.1);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  background: linear-gradient(95deg, #2348e6, #6c4cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease, background-color 0.2s ease;
  border-radius: 10px;
  padding: 8px 10px;
}

.site-nav a:hover {
  color: var(--brand);
  background: #eef7f7;
}

.site-nav .nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav .nav-ctas a {
  background: linear-gradient(95deg, #0e9a92, #1f7bcf);
  color: #fff;
  padding: 9px 14px;
  transition: filter 0.2s ease;
}

.site-nav .nav-ctas a:hover {
  color: #fff;
  filter: brightness(1.06);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  width: 40px;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #1d2747;
  margin: 6px 0;
  border-radius: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 58px;
  background: linear-gradient(180deg, #dff4f0 0%, #ecfaf7 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(44, 145, 138, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 145, 138, 0.1) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 220px at 8% 12%, rgba(71, 162, 154, 0.2), transparent 70%),
    radial-gradient(640px 240px at 90% 20%, rgba(51, 130, 211, 0.14), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  color: var(--brand);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  font-weight: 700;
}

.center {
  text-align: center;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.18;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  margin-bottom: 14px;
  color: #09122f;
}

.hero-badge {
  width: fit-content;
  border: 1px solid #a6ddd8;
  background: #e9f8f6;
  color: #167f7a;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.hero-highlight {
  background: linear-gradient(90deg, #1a8880, #2d7fd4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  margin: 0 0 24px;
  color: #3f5b61;
  font-size: 1.04rem;
  max-width: 60ch;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(30, 138, 150, 0.22);
}

.btn-primary {
  background: linear-gradient(95deg, #0e9a92, #1f7bcf);
  color: #fff;
}

.btn-secondary {
  border-color: #8ec5d0;
  background: rgba(255, 255, 255, 0.72);
  color: #14595e;
}

.hero-chip-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chip {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #bee4e2;
  color: #236368;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-showcase {
  display: flex;
  justify-content: center;
}

.hero-visual {
  width: min(470px, 100%);
  display: grid;
  gap: 14px;
}

.hero-panel {
  background: #fff;
  border: 1px solid #cde5e8;
  box-shadow: 0 14px 28px rgba(23, 95, 112, 0.14);
  border-radius: 14px;
  padding: 14px;
}

.hero-panel-main {
  width: 100%;
  min-height: 235px;
}

.panel-bars {
  margin: 14px 0 12px;
  height: 98px;
  display: flex;
  align-items: end;
  gap: 8px;
}

.panel-bars span {
  flex: 1;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, rgba(31, 142, 137, 0.85), rgba(45, 127, 212, 0.92));
}

.panel-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.stat-k {
  margin: 0;
  color: #0e3947;
  font-size: 1.02rem;
  font-weight: 800;
}

.stat-v {
  margin: 1px 0 0;
  color: #57747e;
  font-size: 0.82rem;
}

.hero-panel-camera {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.camera-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(145deg, #daf4ef, #d2e7ff);
  border: 1px solid #b7d8e2;
  position: relative;
  flex-shrink: 0;
}

.camera-icon::before {
  content: "";
  width: 18px;
  height: 12px;
  border-radius: 4px;
  border: 2px solid #207d93;
  position: absolute;
  left: 11px;
  top: 15px;
}

.camera-icon::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  border-top: 2px solid #207d93;
  border-right: 2px solid #207d93;
  transform: rotate(45deg);
  position: absolute;
  right: 8px;
  top: 18px;
}

.camera-lens {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #207d93;
  left: 17px;
  top: 18px;
}

.hero-panel-report {
  width: 100%;
}

.panel-label {
  margin: 0;
  color: #2b7b83;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.panel-highlight {
  margin: 8px 0 6px;
  color: #0f3344;
  font-size: 0.98rem;
  font-weight: 700;
}

.panel-small {
  margin: 0;
  color: #58727a;
  font-size: 0.84rem;
}

.hero-side-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.section {
  padding: 78px 0;
}

.section-alt {
  background: #eef3ff;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  color: #0c1635;
}

.product-grid,
.feature-grid,
.steps {
  display: grid;
  gap: 18px;
}

.product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.feature-grid article,
.steps article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(18, 38, 95, 0.05);
}

.card h3,
.feature-grid h3,
.steps h3 {
  margin-bottom: 10px;
  color: #111a3f;
}

.card p,
.feature-grid p,
.steps p {
  margin: 0;
  color: var(--muted);
}

.card ul {
  margin: 14px 0;
  padding-left: 18px;
  color: #36425f;
}

.card a {
  display: inline-block;
  color: #1f7bcf;
  font-weight: 700;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: #e9efff;
  border: 1px solid #c9d7ff;
  color: #355dfb;
  font-weight: 700;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.workflow-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(18, 38, 95, 0.05);
}

.workflow-card h3 {
  color: #111a3f;
  margin-bottom: 6px;
}

.workflow-subtitle {
  margin: 0 0 16px;
  color: var(--muted);
}

.workflow-card .steps {
  grid-template-columns: 1fr;
}

.workflow-card .steps article {
  background: #f8faff;
  box-shadow: none;
}

.workflow-card .steps h4 {
  margin: 0 0 8px;
  color: #111a3f;
  font-size: 1.03rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-footer {
  border-top: 1px solid rgba(16, 24, 40, 0.1);
  margin-top: 56px;
}

.footer-wrap {
  min-height: 70px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  color: #54617e;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 14px;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    max-width: 680px;
  }

  .product-grid,
  .feature-grid,
  .workflow-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    background: rgba(247, 249, 255, 0.98);
    border-bottom: 1px solid rgba(16, 24, 40, 0.08);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 4%;
    transform: scaleY(0);
    opacity: 0;
    transform-origin: top;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .site-nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav .nav-ctas {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin-top: 4px;
    gap: 8px;
  }

  .site-nav .nav-ctas a {
    width: 100%;
    text-align: center;
  }

  .product-grid,
  .feature-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 470px;
    margin: 0 auto;
    gap: 12px;
  }

  .hero-panel-main,
  .hero-panel-camera,
  .hero-panel-report {
    min-height: auto;
  }

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 16px 0;
  }
}

@media (max-width: 560px) {
  .hero-side-cards {
    grid-template-columns: 1fr;
  }
}
:root {
  --bg: #f7f9ff;
  --surface: #ffffff;
  --surface-soft: #f1f5ff;
  --text: #101828;
  --muted: #5b6475;
  --brand: #1f8e89;
  --brand-2: #2d7fd4;
  --line: #dbe3fb;
  --shadow: 0 10px 35px rgba(18, 38, 95, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(circle at top right, #e7eeff 0%, var(--bg) 40%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-top: 6px solid #1c9d9a;
  border-bottom: 1px solid rgba(16, 24, 40, 0.1);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  background: linear-gradient(95deg, #2348e6, #6c4cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease, background-color 0.2s ease;
  border-radius: 10px;
  padding: 8px 10px;
}

.site-nav a:hover {
  color: var(--brand);
  background: #eef7f7;
}

.site-nav .nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav .nav-ctas a {
  background: linear-gradient(95deg, #0e9a92, #1f7bcf);
  color: #fff;
  padding: 9px 14px;
  transition: filter 0.2s ease;
}

.site-nav .nav-ctas a:hover {
  color: #fff;
  filter: brightness(1.06);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  width: 40px;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #1d2747;
  margin: 6px 0;
  border-radius: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 58px;
  background: linear-gradient(180deg, #dff4f0 0%, #ecfaf7 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(44, 145, 138, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 145, 138, 0.1) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 220px at 8% 12%, rgba(71, 162, 154, 0.2), transparent 70%),
    radial-gradient(640px 240px at 90% 20%, rgba(51, 130, 211, 0.14), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  color: var(--brand);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  font-weight: 700;
}

.center {
  text-align: center;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.18;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  margin-bottom: 14px;
  color: #09122f;
}

.hero-badge {
  width: fit-content;
  border: 1px solid #a6ddd8;
  background: #e9f8f6;
  color: #167f7a;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.hero-highlight {
  background: linear-gradient(90deg, #1a8880, #2d7fd4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  margin: 0 0 24px;
  color: #3f5b61;
  font-size: 1.04rem;
  max-width: 60ch;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(30, 138, 150, 0.22);
}

.btn-primary {
  background: linear-gradient(95deg, #0e9a92, #1f7bcf);
  color: #fff;
}

.btn-secondary {
  border-color: #8ec5d0;
  background: rgba(255, 255, 255, 0.72);
  color: #14595e;
}

.hero-chip-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chip {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #bee4e2;
  color: #236368;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-showcase {
  display: flex;
  justify-content: center;
}

.hero-visual {
  width: min(470px, 100%);
  display: grid;
  gap: 14px;
}

.hero-panel {
  background: #fff;
  border: 1px solid #cde5e8;
  box-shadow: 0 14px 28px rgba(23, 95, 112, 0.14);
  border-radius: 14px;
  padding: 14px;
}

.hero-panel-main {
  width: 100%;
  min-height: 235px;
}

.panel-bars {
  margin: 14px 0 12px;
  height: 98px;
  display: flex;
  align-items: end;
  gap: 8px;
}

.panel-bars span {
  flex: 1;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, rgba(31, 142, 137, 0.85), rgba(45, 127, 212, 0.92));
}

.panel-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.stat-k {
  margin: 0;
  color: #0e3947;
  font-size: 1.02rem;
  font-weight: 800;
}

.stat-v {
  margin: 1px 0 0;
  color: #57747e;
  font-size: 0.82rem;
}

.hero-panel-camera {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.camera-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(145deg, #daf4ef, #d2e7ff);
  border: 1px solid #b7d8e2;
  position: relative;
  flex-shrink: 0;
}

.camera-icon::before {
  content: "";
  width: 18px;
  height: 12px;
  border-radius: 4px;
  border: 2px solid #207d93;
  position: absolute;
  left: 11px;
  top: 15px;
}

.camera-icon::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  border-top: 2px solid #207d93;
  border-right: 2px solid #207d93;
  transform: rotate(45deg);
  position: absolute;
  right: 8px;
  top: 18px;
}

.camera-lens {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #207d93;
  left: 17px;
  top: 18px;
}

.hero-panel-report {
  width: 100%;
}

.panel-label {
  margin: 0;
  color: #2b7b83;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.panel-highlight {
  margin: 8px 0 6px;
  color: #0f3344;
  font-size: 0.98rem;
  font-weight: 700;
}

.panel-small {
  margin: 0;
  color: #58727a;
  font-size: 0.84rem;
}

.hero-side-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metric-value {
  margin: 0 0 6px;
  font-weight: 800;
  font-size: 1.2rem;
  color: #0e1a3d;
}

.metric-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 78px 0;
}

.section-alt {
  background: #eef3ff;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  color: #0c1635;
}

.product-grid,
.feature-grid,
.steps {
  display: grid;
  gap: 18px;
}

.product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.feature-grid article,
.steps article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(18, 38, 95, 0.05);
}

.card h3,
.feature-grid h3,
.steps h3 {
  margin-bottom: 10px;
  color: #111a3f;
}

.card p,
.feature-grid p,
.steps p {
  margin: 0;
  color: var(--muted);
}

.card ul {
  margin: 14px 0;
  padding-left: 18px;
  color: #36425f;
}

.card a {
  display: inline-block;
  color: #1f7bcf;
  font-weight: 700;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: #e9efff;
  border: 1px solid #c9d7ff;
  color: #355dfb;
  font-weight: 700;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.workflow-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(18, 38, 95, 0.05);
}

.workflow-card h3 {
  color: #111a3f;
  margin-bottom: 6px;
}

.workflow-subtitle {
  margin: 0 0 16px;
  color: var(--muted);
}

.workflow-card .steps {
  grid-template-columns: 1fr;
}

.workflow-card .steps article {
  background: #f8faff;
  box-shadow: none;
}

.workflow-card .steps h4 {
  margin: 0 0 8px;
  color: #111a3f;
  font-size: 1.03rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cta {
  padding-top: 20px;
}

.cta-box {
  background: linear-gradient(120deg, #2f59fa 0%, #6847ff 100%);
  border-radius: 18px;
  padding: clamp(26px, 5vw, 44px);
  text-align: center;
  color: #fff;
}

.cta-box h2 {
  margin-bottom: 12px;
}

.cta-box p {
  max-width: 740px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.92);
}

.cta-box .btn-secondary {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.site-footer {
  border-top: 1px solid rgba(16, 24, 40, 0.1);
  margin-top: 56px;
}

.footer-wrap {
  min-height: 70px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  color: #54617e;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 14px;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    max-width: 680px;
  }

  .product-grid,
  .feature-grid,
  .workflow-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    background: rgba(247, 249, 255, 0.98);
    border-bottom: 1px solid rgba(16, 24, 40, 0.08);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 4%;
    transform: scaleY(0);
    opacity: 0;
    transform-origin: top;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .site-nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav .nav-ctas {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin-top: 4px;
    gap: 8px;
  }

  .site-nav .nav-ctas a {
    width: 100%;
    text-align: center;
  }

  .product-grid,
  .feature-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 470px;
    margin: 0 auto;
    gap: 12px;
  }

  .hero-panel-main,
  .hero-panel-camera,
  .hero-panel-report {
    min-height: auto;
  }

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 16px 0;
  }
}

@media (max-width: 560px) {
  .hero-side-cards {
    grid-template-columns: 1fr;
  }
}
