/* DOBOT Official Website - Complete CSS - matches officeHomePage.png */
:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: rgba(15, 23, 42, 0.12);
  --shadow: 0 16px 50px rgba(2, 6, 23, 0.12);
  --shadow-sm: 0 10px 24px rgba(2, 6, 23, 0.12);
  --blue: #1f54ff;
  --blue-2: #0b2bff;
  --chip: #f1f5f9;
  --radius: 16px;
  --radius-sm: 12px;
  --container: 1080px;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

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

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

.sr-only {
  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: absolute;
  left: 10px;
  top: 10px;
  transform: translateY(-150%);
  background: #0b1220;
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
  transition: transform 150ms ease;
}
.skip-link:focus {
  transform: translateY(0);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.header-inner {
  height: 64px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 130px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffffff, #f1f5ff);
  border: 1px solid rgba(31, 84, 255, 0.18);
  color: #2747ff;
  box-shadow: 0 10px 24px rgba(31, 84, 255, 0.16);
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 14px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.72);
  padding: 10px 8px;
  border-radius: 10px;
}
.nav-link:hover {
  color: rgba(15, 23, 42, 0.92);
  background: rgba(15, 23, 42, 0.04);
}
.nav-link.is-active {
  color: rgba(15, 23, 42, 0.92);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  height: 34px;
  width: 34px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: rgba(15, 23, 42, 0.7);
}
.icon-btn:hover {
  box-shadow: 0 12px 26px rgba(2, 6, 23, 0.1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid transparent;
  transition: transform 120ms ease, box-shadow 180ms ease, background 180ms ease;
  cursor: pointer;
}
.btn:active {
  transform: translateY(1px);
}
.btn-sm {
  padding: 9px 12px;
  border-radius: 10px;
}
.btn-primary {
  background: linear-gradient(180deg, #2a63ff, #1f54ff);
  color: #fff;
  box-shadow: 0 14px 30px rgba(31, 84, 255, 0.28);
}
.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(31, 84, 255, 0.34);
}
.btn-ghost {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.08);
  color: rgba(15, 23, 42, 0.8);
}
.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.06);
}
.btn-light {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  color: #0b2bff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-light:hover {
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.18);
}

/* Section common */
.section {
  padding: 76px 0;
}
.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 26px;
}
.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  max-width: none;
}
.section-head.center {
  text-align: center;
}
.section-kicker {
  font-size: 14px;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.55);
}
.section-title {
  margin: 10px 0 10px;
  font-size: 28px;
  line-height: 1.2;
}
.section-desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.card-link {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 800;
  color: #1f54ff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Hero */
.hero {
  position: relative;
  padding: 34px 0 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  height: 380px;
  background:
    radial-gradient(1000px 300px at 50% 20%, rgba(31, 84, 255, 0.25), transparent 55%),
    linear-gradient(180deg, #eff4ff 0%, #ffffff 60%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.hero-inner {
  position: relative;
  padding-top: 18px;
  padding-bottom: 22px;
}
.breadcrumbs {
  font-size: 12px;
  color: rgba(15, 23, 42, 0.62);
  margin-bottom: 14px;
}
.hero-stage {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}
.hero-label {
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: rgba(15, 23, 42, 0.65);
  margin-top: 18px;
}
.hero-title {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
}
.hero-subtitle {
  margin: 0;
  max-width: 720px;
  color: rgba(15, 23, 42, 0.62);
  font-size: 14px;
}
.hero-cta {
  margin-top: 10px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.hero-cta .hero-link {
  font-size: 13px;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-visual {
  margin: 26px auto 0;
  max-width: 900px;
  height: 190px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.02)),
    radial-gradient(700px 200px at 50% 0%, rgba(31, 84, 255, 0.22), transparent 55%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.arm-row {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  padding: 16px 18px;
}
.arm {
  width: 120px;
  height: 160px;
  border-radius: 18px;
  background:
    radial-gradient(50px 50px at 30% 30%, rgba(255, 255, 255, 0.9), transparent 60%),
    linear-gradient(180deg, #f8fbff, #dbe7ff);
  border: 1px solid rgba(31, 84, 255, 0.16);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.12);
  transform: skewX(-10deg);
}
.arm:nth-child(2) { height: 172px; opacity: 0.98; }
.arm:nth-child(3) { height: 184px; opacity: 0.96; }
.arm:nth-child(4) { height: 170px; opacity: 0.95; }
.arm:nth-child(5) { height: 156px; opacity: 0.94; }

/* Products */
.section-products {
  padding-top: 56px;
}
.section-products .section-head {
  text-align: center;
}
.product-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.08);
  display: grid;
  gap: 8px;
  transition: transform 140ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 84, 255, 0.22);
  box-shadow: 0 20px 55px rgba(2, 6, 23, 0.12);
}
.product-media {
  position: relative;
  height: 108px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(160px 80px at 30% 20%, rgba(31, 84, 255, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.03), rgba(15, 23, 42, 0.01));
  border: 1px solid rgba(15, 23, 42, 0.06);
  overflow: hidden;
}
.product-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-plus {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 300;
  color: #fff;
  background: linear-gradient(180deg, #2a63ff, #1f54ff);
  border-radius: 14px;
  z-index: 0;
}
.product-name {
  font-weight: 800;
  font-size: 14px;
}
.product-meta {
  color: rgba(15, 23, 42, 0.6);
  font-size: 12px;
}
.product-card .card-link {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 800;
  color: #1f54ff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.product-series-footer {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.6);
}
.product-series-footer span:not(:last-child)::after {
  content: " ";
}

/* Technology */
.section-tech {
  background: linear-gradient(180deg, #ffffff, #f7f9ff);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.tech-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}
.tech-copy .section-kicker,
.tech-copy .section-desc {
  text-align: left;
}
.tech-copy .section-desc {
  margin-bottom: 14px;
}
.tech-copy .tech-link {
  font-size: 13px;
  font-weight: 700;
  color: #1f54ff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tech-visual {
  position: relative;
  height: 330px;
  border-radius: 22px;
  background:
    radial-gradient(120px 120px at 35% 30%, rgba(31, 84, 255, 0.22), transparent 60%),
    radial-gradient(220px 220px at 60% 65%, rgba(2, 132, 199, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.03), #fff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.tech-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tech-arm {
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 220px;
  height: 220px;
  border-radius: 38px;
  background:
    radial-gradient(70px 70px at 30% 25%, rgba(255, 255, 255, 0.92), transparent 65%),
    linear-gradient(180deg, #f8fbff, #e5edff);
  border: 1px solid rgba(31, 84, 255, 0.18);
  box-shadow: 0 26px 60px rgba(2, 6, 23, 0.15);
  transform: rotate(-8deg);
}

/* Applications */
.apps {
  margin-top: 18px;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 18px 60px rgba(2, 6, 23, 0.09);
  overflow: hidden;
}
.app-area-tabs {
  display: flex;
  gap: 8px;
  padding: 14px 14px 10px;
  overflow-x: auto;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.app-area-tabs .tab {
  white-space: nowrap;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(15, 23, 42, 0.03);
  color: rgba(15, 23, 42, 0.72);
  border-radius: 999px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.app-area-tabs .tab.is-active {
  background: linear-gradient(180deg, #2a63ff, #1f54ff);
  border-color: rgba(31, 84, 255, 0.35);
  color: #fff;
}
.apps-carousel-wrap {
  padding: 16px;
}
.apps-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.apps-carousel-nav .icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.apps-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 8px;
}
.apps-carousel::-webkit-scrollbar {
  height: 6px;
}
.app-card {
  flex: 0 0 220px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: grid;
  grid-template-rows: 140px 1fr;
}
.app-card.app-card--featured {
  border-color: rgba(31, 84, 255, 0.3);
  background: linear-gradient(180deg, rgba(31, 84, 255, 0.08), #fff);
}
.app-thumb {
  height: 140px;
  border: none;
  background:
    radial-gradient(120px 70px at 30% 20%, rgba(255, 255, 255, 0.55), transparent 60%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.02));
  overflow: hidden;
}
.app-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.app-thumb--blue {
  background: linear-gradient(180deg, #2a63ff, #1f54ff);
  position: relative;
}
.app-thumb--blue .app-thumb-plus {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.3);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
}
.app-card .app-name {
  padding: 12px 12px 8px;
  font-weight: 900;
  font-size: 13px;
}
.app-card .app-meta {
  padding: 0 12px 12px;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.6);
}

/* News */
.section-news .section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  max-width: none;
}
.news-sort {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 10px;
  background: linear-gradient(180deg, #2a63ff, #1f54ff);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}
.news-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.news-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 18px 55px rgba(2, 6, 23, 0.1);
  display: grid;
  grid-template-rows: 160px 1fr;
}
.news-media {
  height: 160px;
  background:
    radial-gradient(220px 120px at 30% 30%, rgba(255, 255, 255, 0.65), transparent 60%),
    linear-gradient(180deg, #0b2bff, #0620a8);
  overflow: hidden;
}
.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-body {
  padding: 14px 14px 16px;
}
.news-tag {
  font-size: 12px;
  font-weight: 700;
  color: #1f54ff;
  margin-bottom: 6px;
}
.news-title {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
}
.news-excerpt {
  margin: 0 0 12px;
  color: rgba(15, 23, 42, 0.65);
  font-size: 12.5px;
}
.news-card .card-link {
  font-size: 12px;
  font-weight: 700;
  color: #1f54ff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.news-meta {
  font-size: 11px;
  color: rgba(15, 23, 42, 0.5);
  display: flex;
  align-items: center;
  gap: 12px;
}
.news-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Stats/Honor */
.section-stats {
  padding: 64px 0;
  background: linear-gradient(180deg, #ffffff, #f6f8ff);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.section-stats .section-head {
  text-align: center;
}
.stats-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (min-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.stat {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  padding: 30px 12px;
  text-align: center;
  box-shadow: 0 18px 48px rgba(2, 6, 23, 0.08);
}
.stat-num {
  color: #1f54ff;
  font-weight: 950;
  font-size: 20px;
  letter-spacing: 0.01em;
}
.stat-label {
  margin-top: 4px;
  font-size: 11.5px;
  color: rgba(15, 23, 42, 0.6);
}

/* Partners */
.section-partners .section-head {
  text-align: center;
}
.logo-row {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  align-items: center;
}
.logo-chip {
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.55);
  letter-spacing: 0.08em;
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.06);
}
.logo-chip img {
  max-height: 28px;
  max-width: 100px;
  object-fit: contain;
}

/* CTA */
.section-cta {
  padding: 0;
  background: #0b2bff;
}
.cta-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  min-height: 300px;
}
.cta-left {
  padding: 52px 26px;
  color: #fff;
  display: grid;
  gap: 10px;
  align-content: center;
}
.cta-kicker {
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 900;
  opacity: 0.9;
}
.cta-title {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
}
.cta-desc {
  margin: 0 0 10px;
  opacity: 0.9;
  font-size: 13px;
}
.cta-right {
  background: rgba(255, 255, 255, 0.06);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  min-height: 280px;
}
.cta-image {
  width: 90%;
  height: 220px;
  border-radius: 18px;
  background:
    radial-gradient(260px 130px at 30% 30%, rgba(255, 255, 255, 0.5), transparent 60%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.25), rgba(2, 6, 23, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  overflow: hidden;
}
.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-arm {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 260px;
  height: 150px;
  border-radius: 28px;
  background:
    radial-gradient(90px 70px at 30% 30%, rgba(255, 255, 255, 0.7), transparent 60%),
    linear-gradient(180deg, #f8fbff, #dbe7ff);
  transform: rotate(-8deg);
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.35);
}

/* Footer */
.site-footer {
  background: #0b1220;
  color: rgba(255, 255, 255, 0.86);
}
.footer-inner {
  padding: 48px 0 26px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
}
.brand--footer .brand-mark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  color: #b9c6ff;
}
.footer-desc {
  margin: 12px 0 16px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  max-width: 420px;
}
.footer-form {
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: 440px;
}
.input {
  flex: 1;
  height: 38px;
  border-radius: 12px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  outline: none;
  font-size: 13px;
}
.input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.footer-social a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-social a:hover {
  color: #fff;
}
.footer-tel {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.footer-col-title {
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
}
.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  padding: 7px 0;
}
.footer-link:hover {
  color: rgba(255, 255, 255, 0.9);
}
.footer-bottom {
  padding: 16px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}
.footer-bottom-links {
  display: inline-flex;
  gap: 16px;
}
.footer-lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

/* Page layouts */
.page-header {
  padding: 120px 0 60px;
  background: linear-gradient(180deg, #eff4ff 0%, #ffffff 60%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.page-header h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1.2;
}
.page-header p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.content-section {
  padding: 60px 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Responsive */
@media (max-width: 980px) {
  .nav {
    display: none;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .logo-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .tech-inner {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    grid-template-columns: 1fr;
  }
  .cta-right {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 18px 0 34px;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .section {
    padding: 58px 0;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-visual {
    height: 170px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-header h1 {
    font-size: 32px;
  }
}
