/**
 * Sales Professionals Landing Page Styles
 * Page-specific styles for /use-cases/sales-professionals/
 * 
 * Design theme: Bold, action-oriented, results-driven
 * Key visual: Deal pipeline / sales journey metaphor
 */

/* ===========================================
   Hero Section - Deck Generator Visual
   =========================================== */

.deck-generator-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 1rem;
  max-width: 420px;
  margin: 0 auto;
}

/* Client Brief Card */
.client-brief-card {
  width: 100%;
  background: var(--theme-glass-bg);
  border: 1px solid var(--theme-glass-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--theme-shadow-md);
  transition: all 0.3s ease;
}

@media (hover: hover) {
  .client-brief-card:hover {
    border-color: var(--octigen-orange);
    transform: translateY(-2px);
    box-shadow: var(--theme-shadow-lg);
  }
}

.brief-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 107, 53, 0.04));
  border-bottom: 1px solid var(--theme-border-secondary);
}

.brief-icon {
  font-size: 1rem;
}

.brief-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--octigen-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brief-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.brief-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.field-label {
  font-size: 0.7rem;
  color: var(--theme-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.field-value {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--theme-text-primary);
  text-align: right;
}

/* Generation Flow */
.generation-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0;
}

.flow-line-vertical {
  width: 2px;
  height: 16px;
  background: linear-gradient(to bottom, var(--theme-border-secondary), var(--octigen-blue));
}

.octigen-processor {
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--octigen-blue), #1a45c7);
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(30, 79, 226, 0.4);
  animation: processor-pulse 2.5s ease-in-out infinite;
}

.processor-text {
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

@keyframes processor-pulse {
  0%, 100% { 
    box-shadow: 0 4px 16px rgba(30, 79, 226, 0.4);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 6px 24px rgba(30, 79, 226, 0.6);
    transform: scale(1.03);
  }
}

.flow-arrow-down {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid var(--octigen-blue);
  margin-top: -1px;
}

/* Generated Slide Card */
.generated-slide-card {
  width: 100%;
  position: relative;
}

.slide-window {
  background: var(--theme-glass-bg);
  border: 1px solid var(--theme-glass-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--theme-shadow-lg);
  transition: all 0.3s ease;
}

@media (hover: hover) {
  .slide-window:hover {
    border-color: var(--octigen-blue);
    transform: translateY(-2px);
  }
}

.slide-chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 0.8rem;
  background: var(--theme-bg-elevated);
  border-bottom: 1px solid var(--theme-border-secondary);
}

.chrome-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.chrome-dot.red { background: #ff5f57; }
.chrome-dot.yellow { background: #febc2e; }
.chrome-dot.green { background: #28c840; }

.chrome-filename {
  margin-left: 0.6rem;
  font-size: 0.7rem;
  color: var(--theme-text-tertiary);
  font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
}

.slide-preview {
  padding: 1.25rem;
  background: white;
  position: relative;
  aspect-ratio: 16/10;
  display: flex;
  flex-direction: column;
}

[data-theme="dark"] .slide-preview {
  background: #1e1e2e;
}

.slide-preview .slide-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--octigen-blue), var(--octigen-orange));
}

.slide-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.slide-subtitle {
  font-size: 0.55rem;
  color: var(--octigen-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

[data-theme="dark"] .slide-subtitle {
  color: #60a5fa;
}

.slide-logo {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #6b7280, #4b5563);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: white;
}

.slide-title-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

[data-theme="dark"] .slide-title-text {
  color: #f0f0f5;
}

.slide-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.slide-bullet {
  font-size: 0.7rem;
  color: #4b5563;
  padding-left: 0.8rem;
  position: relative;
  line-height: 1.4;
}

.slide-bullet::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--octigen-blue);
  font-weight: bold;
}

[data-theme="dark"] .slide-bullet {
  color: #9ca3af;
}

.slide-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .slide-footer-row {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.slide-brand-mark {
  font-size: 0.55rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.slide-page {
  font-size: 0.55rem;
  color: #9ca3af;
}

/* Output Badge */
.slide-output-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
  white-space: nowrap;
}

.badge-icon {
  font-size: 0.75rem;
  color: white;
  font-weight: 700;
}

.badge-text {
  font-size: 0.7rem;
  font-weight: 500;
  color: white;
  letter-spacing: 0.3px;
}

/* ===========================================
   Speed Counter Visual
   =========================================== */

.speed-showcase {
  background: var(--theme-glass-bg);
  border: 1px solid var(--theme-glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--theme-shadow-lg);
}

.speed-counter {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.counter-number {
  font-size: 5rem;
  font-weight: 200;
  color: var(--octigen-blue);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.counter-unit {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--theme-text-secondary);
}

.speed-label {
  font-size: 1.1rem;
  color: var(--theme-text-secondary);
  margin-bottom: 1.5rem;
}

.speed-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--theme-border-secondary);
}

.comparison-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.comparison-value {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--theme-text-tertiary);
  text-decoration: line-through;
  text-decoration-color: var(--octigen-orange);
  text-decoration-thickness: 2px;
}

.comparison-value.highlight {
  color: var(--octigen-blue);
  text-decoration: none;
  font-weight: 500;
}

.comparison-label {
  font-size: 0.75rem;
  color: var(--theme-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.speed-arrow {
  font-size: 1.5rem;
  color: var(--octigen-blue);
}

/* ===========================================
   Template Library Visual
   =========================================== */

.template-library-visual {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

/* Template Library Section */
.template-library-section {
  flex-shrink: 0;
  width: 140px;
  display: flex;
  flex-direction: column;
  align-self: center;
}

.library-header {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.5rem;
}

.library-label,
.outputs-label {
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--theme-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.library-count {
  font-size: 0.5rem;
  color: var(--theme-text-muted);
}

.outputs-header {
  margin-bottom: 0.5rem;
}

.template-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.template-thumb {
  background: var(--theme-glass-bg);
  border: 1px solid var(--theme-border-secondary);
  border-radius: 6px;
  padding: 0.4rem 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

@media (hover: hover) {
  .template-thumb:hover {
    border-color: var(--theme-border-hover);
    background: var(--theme-glass-bg-hover);
  }
}

.template-thumb.active {
  border-color: var(--octigen-blue);
  background: linear-gradient(135deg, rgba(30, 79, 226, 0.08), rgba(30, 79, 226, 0.02));
}

.thumb-bar {
  height: 3px;
  border-radius: 2px;
  margin-bottom: 0.4rem;
}

.thumb-bar.color-blue { background: linear-gradient(90deg, #1e4fe2, #3b82f6); }
.thumb-bar.color-green { background: linear-gradient(90deg, #10b981, #34d399); }
.thumb-bar.color-orange { background: linear-gradient(90deg, #f59e0b, #fbbf24); }

.thumb-lines {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.thumb-line {
  height: 3px;
  background: var(--theme-border-secondary);
  border-radius: 1px;
  width: 80%;
}

.thumb-line.short {
  width: 50%;
}

.thumb-label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--theme-text-secondary);
}

.thumb-selected {
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
  font-size: 0.45rem;
  font-weight: 600;
  color: var(--octigen-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Flow Arrow */
.library-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--octigen-blue);
  opacity: 0.5;
  padding: 0 0.25rem;
  align-self: center;
}

/* Investor Outputs Section */
.investor-outputs-section {
  flex: 1;
  min-width: 0;
  align-self: center;
}

.investor-outputs {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.investor-output {
  background: white;
  border: 1px solid var(--theme-border-secondary);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--theme-shadow-sm);
}

[data-theme="dark"] .investor-output {
  background: #1e1e2e;
}

@media (hover: hover) {
  .investor-output:hover {
    transform: translateX(4px);
    box-shadow: var(--theme-shadow-md);
  }
}

.output-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
}

.output-1 .output-bar { background: linear-gradient(180deg, #1e4fe2, #3b82f6); }
.output-2 .output-bar { background: linear-gradient(180deg, #10b981, #34d399); }
.output-3 .output-bar { background: linear-gradient(180deg, #8b5cf6, #a78bfa); }

@media (hover: hover) {
  .investor-output:hover .output-bar {
    width: 5px;
  }
}

.output-badge {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  margin-bottom: 0.4rem;
}

.output-1 .output-badge {
  background: rgba(30, 79, 226, 0.1);
  color: #1e4fe2;
}

.output-2 .output-badge {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.output-3 .output-badge {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

[data-theme="dark"] .output-1 .output-badge {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

[data-theme="dark"] .output-2 .output-badge {
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
}

[data-theme="dark"] .output-3 .output-badge {
  background: rgba(167, 139, 250, 0.15);
  color: #a78bfa;
}

.output-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

[data-theme="dark"] .output-title {
  color: #f0f0f5;
}

.output-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.meta-item {
  font-size: 0.65rem;
  color: #6b7280;
}

.meta-sep {
  font-size: 0.5rem;
  color: #d1d5db;
}

[data-theme="dark"] .meta-item {
  color: #9ca3af;
}

[data-theme="dark"] .meta-sep {
  color: #4b5563;
}

/* ===========================================
   Sales Metrics Bar
   =========================================== */

.metrics-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2.5rem;
  background: var(--theme-glass-bg);
  border: 1px solid var(--theme-glass-border);
  border-radius: 20px;
  box-shadow: var(--theme-shadow-md);
}

.metric-item {
  text-align: center;
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 200;
  color: var(--octigen-blue);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.metric-value span {
  font-size: 1.5rem;
  color: var(--theme-text-secondary);
}

.metric-label {
  font-size: 0.85rem;
  color: var(--theme-text-secondary);
  line-height: 1.4;
}

/* ===========================================
   Team Consistency Visual
   =========================================== */

.team-visual {
  background: var(--theme-glass-bg);
  border: 1px solid var(--theme-glass-border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--theme-shadow-lg);
}

.team-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--theme-border-secondary);
}

.team-window-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.team-window-dot.red { background: #ff5f57; }
.team-window-dot.yellow { background: #febc2e; }
.team-window-dot.green { background: #28c840; }

.team-title {
  margin-left: 1rem;
  font-size: 0.85rem;
  color: var(--theme-text-tertiary);
  font-weight: 400;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.team-member {
  text-align: center;
  padding: 1rem;
  background: var(--theme-bg-elevated);
  border-radius: 12px;
  border: 1px solid var(--theme-border-secondary);
  transition: all 0.3s ease;
}

@media (hover: hover) {
  .team-member:hover {
    border-color: var(--octigen-blue);
    transform: translateY(-2px);
  }
}

.member-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
}

.team-member:nth-child(1) .member-avatar { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.team-member:nth-child(2) .member-avatar { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.team-member:nth-child(3) .member-avatar { background: linear-gradient(135deg, #10b981, #059669); }

.member-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--theme-text-primary);
  margin-bottom: 0.25rem;
}

.member-role {
  font-size: 0.7rem;
  color: var(--theme-text-tertiary);
  margin-bottom: 0.75rem;
}

.member-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.6rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 20px;
  font-size: 0.65rem;
  color: #10b981;
  font-weight: 500;
}

.member-badge::before {
  content: '✓';
  font-size: 0.6rem;
}

/* Template preview */
.team-template-preview {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--theme-bg-elevated);
  border-radius: 12px;
  border: 1px solid var(--theme-border-secondary);
}

.template-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.template-preview-title {
  font-size: 0.75rem;
  color: var(--theme-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.template-preview-badge {
  padding: 0.2rem 0.5rem;
  background: linear-gradient(135deg, var(--octigen-blue), #1a45c7);
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.template-slides {
  display: flex;
  gap: 0.5rem;
}

.template-slide {
  flex: 1;
  aspect-ratio: 16/10;
  background: white;
  border-radius: 4px;
  border: 1px solid var(--theme-border-secondary);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .template-slide {
  background: #1e1e2e;
}

.template-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--octigen-blue), var(--octigen-orange));
}

.slide-content-mock {
  padding: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.25rem;
}

.mock-line {
  height: 3px;
  background: var(--theme-border-secondary);
  border-radius: 2px;
}

.mock-line.short { width: 40%; }
.mock-line.medium { width: 65%; }
.mock-line.long { width: 85%; }

/* ===========================================
   Call-to-Action Banner
   =========================================== */

.cta-banner {
  background: linear-gradient(135deg, rgba(30, 79, 226, 0.1), rgba(30, 79, 226, 0.02));
  border: 1px solid rgba(30, 79, 226, 0.2);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 79, 226, 0.05) 0%, transparent 50%);
  animation: cta-pulse 10s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(5deg); }
}

.cta-title {
  font-size: 2rem;
  font-weight: 300;
  color: var(--theme-text-primary);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--theme-text-secondary);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}


/* ===========================================
   Responsive Styles
   =========================================== */

@media (max-width: 1200px) {
  .deck-generator-visual {
    max-width: 380px;
  }
  
  .slide-title-text {
    font-size: 0.85rem;
  }
}

/* ============================================
   Contact Section - Enhanced Design
   ============================================ */

.contact-section {
  padding: 5rem 0;
}

.contact-wrapper {
  background: var(--theme-glass-bg);
  border: 1px solid var(--theme-glass-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--theme-shadow-lg);
}

.contact-wrapper > .row {
  min-height: 100%;
}

.contact-wrapper > .row > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

.contact-wrapper > .row > [class*="col-"] > * {
  flex: 1;
}

/* Left Side - Info & Benefits */
.contact-info-side {
  padding: 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, 
    rgba(255, 107, 53, 0.08) 0%, 
    rgba(255, 107, 53, 0.02) 100%);
  border-right: 1px solid var(--theme-border-secondary);
}

[data-theme="dark"] .contact-info-side {
  background: linear-gradient(135deg, 
    rgba(255, 107, 53, 0.15) 0%, 
    rgba(255, 107, 53, 0.05) 100%);
}

.contact-info-side h2 {
  font-size: 2rem;
  font-weight: 400;
  color: var(--theme-text-primary);
  margin: 1.25rem 0 1rem;
  line-height: 1.3;
}

.contact-intro {
  color: var(--theme-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Benefits List */
.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--theme-bg-elevated);
  border: 1px solid var(--theme-border-secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.benefit-text strong {
  color: var(--theme-text-primary);
  font-weight: 500;
  font-size: 0.95rem;
}

.benefit-text span {
  color: var(--theme-text-tertiary);
  font-size: 0.85rem;
}

/* Trust Section */
.contact-trust {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--theme-border-secondary);
}

.trust-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-text-tertiary);
  margin-bottom: 0.75rem;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-logo-placeholder {
  padding: 0.4rem 0.8rem;
  background: var(--theme-bg-elevated);
  border: 1px solid var(--theme-border-secondary);
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--theme-text-tertiary);
  font-weight: 500;
}

/* Right Side - Form */
.contact-form-side {
  padding: 3rem;
  background: var(--theme-bg-primary);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

[data-theme="dark"] .contact-form-side {
  background: rgba(0, 0, 0, 0.2);
}

.contact-form-enhanced {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--theme-text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  background: var(--theme-bg-elevated);
  border: 1px solid var(--theme-border-secondary);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--theme-text-primary);
  transition: all 0.2s ease;
  font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--theme-text-tertiary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--octigen-blue);
  box-shadow: 0 0 0 3px rgba(30, 79, 226, 0.1);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Form Footer */
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.form-consent {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 2px solid var(--theme-border-secondary);
  border-radius: 4px;
  cursor: pointer;
  accent-color: var(--octigen-blue);
}

.form-consent label {
  font-size: 0.8rem;
  color: var(--theme-text-tertiary);
  cursor: pointer;
}

.form-consent label a {
  color: var(--octigen-blue);
  text-decoration: none;
}

.form-consent label a:hover {
  text-decoration: underline;
}

/* Submit Button */
.contact-submit-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, var(--octigen-blue), #1a45c7);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 79, 226, 0.35);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

.btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.contact-submit-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.form-status {
  text-align: center;
  font-size: 0.9rem;
  padding: 0.5rem;
}

@media (max-width: 991px) {
  /* Deck generator visual mobile */
  .deck-generator-visual {
    max-width: 100%;
    padding: 0.5rem;
  }
  
  .client-brief-card {
    border-radius: 12px;
  }
  
  .brief-content {
    padding: 0.875rem;
  }
  
  .field-value {
    font-size: 0.8rem;
  }
  
  .slide-preview {
    padding: 1rem;
  }
  
  .slide-title-text {
    font-size: 0.85rem;
  }
  
  .slide-bullet {
    font-size: 0.65rem;
  }
  
  .slide-output-badge {
    padding: 0.4rem 0.8rem;
  }
  
  .badge-text {
    font-size: 0.65rem;
  }
  
  /* Template library visual mobile */
  .template-library-visual {
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem;
  }
  
  .template-library-section {
    width: 100%;
  }
  
  .template-thumbnails {
    flex-direction: row;
    justify-content: center;
  }
  
  .template-thumb {
    flex: 1;
    max-width: 110px;
  }
  
  .library-flow {
    transform: rotate(90deg);
    padding: 0.5rem 0;
  }
  
  .investor-outputs-section {
    width: 100%;
  }
  
  .investor-output {
    padding: 0.75rem 0.875rem;
  }
  
  .output-title {
    font-size: 0.85rem;
  }
  
  .meta-item {
    font-size: 0.6rem;
  }
  
  /* Speed showcase mobile */
  .speed-showcase {
    padding: 1.5rem;
  }
  
  .counter-number {
    font-size: 3.5rem;
  }
  
  .counter-unit {
    font-size: 1.1rem;
  }
  
  .speed-comparison {
    flex-direction: column;
    gap: 1rem;
  }
  
  .speed-arrow {
    transform: rotate(90deg);
  }
  
  /* Metrics bar mobile */
  .metrics-bar {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem;
  }
  
  .metric-value {
    font-size: 2rem;
  }
  
  /* Team visual mobile */
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .team-member {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 0.875rem;
  }
  
  .member-avatar {
    margin: 0;
    width: 40px;
    height: 40px;
  }
  
  .member-info {
    flex: 1;
  }
  
  .member-badge {
    margin-left: auto;
  }
  
  /* Keep template slides horizontal on mobile, just smaller */
  .template-slides {
    flex-direction: row;
    gap: 0.35rem;
  }
  
  .template-slide {
    aspect-ratio: 16/10;
  }
  
  .template-slide::before {
    height: 2px;
  }
  
  .slide-content-mock {
    padding: 0.3rem;
    gap: 0.15rem;
    margin-top: 0.15rem;
  }
  
  .mock-line {
    height: 2px;
  }
  
  .team-template-preview {
    padding: 0.75rem;
  }
  
  .template-preview-header {
    margin-bottom: 0.5rem;
  }
  
  .template-preview-title {
    font-size: 0.65rem;
  }
  
  .template-preview-badge {
    font-size: 0.5rem;
    padding: 0.15rem 0.4rem;
  }
  
  /* CTA banner mobile */
  .cta-banner {
    padding: 2rem 1.5rem;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-subtitle {
    font-size: 1rem;
  }
  
  /* Contact Section Mobile */
  .contact-info-side {
    padding: 2rem;
    border-right: none;
    border-bottom: 1px solid var(--theme-border-secondary);
  }
  
  .contact-info-side h2 {
    font-size: 1.6rem;
  }
  
  .contact-form-side {
    padding: 2rem;
  }
  
  .form-row-2col {
    grid-template-columns: 1fr;
  }
  
  .form-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .contact-submit-btn {
    width: 100%;
    justify-content: center;
  }
  
  .contact-trust {
    display: none;
  }
}
