/*
Theme Name: 3D-Pro
Theme URI: https://example.com
Author: 3D-Pro
Description: Sales one-pager theme for 3D-Pro 2D-to-3D & AR plugin + WooCommerce
Version: 1.0
Text Domain: 3d-pro
*/

:root {
  --bg: #050816;
  --bg-soft: #080f24;
  --bg-card: rgba(10, 18, 40, 0.96);
  --primary: #4f46e5;
  --primary-soft: rgba(79, 70, 229, 0.2);
  --primary-strong: #6366f1;
  --accent: #22c55e;
  --accent-soft: rgba(34, 197, 94, 0.16);
  --danger: #f97373;
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.28);
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.7);
  --shadow-glow: 0 0 40px rgba(79, 70, 229, 0.45);
  --gradient-hero: radial-gradient(circle at top left, #22c55e33, transparent 55%),
    radial-gradient(circle at top right, #4f46e54d, transparent 55%),
    radial-gradient(circle at bottom, #eab30826, transparent 55%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}

.page {
  min-height: 100vh;
  background: var(--gradient-hero), radial-gradient(circle at 20% 120%, #0f172a, #020617 70%);
  color: var(--text-main);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 20px 40px;
}

/* Language control */

body.lang-en .lang-he {
  display: none;
}

body.lang-he .lang-en {
  display: none;
}

body.lang-he .hero,
body.lang-he .section-header,
body.lang-he .workflow-grid,
body.lang-he .pricing-layout,
body.lang-he .two-col,
body.lang-he .products-demo,
body.lang-he .product-page {
  direction: rtl;
}

/* Header / Nav */

header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(3, 7, 18, 0.98), rgba(3, 7, 18, 0.7));
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: conic-gradient(
    from 210deg,
    #22c55e,
    #22c55e,
    #4f46e5,
    #22c55e,
    #eab308,
    #22c55e
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.7);
  position: relative;
  overflow: hidden;
}

.logo-mark-inner {
  width: 22px;
  height: 22px;
  border-radius: 10px;
  border: 2px solid rgba(15, 23, 42, 0.8);
  background: radial-gradient(circle at 30% 10%, #f9fafb, #9ca3af 65%);
  box-shadow: inset 0 0 12px rgba(15, 23, 42, 0.7);
}

.logo-text-main {
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 20px;
  text-transform: uppercase;
}

.logo-text-sub {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pill {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-radius: 999px;
  padding: 6px 14px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 23, 42, 0.75);
}

.pill span {
  display: inline-flex;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.9);
}

/* Language toggle */

.lang-toggle {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  overflow: hidden;
  background: rgba(15, 23, 42, 0.9);
}

.lang-toggle button {
  border: none;
  background: transparent;
  padding: 6px 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  cursor: pointer;
}

.lang-toggle button.active {
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: #022c22;
  font-weight: 600;
}

.nav-cta {
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: #022c22;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.nav-cta i {
  font-size: 11px;
}

.nav-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.55);
}

/* Layout */

main {
  padding-top: 20px;
}

/* HERO */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 40px;
}

.hero-heading {
  font-size: clamp(38px, 6vw, 46px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.hero-gradient {
  background: linear-gradient(to right, #e5e7eb, #22c55e, #6366f1);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge i {
  font-size: 10px;
  color: #a5b4fc;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.btn-primary {
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #e5e7eb;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-glow);
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
  text-decoration: none;
}

.btn-primary i {
  font-size: 13px;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(79, 70, 229, 0.7);
  filter: brightness(1.05);
}

.btn-ghost {
  border-radius: 999px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
  text-decoration: none;
}

.btn-ghost i {
  font-size: 13px;
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 1);
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.7);
  transform: translateY(-1px);
}

.hero-meta {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 6px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

.hero-meta-label {
  font-weight: 600;
  color: #e5e7eb;
}

.hero-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.7);
}

/* HERO visual */

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  background: radial-gradient(circle at top, rgba(148, 163, 253, 0.1), transparent 65%),
    var(--bg-card);
  border-radius: 32px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  min-height: 260px;
  transform: perspective(1200px) rotateX(12deg) rotateY(-14deg);
  transform-origin: center;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 10% 0%, rgba(34, 197, 94, 0.32), transparent 50%),
    radial-gradient(circle at 100% 40%, rgba(129, 140, 248, 0.32), transparent 52%);
  opacity: 0.55;
  pointer-events: none;
}

.hero-card-inner {
  position: relative;
  z-index: 1;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.hero-card-tabs {
  display: inline-flex;
  border-radius: 999px;
  padding: 3px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.4);
  gap: 3px;
}

.hero-card-tab {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
}

.hero-card-tab.active {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.8), rgba(129, 140, 248, 0.9));
  color: #e5e7eb;
}

.hero-card-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  font-size: 11px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.3);
  color: #a7f3d0;
  border: 1px solid rgba(45, 212, 191, 0.5);
}

.hero-card-status span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.95);
}

.hero-card-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.model-preview {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: radial-gradient(circle at 50% 0%, rgba(252, 211, 77, 0.12), transparent 60%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.8));
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.model-stage {
  flex: 1;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 10%, #e5e7eb, #4b5563 45%, #020617 80%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.model-shape {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(145deg, #f9fafb, #d1d5db);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.9),
    inset 0 0 12px rgba(209, 213, 219, 0.8);
  position: relative;
}

.model-shape::before,
.model-shape::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: inherit;
  border: 2px solid rgba(148, 163, 184, 0.6);
  transform: rotate(10deg);
}

.model-shape::after {
  inset: 4px;
  border-style: dashed;
  opacity: 0.5;
}

.model-orbit {
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 999px;
  border: 1px dashed rgba(203, 213, 225, 0.8);
  transform: rotate(-18deg);
  opacity: 0.45;
}

.model-axis {
  position: absolute;
  inset: 22%;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  border-style: dashed;
  transform: rotate(60deg);
  opacity: 0.4;
}

.model-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 8px;
}

.model-controls {
  display: flex;
  gap: 4px;
}

.model-btn {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.9);
  cursor: pointer;
  font-size: 11px;
}

.model-btn.secondary {
  border-style: dashed;
  opacity: 0.75;
}

.viewer-tags {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.viewer-tag {
  padding: 4px 6px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(15, 23, 42, 0.96);
}

.viewer-tag i {
  font-size: 9px;
}

.hero-card-sidebar {
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-title {
  font-size: 12px;
  font-weight: 600;
  color: #e5e7eb;
}

.sidebar-subtext {
  font-size: 11px;
  color: var(--text-muted);
}

.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
}

.sidebar-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.sidebar-item-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
}

.sidebar-item-label i {
  font-size: 10px;
  color: #a5b4fc;
}

.sidebar-pill {
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.18);
  color: #bbf7d0;
  font-size: 10px;
  border: 1px solid rgba(34, 197, 94, 0.6);
}

.sidebar-metric {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 11px;
}

.sidebar-metric strong {
  font-size: 13px;
  color: #e5e7eb;
}

.sidebar-metric span {
  color: var(--text-muted);
}

.sidebar-progress {
  margin-top: 4px;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

.sidebar-progress-fill {
  height: 100%;
  width: 70%;
  border-radius: inherit;
  background: linear-gradient(90deg, #22c55e, #a3e635);
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-muted);
}

.hero-card-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(30, 64, 175, 0.5);
  border: 1px solid rgba(129, 140, 248, 0.7);
  gap: 6px;
  color: #e5e7eb;
}

.hero-card-chip i {
  font-size: 10px;
}

.hero-card-leads {
  display: inline-flex;
  gap: 6px;
  font-size: 11px;
  align-items: center;
}

.hero-card-leads strong {
  color: #e5e7eb;
}

/* Section headers */

section {
  margin-bottom: 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 14px;
}

.section-title-group {
  max-width: 500px;
}

.section-kicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.section-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.section-tagline {
  font-size: 11px;
  color: var(--text-muted);
  text-align: right;
}

/* Features grid */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: rgba(15, 23, 42, 0.92);
  border-radius: var(--radius-lg);
  padding: 14px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.8);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.23), transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.card:hover::before {
  opacity: 1;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.card-icon {
  width: 30px;
  height: 30px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #a5b4fc;
  font-size: 14px;
}

.card-title {
  font-size: 14px;
  font-weight: 600;
}

.card-body {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 6px;
}

.card-badge {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card-badge i {
  font-size: 9px;
}

.card-list {
  list-style: none;
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.card-list li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 4px;
}

.card-list li i {
  color: #a5b4fc;
  font-size: 10px;
  margin-top: 2px;
}

/* Viewer & analytics */

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 18px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 6px;
  color: var(--text-muted);
}

.stat-row strong {
  color: #e5e7eb;
}

.stat-pill {
  border-radius: 999px;
  font-size: 10px;
  padding: 3px 8px;
  border: 1px dashed rgba(148, 163, 184, 0.7);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.stat-pill i {
  font-size: 9px;
  color: #a5b4fc;
}

/* Pricing */

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pricing-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top, rgba(59, 130, 246, 0.23), transparent 55%),
    rgba(15, 23, 42, 0.96);
  padding: 16px 14px;
  border: 1px solid rgba(129, 140, 248, 0.6);
  box-shadow: var(--shadow-soft);
}

.pricing-card.secondary {
  background: radial-gradient(circle at top, rgba(22, 163, 74, 0.2), transparent 55%),
    rgba(15, 23, 42, 0.96);
  border-color: rgba(34, 197, 94, 0.7);
}

.pricing-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-bottom: 4px;
}

.pricing-label.secondary {
  color: #bbf7d0;
}

.pricing-price {
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.pricing-price span {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-tag {
  font-size: 11px;
  color: #a5b4fc;
  margin-bottom: 8px;
}

.pricing-tag strong {
  color: #e5e7eb;
}

.pricing-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-note strong {
  color: #e5e7eb;
}

.pricing-button {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 11px;
  color: #e5e7eb;
  cursor: pointer;
  text-decoration: none;
}

.pricing-button i {
  font-size: 10px;
}

/* Credits */

.credits-card {
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid var(--border-subtle);
  padding: 14px;
  box-shadow: var(--shadow-soft);
  font-size: 12px;
  color: var(--text-muted);
}

.credits-card h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #e5e7eb;
}

.credits-grid {
  margin-top: 8px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  overflow: hidden;
  font-size: 11px;
}

.credits-row {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1.1fr;
  padding: 6px 8px;
  background: rgba(15, 23, 42, 0.96);
}

.credits-row:nth-child(2n) {
  background: rgba(15, 23, 42, 0.9);
}

.credits-row.header {
  background: rgba(15, 23, 42, 0.96);
  font-weight: 600;
  font-size: 11px;
  color: #e5e7eb;
}

.credits-highlight {
  margin-top: 6px;
  font-size: 11px;
  color: #a5b4fc;
}

.credits-highlight strong {
  color: #e5e7eb;
}

.model-cost {
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(30, 64, 175, 0.5);
  border: 1px solid rgba(129, 140, 248, 0.7);
  font-size: 11px;
  color: #e5e7eb;
}

/* Workflow & testimonial */

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.step {
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px dashed rgba(148, 163, 184, 0.6);
  padding: 10px;
  font-size: 11px;
  color: var(--text-muted);
  position: relative;
}

.step-index {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.2);
  color: #a5b4fc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 6px;
}

.step-title {
  font-size: 12px;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 4px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.tag {
  font-size: 10px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.tag i {
  font-size: 9px;
  color: #a5b4fc;
}

.testimonial {
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top, rgba(22, 163, 74, 0.22), transparent 55%),
    rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(34, 197, 94, 0.7);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  font-size: 12px;
  color: var(--text-muted);
}

.testimonial-quote {
  font-size: 13px;
  color: #e5e7eb;
  margin-bottom: 8px;
}

.testimonial-quote i {
  color: #a5b4fc;
  margin-right: 4px;
}

.testimonial-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  margin-top: 6px;
}

.testimonial-name {
  font-weight: 600;
  color: #bbf7d0;
}

.testimonial-role {
  color: var(--text-muted);
}

.testimonial-kpi {
  font-size: 11px;
  color: #a5b4fc;
  text-align: right;
}

.testimonial-kpi strong {
  color: #e5e7eb;
}

/* CTA */

.cta {
  border-radius: 26px;
  background: radial-gradient(circle at top, rgba(79, 70, 229, 0.4), transparent 60%),
    rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(129, 140, 248, 0.7);
  padding: 18px 16px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cta-text h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}

.cta-text p {
  font-size: 13px;
  color: var(--text-muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

.cta-note strong {
  color: #e5e7eb;
}

/* Footer */

footer {
  margin-top: 28px;
  padding-top: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

footer a {
  color: #a5b4fc;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Products demo */

.products-demo {
  margin-top: 36px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  background: rgba(15, 23, 42, 0.95);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.8);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.product-card img {
  border-radius: 12px;
  width: 100%;
  height: 150px;
  object-fit: cover;
  background: #020617;
}

.product-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(22, 163, 74, 0.8);
  color: #ecfdf5;
}

.product-tag.variation {
  background: rgba(124, 58, 237, 0.8);
}

.product-title {
  font-size: 13px;
  font-weight: 600;
}

.product-demo-btn {
  margin-top: auto;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #e5e7eb;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
}

.product-demo-btn i {
  font-size: 11px;
}

/* Product page */

.product-page {
  margin-top: 30px;
  margin-bottom: 40px;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 26px;
  align-items: flex-start;
}

.product-gallery,
.product-summary {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 24px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.product-summary .product_title {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.product-summary .price {
  font-size: 22px;
  font-weight: 700;
  color: #a5b4fc;
  margin-bottom: 12px;
}

.product-summary .woocommerce-product-details__short-description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.product-summary form.cart,
.product-summary .single_add_to_cart_button {
  font-size: 15px;
}

.product-extra {
  margin-top: 24px;
  background: rgba(15, 23, 42, 0.96);
  border-radius: 22px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.product-extra h2,
.product-extra h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.product-3d-note {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(79, 70, 229, 0.22);
  border: 1px solid rgba(129, 140, 248, 0.7);
  font-size: 12px;
  color: #e5e7eb;
}

/* Responsive */

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-visual {
    order: -1;
  }
  .hero-card {
    transform: none;
  }
  .two-col,
  .pricing-layout,
  .workflow-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .product-hero {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pricing-plans {
    grid-template-columns: minmax(0, 1fr);
  }
  .steps {
    grid-template-columns: minmax(0, 1fr);
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .features-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .hero-badges {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .cta {
    align-items: flex-start;
  }
  .hero-card-main {
    grid-template-columns: minmax(0, 1fr);
  }
  .products-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
