/* Enhanced automation.css with marketing-focused styling and demo integration */

/* Root variables for consistent styling */
:root {
  --primary-color: #4361ee;
  --primary-light: #4895ef;
  --primary-lighter: #4cc9f0;
  --accent-color: #8021e0;
  --dark-bg: #111111;
  --card-bg: rgba(25, 25, 25, 0.7);
  --text-light: #ffffff;
  --text-muted: #a0a0a0;
  --success-color: #2ecc71;
  --warning-color: #f39c12;
  --danger-color: #e74c3c;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--dark-bg);
  color: var(--text-light);
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Hero section */
.auto {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url("/assets/img/analytics.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
}

/* Fix for mobile */
@media only screen and (min-width: 768px) {
  .auto {
    background-attachment: fixed !important;
  }
}

/* Featured tag */
.featured-tag {
  display: inline-block;
  background: rgba(67, 97, 238, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.8rem;
  color: var(--primary-lighter);
  border: 1px solid rgba(67, 97, 238, 0.3);
}

.featured-tag i {
  margin-right: 0.5rem;
  color: var(--primary-lighter);
}

/* Text styling */
.gradient-text {
  background: linear-gradient(90deg, var(--primary-light), var(--primary-lighter));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.highlight {
  color: var(--primary-light);
  font-weight: 600;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  color: white;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid var(--primary-light);
}

.btn-outline:hover {
  background-color: var(--primary-light);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

.btn i {
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.btn:hover i {
  transform: translateX(3px);
}

/* Trust badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0 0;
  flex-wrap: wrap;
}

.badge {
  background-color: rgba(15, 15, 15, 0.7);
  border-radius: 50px;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge:hover {
  transform: translateY(-5px);
  background-color: rgba(67, 97, 238, 0.1);
  border-color: rgba(67, 97, 238, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.badge i {
  color: var(--primary-light);
  font-size: 1.2rem;
}

.badge span {
  font-weight: 500;
  font-size: 0.9rem;
}

/* Business value section */
.value-metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.metric-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  width: 260px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(67, 97, 238, 0.2);
}

.metric-value {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--primary-light), var(--primary-lighter));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.metric-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Section styling */
.sections {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Integration cards */
.integrations {
  display: flex;
  justify-content: space-around;
  margin: 3rem 0;
  flex-wrap: wrap;
  gap: 2rem;
}

.integration-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem;
  width: 300px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.integration-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(67, 97, 238, 0.2);
}

.integration-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.integration-icon.jira {
  color: #0052CC;
}

.integration-icon.github {
  color: #6e5494;
}

.integration-icon.azure {
  color: #0078D4;
}

.integration-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.integration-description {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Workflow container */
.workflow-container {
  background: rgba(15, 15, 15, 0.7);
  border-radius: 16px;
  padding: 3rem;
  position: relative;
  margin: 4rem 0 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.workflow-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(67, 97, 238, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.workflow-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  gap: 2rem;
}

@media (min-width: 992px) {
  .workflow-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 60px;
    width: calc(100% - 120px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-lighter));
    z-index: -1;
  }
}

.workflow-step {
  text-align: center;
  width: 170px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-weight: 600;
}

.step-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* =========================
   DEMO STYLES
========================= */

/* Demo container */
.demo-container {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.demo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(67, 97, 238, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* Demo progress bar */
.demo-progress {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 30px;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-lighter));
    border-radius: 4px;
    transition: width 0.6s ease;
    width: 16.67%;
}

/* Demo step content */
.step-content {
    min-height: 60vh;
    max-height: 80vh;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow-y: auto;
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.step-header .step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: bold;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
    flex-shrink: 0;
}

.step-title h2 {
    color: var(--text-light);
    font-size: 1.4em;
    margin-bottom: 3px;
    font-weight: 700;
}

.step-title p {
    color: var(--text-muted);
    font-size: 0.95em;
    margin: 0;
    line-height: 1.4;
}

.step-title {
    flex: 1;
    min-width: 0;
}

/* Demo form styles */
.form-container {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-title {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
}

.demo-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.demo-form-group {
    margin-bottom: 15px;
}

.demo-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
}

.demo-form-group input, 
.demo-form-group select, 
.demo-form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.5);
    color: var(--text-light);
    transition: border-color 0.3s ease;
}

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

.demo-form-group input:focus,
.demo-form-group select:focus,
.demo-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 2px rgba(67, 97, 238, 0.2);
}

/* Status board */
.status-board {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.status-column {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 140px;
    transition: all 0.3s ease;
}

.status-column:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.status-column h3 {
    color: var(--text-light);
    margin-bottom: 12px;
    text-align: center;
    font-size: 1rem;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-column h3 i {
    margin-right: 0.5rem;
    color: var(--primary-light);
}

.empty-state {
    text-align: center;
    color: var(--text-muted);
    margin-top: 30px;
    font-style: italic;
    font-size: 0.9rem;
}

.status-card {
    background: rgba(25, 25, 25, 0.8);
    border-radius: 8px;
    padding: 15px;
    border-left: 4px solid var(--primary-light);
    transition: all 0.3s ease;
}

.status-card.active {
    border-left-color: var(--success-color);
    background: rgba(46, 204, 113, 0.1);
}

.status-card h4 {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 1.1em;
}

.status-card p {
    color: var(--text-muted);
    font-size: 0.9em;
    margin-bottom: 4px;
}

/* Integration flow */
.integration-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.integration-box {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s ease;
}

.integration-box.active {
    border-color: var(--primary-light);
    background: rgba(67, 97, 238, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.2);
}

.integration-box h4 {
    color: var(--text-light);
    margin-bottom: 6px;
    font-size: 1rem;
}

.integration-box p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.integration-flow .integration-icon {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--primary-light);
}

.integration-arrow {
    font-size: 1.3em;
    color: var(--primary-light);
    font-weight: bold;
}

.integration-arrow i {
    transition: transform 0.3s ease;
}

.integration-arrow:hover i {
    transform: translateX(5px);
}

/* Deployment grid */
.deployment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin: 15px 0;
}

.deployment-item {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 12px;
    border-left: 3px solid var(--success-color);
    text-align: center;
    transition: all 0.3s ease;
}

.deployment-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.2);
}

.deployment-item h4 {
    color: var(--text-light);
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.deployment-item p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
}

.deployment-icon {
    font-size: 1.3rem;
    color: var(--success-color);
    margin-bottom: 0.4rem;
}

/* Success summary */
.success-summary {
    background: linear-gradient(135deg, var(--primary-color), #2729ae);
    color: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.success-summary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.success-header {
    position: relative;
    z-index: 1;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.success-summary h3 {
    margin-bottom: 10px;
    font-size: 1.4em;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.value-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.value-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.value-item h4 {
    margin-bottom: 5px;
    font-size: 1em;
}

.value-item p {
    font-size: 0.9em;
    margin: 0;
}

/* Highlight box */
.highlight-box {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin: 12px 0;
    transition: all 0.3s ease;
}

.highlight-box:hover {
    background: rgba(46, 204, 113, 0.15);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.1);
}

.highlight-box h4 {
    color: var(--success-color);
    margin-bottom: 6px;
    font-size: 1rem;
}

.highlight-box h4 i {
    margin-right: 0.5rem;
}

.highlight-box p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* Notes box */
.notes-box {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 15px;
    margin: 12px 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.notes-box h4 {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 1rem;
}

.notes-box p {
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.checklist p {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.checklist i {
    margin-right: 0.5rem;
    width: 1rem;
}

.workflow-details {
    background: rgba(25, 25, 25, 0.8);
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    border-left: 4px solid var(--primary-light);
}

.workflow-details p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.business-value p {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.business-value i {
    margin-right: 0.8rem;
    width: 1.2rem;
}

.business-value strong {
    color: var(--primary-light);
}

/* Demo controls */
.demo-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.demo-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    min-width: 120px;
}

.step-counter {
    font-weight: 600;
    color: var(--text-light);
    font-size: 1rem;
}

/* Platform selection styles */
.platform-section {
    margin-bottom: 30px;
}

.platform-section h4 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.platform-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.platform-option {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.platform-option:hover {
    transform: translateY(-3px);
    border-color: rgba(67, 97, 238, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.platform-option.selected {
    border-color: var(--primary-light);
    background: rgba(67, 97, 238, 0.1);
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.2);
}

.platform-option i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-light);
}

.platform-option h4 {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.platform-option p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.platform-option.azure i {
    color: #0078D4;
}

.platform-option.vmware i {
    color: #607078;
}

.platform-option.hyperv i {
    color: #00BCF2;
}

.platform-option.github i {
    color: #6e5494;
}

.platform-option.azure-devops i {
    color: #0078D4;
}

/* Workflow Examples Section */
.workflow-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.workflow-example {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.workflow-example::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-lighter));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.workflow-example:hover::before {
    transform: scaleX(1);
}

.workflow-example:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(67, 97, 238, 0.2);
}

.workflow-icon {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.workflow-example:hover .workflow-icon {
    transform: scale(1.1);
    color: var(--primary-lighter);
}

.workflow-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.workflow-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.workflow-tag {
    display: inline-block;
    background: rgba(67, 97, 238, 0.2);
    color: var(--primary-lighter);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Workflow Power Section */
.workflow-power {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.power-item {
    text-align: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.power-item:hover {
    transform: translateY(-5px);
}

.power-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.power-item:hover .power-icon {
    transform: scale(1.1);
    color: var(--primary-light);
}

.power-item h4 {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.power-item p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Animations */
.spinning {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.text-success {
    color: var(--success-color) !important;
}

.text-primary {
    color: var(--primary-light) !important;
}

/* =========================
   ORIGINAL AUTOMATION STYLES CONTINUE
========================= */

/* Industry cards */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.industry-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(67, 97, 238, 0.2);
}

.industry-icon {
  font-size: 3rem;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
}

.industry-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.industry-description {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.industry-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  margin-top: auto;
}

.industry-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  color: var(--text-muted);
}

.industry-features li i {
  color: var(--success-color);
  margin-right: 0.8rem;
  font-size: 0.9rem;
}

/* Feature cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(67, 97, 238, 0.2);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-lighter));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.feature-description {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-tag {
  display: inline-block;
  background: rgba(46, 204, 113, 0.1);
  color: var(--success-color);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: auto;
}

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(128, 33, 224, 0.1) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(67, 97, 238, 0.3) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  border-radius: 50%;
  z-index: 0;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(128, 33, 224, 0.2) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  border-radius: 50%;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  background: rgba(15, 15, 15, 0.5);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.cta-text {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Contact form */
.contact-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-col {
  flex: 1;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-light);
}

.form-control {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(30, 30, 30, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

/* Trust section */
.trust-section {
  padding: 4rem 0;
}

.client-industries {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}

.industry-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
}

.industry-logo:hover {
  transform: scale(1.1);
}

.industry-logo i {
  font-size: 2.5rem;
  color: var(--primary-light);
}

.industry-logo span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}

.compliance-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.badge-item {
  background: rgba(15, 15, 15, 0.5);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.badge-item:hover {
  transform: translateY(-5px);
  background: rgba(67, 97, 238, 0.1);
  border-color: rgba(67, 97, 238, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.badge-item i {
  color: var(--primary-light);
  font-size: 1.2rem;
}

.badge-item span {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Background accent */
.bg-accent {
  position: relative;
  overflow: hidden;
}

.bg-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.08) 0%, rgba(128, 33, 224, 0.05) 100%);
  z-index: -1;
}

/* Back to top button */
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  border: none;
  outline: none;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  cursor: pointer;
  padding: 1rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#myBtn:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-lighter));
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .gradient-text {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .workflow-steps {
    justify-content: center;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .gradient-text {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .auto {
    min-height: auto;
    padding: 6rem 0;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .value-metrics {
    gap: 1rem;
  }
  
  .metric-card {
    width: 100%;
    padding: 1.5rem;
  }
  
  .badge {
    width: 100%;
    justify-content: center;
  }
  
  .contact-card {
    padding: 1.5rem;
  }

  /* Demo responsive */
  .demo-container {
    padding: 1.5rem;
  }
  
  .step-content {
    padding: 15px;
    min-height: 50vh;
    max-height: 70vh;
  }
  
  .step-header {
    flex-direction: column;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }
  
  .step-header .step-number {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .step-title {
    width: 100%;
  }
  
  .step-title h2 {
    font-size: 1.2em;
  }
  
  .integration-flow {
    flex-direction: column;
  }
  
  .integration-arrow {
    transform: rotate(90deg);
  }
  
  .demo-controls {
    flex-direction: column;
    gap: 1rem;
  }
  
  .demo-btn {
    width: 100%;
  }
  
  .demo-form-row {
    grid-template-columns: 1fr;
  }
  
  .status-board {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .status-column {
    min-height: 120px;
    padding: 12px;
  }
  
  .empty-state {
    margin-top: 20px;
  }
  
  .workflow-examples {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .workflow-power {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .platform-selector {
    grid-template-columns: 1fr;
  }
}