/* ===================================================
   WPS Office 2026 — Product Page Styles
   =================================================== */

/* ===== PRODUCT HERO ===== */
.prod-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}

.prod-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0A0A14 0%, #1A0A2E 40%, #0A1628 100%);
}

.prod-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
}

.prod-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.3) 0%, transparent 70%);
  top: -200px; left: -150px;
}

.prod-orb-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(139,92,246,0.3) 0%, transparent 70%);
  top: 50px; right: -100px;
}

.prod-orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(59,130,246,0.25) 0%, transparent 70%);
  bottom: -100px; left: 40%;
}

.prod-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.prod-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-4xl) 0 var(--space-3xl);
}

.prod-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.4rem 1.2rem;
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--space-xl);
}

.prod-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-lg);
}

.prod-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.8;
}

.prod-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.prod-nav-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.prod-pill {
  padding: 0.5rem 1.2rem;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.prod-pill:hover,
.prod-pill.active {
  background: rgba(255,107,53,0.12);
  border-color: rgba(255,107,53,0.35);
  color: var(--primary);
}

/* ===== OVERVIEW STATS ===== */
.overview-stats {
  padding: var(--space-2xl) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.overview-stat {
  text-align: center;
}

.os-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.os-num span {
  font-size: 1.1rem;
  color: var(--primary);
}

.os-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.os-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* ===== PRODUCT SECTIONS ===== */
.product-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-base);
}

.alt-section {
  background: var(--bg-surface);
}

.prod-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.prod-section-inner.reverse {
  direction: rtl;
}

.prod-section-inner.reverse > * {
  direction: ltr;
}

.prod-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.writer-label {
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.25);
  color: var(--accent-blue);
}

.spreadsheet-label {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  color: var(--accent-green);
}

.presentation-label {
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.25);
  color: var(--accent-purple);
}

.pdf-label {
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.25);
  color: var(--accent-orange);
}

.prod-section-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
}

.prod-section-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.prod-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.pf-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.pf-icon {
  width: 36px; height: 36px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.pf-icon.green-icon   { background: rgba(34,197,94,0.1);  border-color: rgba(34,197,94,0.2);  color: var(--accent-green); }
.pf-icon.purple-icon  { background: rgba(139,92,246,0.1); border-color: rgba(139,92,246,0.2); color: var(--accent-purple); }
.pf-icon.orange-icon  { background: rgba(249,115,22,0.1); border-color: rgba(249,115,22,0.2); color: var(--accent-orange); }

.pf-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.pf-item span {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== PRODUCT VISUALS ===== */
.prod-section-visual {
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
}

/* Writer Visual */
.writer-window {
  width: 100%;
  background: rgba(15,15,30,0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.ww-toolbar {
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}

.ww-tools {
  display: flex;
  gap: 4px;
}

.ww-tool {
  padding: 3px 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.ww-tool:hover {
  background: rgba(255,255,255,0.06);
  color: var(--text-secondary);
}

.ww-tool.ai-active {
  background: rgba(255,107,53,0.15);
  color: var(--primary);
  font-weight: 700;
}

.ww-body {
  display: flex;
  flex-direction: column;
}

.ww-ruler {
  height: 20px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}

.ww-page {
  padding: var(--space-lg);
  background: rgba(255,255,255,0.02);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wp-title {
  height: 18px;
  width: 60%;
  background: rgba(255,255,255,0.18);
  border-radius: 4px;
  margin-bottom: 6px;
}

.wp-subtitle {
  height: 11px;
  width: 40%;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  margin-bottom: 12px;
}

.wp-para {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.wp-line {
  height: 7px;
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
}

.wp-heading {
  height: 13px;
  width: 45%;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  margin: 6px 0;
}

.wp-ai-panel {
  background: rgba(255,107,53,0.06);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-top: 8px;
}

.wp-ai-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.wp-ai-suggestion {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}

.wp-ai-actions {
  display: flex;
  gap: 6px;
}

.wp-ai-btn {
  padding: 3px 10px;
  background: rgba(255,107,53,0.12);
  border: 1px solid rgba(255,107,53,0.25);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.wp-ai-btn:hover {
  background: rgba(255,107,53,0.2);
}

/* Spreadsheet Visual */
.sheet-window {
  width: 100%;
  background: rgba(15,15,30,0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.sw-header {
  display: flex;
  gap: 2px;
  padding: 8px 12px 0;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}

.sw-tab {
  padding: 4px 14px;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-radius: 4px 4px 0 0;
  cursor: pointer;
}

.sw-tab.active {
  background: rgba(34,197,94,0.1);
  color: var(--accent-green);
}

.sw-formula-bar {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 6px 12px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
}

.sw-cell-ref {
  padding: 2px 8px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 4px;
  color: var(--accent-green);
  font-weight: 700;
  flex-shrink: 0;
}

.sw-formula {
  color: var(--text-secondary);
  font-family: 'Inter', monospace;
}

.sw-grid {
  font-size: 0.75rem;
}

.sw-row {
  display: grid;
  grid-template-columns: 28px repeat(5, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.sw-row span {
  padding: 5px 8px;
  color: var(--text-muted);
  border-right: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-row span {
  background: rgba(255,255,255,0.03);
  text-align: center;
  font-weight: 600;
}

.sw-row span:first-child {
  background: rgba(255,255,255,0.02);
  text-align: center;
}

.sh-head {
  font-weight: 700;
  color: var(--text-secondary) !important;
}

.selected-row span {
  background: rgba(34,197,94,0.05);
}

.active-cell {
  background: rgba(34,197,94,0.12) !important;
  color: var(--accent-green) !important;
  font-weight: 700;
}

.cell-pos {
  color: var(--accent-green) !important;
  font-weight: 700;
}

.sw-chart-mini {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 12px;
  height: 60px;
  background: rgba(255,255,255,0.01);
}

.sc-bar {
  flex: 1;
  background: linear-gradient(to top, rgba(34,197,94,0.6), rgba(34,197,94,0.2));
  border-radius: 3px 3px 0 0;
}

/* Presentation Visual */
.pres-window {
  width: 100%;
  background: rgba(15,15,30,0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
}

.pres-slides-panel {
  width: 60px;
  background: rgba(255,255,255,0.02);
  border-right: 1px solid var(--border);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pres-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 3px;
  cursor: pointer;
}

.active-thumb {
  border-color: rgba(139,92,246,0.5);
  background: rgba(139,92,246,0.1);
}

.pres-main-slide {
  flex: 1;
  position: relative;
  padding: var(--space-lg);
  min-height: 220px;
}

.pres-slide-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a3e 0%, #2d1b4e 100%);
}

.pres-slide-content {
  position: relative;
  z-index: 1;
}

.psl-title {
  height: 16px;
  width: 55%;
  background: rgba(255,255,255,0.3);
  border-radius: 4px;
  margin-bottom: 8px;
}

.psl-subtitle {
  height: 9px;
  width: 35%;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  margin-bottom: 20px;
}

.psl-blocks {
  display: flex;
  gap: 8px;
}

.psl-block {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.psl-block-icon {
  width: 20px; height: 20px;
  background: rgba(139,92,246,0.3);
  border-radius: 4px;
}

.psl-block-line {
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
}

.psl-block-line.short {
  width: 60%;
}

.pres-ai-chip {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: var(--radius-full);
  color: var(--accent-purple);
  font-size: 0.68rem;
  font-weight: 600;
  animation: aiPulse 2s ease-in-out infinite;
}

@keyframes aiPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* PDF Visual */
.pdf-window {
  width: 100%;
  background: rgba(15,15,30,0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.pdf-toolbar {
  display: flex;
  gap: 2px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}

.pdf-tool {
  padding: 4px 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.pdf-tool.active-tool {
  background: rgba(249,115,22,0.12);
  color: var(--accent-orange);
}

.pdf-tool.ai-tool {
  background: rgba(255,107,53,0.1);
  color: var(--primary);
  font-weight: 700;
}

.pdf-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.pdf-page-view {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-right: 1px solid var(--border);
}

.pv-line {
  height: 7px;
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
}

.pv-highlight {
  padding: 4px 0;
}

.pv-annotation {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius-full);
  color: var(--accent-orange);
  font-size: 0.68rem;
  width: fit-content;
}

.pdf-ai-panel {
  padding: var(--space-md);
  background: rgba(255,107,53,0.03);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.pdf-ai-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.pdf-ai-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.pdf-ai-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  color: var(--text-muted);
  cursor: pointer;
}

/* ===== AI SHOWCASE ===== */
.ai-showcase-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-base);
}

.ai-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-lg);
}

.ai-showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.ai-showcase-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,53,0.5), transparent);
  opacity: 0;
  transition: var(--transition);
}

.ai-showcase-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ai-showcase-card:hover::before {
  opacity: 1;
}

.large-card {
  grid-column: span 2;
}

.asc-badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.25);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.ai-showcase-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.ai-showcase-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.asc-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.purple-bg { background: rgba(139,92,246,0.1); border: 1px solid rgba(139,92,246,0.2); color: var(--accent-purple); }
.blue-bg   { background: rgba(59,130,246,0.1);  border: 1px solid rgba(59,130,246,0.2);  color: var(--accent-blue); }
.green-bg  { background: rgba(34,197,94,0.1);   border: 1px solid rgba(34,197,94,0.2);   color: var(--accent-green); }
.orange-bg { background: rgba(249,115,22,0.1);  border: 1px solid rgba(249,115,22,0.2);  color: var(--accent-orange); }

.asc-demo {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}

.asc-input {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  font-style: italic;
}

.asc-cursor {
  color: var(--primary);
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.asc-output {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.asc-line {
  height: 7px;
  background: rgba(255,107,53,0.2);
  border-radius: 4px;
  animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.asc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.asc-tags span {
  padding: 0.25rem 0.75rem;
  background: rgba(255,107,53,0.08);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.asc-tags span:hover {
  background: rgba(255,107,53,0.15);
}

/* ===== COLLAB DETAIL ===== */
.collab-detail-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-surface);
}

.collab-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.cf-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: var(--transition);
}

.cf-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cf-icon {
  width: 48px; height: 48px;
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: var(--space-lg);
}

.cf-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.cf-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== COMPARISON TABLE ===== */
.comparison-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-base);
}

.comp-table-wrap {
  overflow-x: auto;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.comp-table th {
  padding: var(--space-lg) var(--space-xl);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  background: var(--bg-card);
  border-bottom: 2px solid var(--border);
}

.comp-table th:first-child {
  text-align: left;
  color: var(--text-muted);
}

.featured-col {
  background: rgba(255,107,53,0.06) !important;
  border-left: 1px solid rgba(255,107,53,0.2) !important;
  border-right: 1px solid rgba(255,107,53,0.2) !important;
}

.comp-table th.featured-col {
  color: var(--primary) !important;
  border-top: 2px solid rgba(255,107,53,0.4);
}

.comp-table th small {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 2px;
}

.comp-table td {
  padding: var(--space-md) var(--space-xl);
  text-align: center;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.comp-table td:first-child {
  text-align: left;
  color: var(--text-secondary);
}

.category-row td {
  padding: var(--space-sm) var(--space-xl);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}

.check-cell {
  color: var(--accent-green) !important;
  font-size: 1rem;
  font-weight: 700;
}

.cross-cell {
  color: var(--text-muted) !important;
}

.comp-table tfoot td {
  padding: var(--space-xl);
  border-top: 2px solid var(--border);
  border-bottom: none;
}

.comp-btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.primary-btn {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,107,53,0.3);
}

.primary-btn:hover {
  box-shadow: 0 8px 24px rgba(255,107,53,0.4);
  transform: translateY(-1px);
}

.ghost-btn {
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.ghost-btn:hover {
  color: var(--text-primary);
  border-color: var(--border-light);
}

/* ===== CTA ===== */
.cta-section {
  position: relative;
  padding: var(--space-4xl) 0;
  overflow: hidden;
  background: var(--bg-surface);
}

.cta-bg { position: absolute; inset: 0; }

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}

.cta-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,53,0.4) 0%, transparent 70%);
  top: -200px; left: -100px;
}

.cta-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.3) 0%, transparent 70%);
  bottom: -150px; right: -50px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}

.cta-inner p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .prod-section-inner { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .prod-section-inner.reverse { direction: ltr; }
  .prod-feature-grid { grid-template-columns: 1fr; }
  .ai-showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .large-card { grid-column: span 2; }
  .collab-features { grid-template-columns: repeat(2, 1fr); }
  .stats-row { gap: var(--space-xl); }
  .os-divider { display: none; }
}

@media (max-width: 768px) {
  .ai-showcase-grid { grid-template-columns: 1fr; }
  .large-card { grid-column: span 1; }
  .collab-features { grid-template-columns: 1fr; }
  .pdf-body { grid-template-columns: 1fr; }
  .pres-window { flex-direction: column; }
  .pres-slides-panel { flex-direction: row; width: 100%; height: 50px; }
  .pres-thumb { aspect-ratio: auto; height: 100%; }
  .comp-table { font-size: 0.8rem; }
  .comp-table td, .comp-table th { padding: var(--space-sm) var(--space-md); }
}
