.wrap,
.container {
  width: min(1140px, calc(100% - 38px));
  margin: 0 auto;
}

.hide{
    display: none;
}


.btn {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary-glow);
}

.btn-solid {
  background: var(--primary);
  color: #fff;
}

.btn-solid:hover {
  background: var(--primary-dark);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

section{
  padding: 60px 0px!important;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 16px 0;
  color: var(--text);
}

h1 {
  font-size: clamp(30px, 5vw, 60px);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  margin-bottom: 16px;
}

h3 {
  font-size: clamp(18px, 2.5vw, 32px);
  margin-bottom: 14px;
}

h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

p strong {
  font-weight: 700;
  color: var(--text);
}

p em {
  font-style: italic;
  color: var(--text2);
}

strong {
  font-weight: 700;
  color: var(--text);
}

em {
  font-style: italic;
  color: var(--text2);
}

code {
  font-family: "Courier New", monospace;
  background: var(--surface2);
  color: var(--primary-light);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}

pre {
  background: var(--surface2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px;
  overflow-x: auto;
  margin: 0 0 16px 0;
}

pre code {
  background: none;
  color: var(--primary-light);
  padding: 0;
  border-radius: 0;
}

a {
  color: var(--primary);
  transition: color var(--transition);
      outline: none;
}

/* a:hover {
  color: var(--primary-light);
} */

ul,
ol {
  margin: 0 0 16px 0;
  padding-left: 24px;
  color: var(--text);
}

li {
  /* margin-bottom: 8px; */
  line-height: 1.65;
}

mark {
  background: var(--primary-glow);
  color: var(--text);
  padding: 2px 4px;
  border-radius: 2px;
}

small {
  font-size: 13px;
  color: var(--text2);
}

.text-primary {
  color: var(--primary);
}

.text-muted {
  color: var(--text2);
}

.text-subtle {
  color: var(--text3);
}

.text-bold {
  font-weight: 700;
}

.text-italic {
  font-style: italic;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.product-hero,
.hero {
  position: relative;
  overflow: hidden;
  /* padding: 100px 0 80px; */
  /* border-bottom: 1px solid var(--line); */
}

.product-hero-bg,
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 70% 50%,
      rgba(8, 180, 217, 0.09),
      transparent
    ),
    radial-gradient(
      ellipse 40% 60% at 10% 80%,
      rgba(8, 180, 217, 0.05),
      transparent
    );
  pointer-events: none;
}

.product-hero-grid,
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.product-hero-eyebrow,
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-glow);
  border: 1px solid var(--line2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.product-hero-eyebrow::before,
.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  display: block;
}

.product-hero-title,
.product-hero h1,
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 8px;
}

.product-hero-title span,
.product-hero h1 span,
.hero h1 span {
  color: var(--primary);
}

.product-hero-sub,
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--text2);
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.7;
}

.product-hero-actions,
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-hero-actions .btn,
.hero-btns .btn {
  font-size: 15px;
  padding: 12px 26px;
}

.product-hero-panel,
.hero-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-panel);
}

.product-hero-panel::before,
.hero-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.panel-label,
.product-panel-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 18px;
  font-weight: 500;
}

.panel-stats,
.product-panel-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.stat-box,
.product-stat-box {
  background: var(--surface2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px;
}

.stat-box .num,
.product-stat-box .num {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-box .lbl,
.product-stat-box .lbl {
  font-size: 12px;
  color: var(--text3);
}

.panel-divider,
.product-panel-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0 0 20px;
}

.panel-items,
.product-panel-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.panel-item,
.product-panel-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text2);
}

.panel-item::before,
.product-panel-item::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.card {
  background: var(--bg2);
  border: 1px solid var(--line2);
  border-radius: var(--r-lg);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-glow);
  border: 1px solid var(--line2);
  color: var(--primary);
  border-radius: 100px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.section-tag::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: var(--primary);
  display: block;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--text2);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 52px;
}

@media (max-width: 900px) {
  section{
  padding: 30px 0px!important;
}
.cta {
  padding: 20px!important;
}
  .product-hero,
  .hero {
    padding: 84px 0 64px;
  }

  .product-hero-grid,
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .product-hero-actions,
  .hero-btns {
    width: 100%;
  }

  .product-hero-actions .btn,
  .hero-btns .btn {
    flex: 1 1 180px;
  }
}

@media (max-width: 560px) {
  

  .product-hero-actions,
  .hero-btns {
    flex-direction: column;
  }

  .product-hero-actions .btn,
  .hero-btns .btn {
    width: 100%;
  }
}
