/* Professional Index Page Styles - My STE Buddy */

/* ===== COLOR VARIABLES FOR READABILITY ===== */
:root {
  --primary-color: #0077cc !important;
  --secondary-color: #00aaff !important;
  --text-color: #1a1a1a !important;
  --muted-text-color: #4a5568 !important;
  --light-text-color: #718096 !important;
  --background-color: #ffffff !important;
  --section-bg-color: #f8fafc !important;
  --section-bg-light: #f7fafc !important;
  --section-bg-alt: #edf2f7 !important;
  --card-bg-color: #ffffff !important;
  --border-color: #e2e8f0 !important;
  --success-color: #48bb78 !important;
  --warning-color: #ed8936 !important;
  --error-color: #f56565 !important;
}

/* Force override any conflicting color variables from other CSS files */
html:root {
  --text-color: #1a1a1a !important;
  --muted-text-color: #4a5568 !important;
}

/* ===== EMERGENCY TEXT CONTRAST FIXES ===== */
/* Override all possible text color inheritance issues */
body {
  color: #1a1a1a !important;
}

section:not(.subscription-section):not(.hero):not(.cta) {
  color: #1a1a1a !important;
}

section:not(.subscription-section):not(.hero):not(.cta) * {
  color: inherit !important;
}

section:not(.subscription-section):not(.hero):not(.cta) h1,
section:not(.subscription-section):not(.hero):not(.cta) h2,
section:not(.subscription-section):not(.hero):not(.cta) h3,
section:not(.subscription-section):not(.hero):not(.cta) h4,
section:not(.subscription-section):not(.hero):not(.cta) h5,
section:not(.subscription-section):not(.hero):not(.cta) h6 {
  color: #1a1a1a !important;
}

section:not(.subscription-section):not(.hero):not(.cta) p {
  color: #4a5568 !important;
}

.section-title {
  color: #1a1a1a !important;
}

.section-subtitle {
  color: #4a5568 !important;
}

/* ===== GLOBAL TEXT COLOR OVERRIDES ===== */
.subscription-section,
.subscription-section *,
.subscription-section h1,
.subscription-section h2,
.subscription-section h3,
.subscription-section h4,
.subscription-section h5,
.subscription-section h6,
.subscription-section p,
.subscription-section div,
.subscription-section span {
  color: white !important;
}

.subscription-section .subscription-intro {
  color: rgba(255,255,255,0.95) !important;
}

.subscription-section .feature p,
.subscription-section .feature ul li {
  color: rgba(255,255,255,0.9) !important;
}

/* ===== ABSOLUTE FALLBACK TEXT STYLES ===== */
/* Ensure text is ALWAYS visible with hard-coded colors, but NOT in hero/cta/subscription sections */
section:not(.hero):not(.cta):not(.subscription-section) h1, 
section:not(.hero):not(.cta):not(.subscription-section) h2, 
section:not(.hero):not(.cta):not(.subscription-section) h3, 
section:not(.hero):not(.cta):not(.subscription-section) h4, 
section:not(.hero):not(.cta):not(.subscription-section) h5, 
section:not(.hero):not(.cta):not(.subscription-section) h6 {
  color: #1a1a1a !important;
}

section:not(.hero):not(.cta):not(.subscription-section) p, 
section:not(.hero):not(.cta):not(.subscription-section) div, 
section:not(.hero):not(.cta):not(.subscription-section) span, 
section:not(.hero):not(.cta):not(.subscription-section) li {
  color: #4a5568 !important;
}

/* Override any specific classes that might be causing issues */
.feature h3,
.feature p,
.feature ul li,
.section-title,
.section-subtitle {
  color: #1a1a1a !important;
}

.feature p,
.feature ul li {
  color: #4a5568 !important;
}

/* But NOT in subscription section - it should remain white on dark */
.subscription-section .feature h3,
.subscription-section .feature p,
.subscription-section .feature ul li,
.subscription-section .section-title,
.subscription-section .section-subtitle,
.subscription-section .subscription-intro {
  color: white !important;
}

.subscription-section .feature p,
.subscription-section .feature ul li {
  color: rgba(255,255,255,0.9) !important;
}

/* ===== BASE STYLES ===== */
/* Remove loading animations that hide content since no JS is adding page-loaded class */
.hero-content,
.hero-image {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #0077cc 0%, #00aaff 100%);
  color: white !important;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero * {
  color: white !important;
}

.hero h1, .hero h2, .hero h3, .hero h4, .hero h5, .hero h6 {
  color: white !important;
}

.hero p, .hero div, .hero span {
  color: white !important;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  min-width: 400px;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-content h2 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  text-align: justify;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-align: justify;
}

.hero-image {
  flex: 1;
  min-width: 400px;
  text-align: center;
}

.hero-main-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.3s ease;
}

.hero-main-image:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* ===== SECTION STYLING ===== */
section {
  padding: 5rem 0;
  position: relative;
  background: var(--background-color);
  color: var(--text-color);
}

section:nth-child(even) {
  background: var(--section-bg-color);
}

.value-section {
  background: var(--section-bg-color);
}

.process-section {
  background: var(--section-bg-color);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-color);
  line-height: 1.2;
}

/* ===== VALUE PROPOSITION SECTION ===== */
.value-proposition-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.value-proposition-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="valueGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(0,119,204,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23valueGrid)"/></svg>');
  z-index: 1;
}

.value-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.value-header {
  margin-bottom: 4rem;
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 30px rgba(0,119,204,0.3);
}

.value-icon i {
  font-size: 2.5rem;
  color: white;
}

.value-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-color);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.value-subtitle {
  font-size: 1.3rem;
  color: var(--muted-text-color);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Industry Validation */
.industry-validation {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
}

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

.validation-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.validation-label {
  display: block;
  font-size: 0.9rem;
  color: var(--muted-text-color);
  font-weight: 600;
  margin-top: 0.5rem;
}

.value-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.value-stat {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.value-stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,119,204,0.15);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #48bb78, #38a169);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.stat-icon i {
  font-size: 1.5rem;
  color: white;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

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

.roi-calculator {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  margin: 4rem 0;
  border: 2px solid var(--border-color);
}

.roi-calculator h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 2rem;
  text-align: center;
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.roi-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: var(--section-bg-color);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.roi-label {
  font-weight: 600;
  color: var(--text-color);
}

.roi-value {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-color);
}

.roi-value.highlight {
  background: linear-gradient(135deg, #48bb78, #38a169);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 1.2rem;
}

.roi-conclusion {
  text-align: center;
  padding: 2rem 3rem;
  background: linear-gradient(135deg, #0077cc 0%, #00aaff 50%, #0099ee 100%);
  background-size: 200% 200%;
  color: white;
  border-radius: 20px;
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 2rem;
  box-shadow: 
    0 10px 30px rgba(0,119,204,0.4),
    0 4px 15px rgba(0,170,255,0.2),
    inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.roi-conclusion::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.roi-conclusion:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 15px 40px rgba(0,119,204,0.5),
    0 8px 25px rgba(0,170,255,0.3),
    inset 0 1px 0 rgba(255,255,255,0.3);
  background-position: 100% 100%;
}

.roi-conclusion:hover::before {
  left: 100%;
}

.roi-conclusion strong {
  display: block;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  line-height: 1.4;
}

/* Professional Benefits Section */
.professional-benefits {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.benefit-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.benefit-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 0.5rem 0;
}

.benefit-content p {
  font-size: 0.9rem;
  color: var(--muted-text-color);
  margin: 0;
  line-height: 1.5;
}

.value-cta {
  text-align: center;
  margin-top: 3rem;
}

.btn-value {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,119,204,0.3);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-value:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,119,204,0.4);
  color: white;
  text-decoration: none;
}

.btn-value i {
  font-size: 1.1rem;
}

.guarantee {
  margin-top: 1rem;
  color: var(--muted-text-color);
  font-size: 0.95rem;
  font-style: italic;
}

section > .container > h2:not(.section-title) {
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-color);
  line-height: 1.3;
}

section > .container > p {
  text-align: center;
  font-size: 1.1rem;
  color: var(--muted-text-color);
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.section-description {
  text-align: center;
  font-size: 1.1rem;
  color: var(--muted-text-color);
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

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

.dream-cards .feature {
  background: var(--card-bg-color);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.dream-cards .feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.dream-cards .feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,119,204,0.2);
}

.feature .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(0,119,204,0.3);
}

.feature .icon i {
  font-size: 2rem;
  color: white;
}

.feature h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-color);
  line-height: 1.3;
}

.feature p {
  color: var(--muted-text-color);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.feature ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.feature ul li {
  padding: 0.5rem 0;
  color: var(--muted-text-color);
  position: relative;
  padding-left: 2rem;
  font-size: 0.95rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
}

.feature ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--success-color);
  font-weight: bold;
  font-size: 1.1rem;
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(72, 187, 120, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* More specific selectors to override style.css */
.dream-cards .feature ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  color: var(--muted-text-color);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

.dream-cards .feature ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(72, 187, 120, 0.15);
  color: var(--success-color);
  border-radius: 50%;
  margin-right: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1;
}

/* ===== TIME COMPARISON ===== */
.comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.comparison-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.comparison-card:first-child {
  border-left: 4px solid #e74c3c;
}

.comparison-card:last-child {
  border-left: 4px solid #27ae60;
}

.comparison-card:hover {
  transform: translateY(-5px);
}

.comparison-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.comparison-card h3 i {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.comparison-card:first-child h3 i {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.comparison-card:last-child h3 i {
  background: linear-gradient(135deg, #27ae60, #229954);
}

.comparison-card .time {
  font-size: 3rem;
  font-weight: 700;
  margin: 1rem 0 2rem;
}

.comparison-card:first-child .time {
  color: #e74c3c;
}

.comparison-card:last-child .time {
  color: #27ae60;
}

.comparison-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.comparison-card ul li {
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  line-height: 1.4;
}

.comparison-card ul li i {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.comparison-card:first-child ul li i {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.comparison-card:last-child ul li i {
  background: linear-gradient(135deg, #27ae60, #229954);
}

.comparison-card ul li:hover i {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ===== WITHOUT VS WITH SECTION ===== */
.difference {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.difference > div {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.difference h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary-color);
}

.difference ul {
  list-style: none;
  padding: 0;
}

.difference ul li {
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}

.difference ul li i {
  width: 20px;
  color: var(--primary-color);
}

/* ===== WORKFLOW TRANSFORMATION SECTION ===== */
.workflow-transformation {
  background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
  padding: 6rem 0;
}

.workflow-transformation .section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--muted-text-color);
  margin: 1rem auto 4rem;
  max-width: 600px;
}

.workflow-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.workflow-card {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.workflow-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.workflow-card.traditional::before {
  background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.workflow-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.workflow-header {
  text-align: center;
  margin-bottom: 3rem;
}

.workflow-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 25px rgba(0,119,204,0.3);
}

.workflow-card.traditional .workflow-icon {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  box-shadow: 0 8px 25px rgba(231,76,60,0.3);
}

.workflow-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.workflow-subtitle {
  color: var(--muted-text-color);
  font-size: 1rem;
  margin: 0;
}

.workflow-metrics {
  display: flex;
  justify-content: space-around;
  margin-bottom: 3rem;
  gap: 2rem;
}

.metric-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 16px;
  min-width: 140px;
}

.metric-item.positive {
  background: linear-gradient(135deg, #e8f5e8, #d4f1d4);
  border: 2px solid #48bb78;
}

.metric-item.negative {
  background: linear-gradient(135deg, #fef5f5, #fed7d7);
  border: 2px solid #e74c3c;
}

.metric-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.metric-label {
  display: block;
  font-size: 0.9rem;
  color: var(--muted-text-color);
  font-weight: 600;
}

.workflow-challenges,
.workflow-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.workflow-challenges li,
.workflow-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: 12px;
  background: var(--section-bg-color);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.workflow-benefits li {
  background: linear-gradient(135deg, #f0fff4, #e6fffa);
  border-color: #48bb78;
}

.workflow-challenges li:hover,
.workflow-benefits li:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.challenge-icon,
.benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.challenge-icon {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.benefit-icon {
  background: linear-gradient(135deg, #48bb78, #38a169);
}

.challenge-content,
.benefit-content {
  flex: 1;
}

.challenge-content strong,
.benefit-content strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.challenge-content p,
.benefit-content p {
  margin: 0;
  color: var(--muted-text-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

.transformation-cta {
  text-align: center;
  background: white;
  padding: 4rem;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.transformation-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  padding: 3px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
  mask-composite: subtract;
}

.cta-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
}

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

.btn-transformation {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(0,119,204,0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 10;
}

.btn-transformation:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,119,204,0.4);
  color: white;
  text-decoration: none;
}

.btn-transformation:visited {
  color: white;
}

.btn-transformation:active {
  color: white;
}

.btn-transformation i {
  font-size: 1rem;
}

/* ===== SUBSCRIPTION SECTION ===== */
.subscription-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
  color: white !important;
  padding: 6rem 0;
  position: relative;
}

.subscription-section,
.subscription-section * {
  color: white !important;
}

/* Override any competing styles for subscription section */
.subscription-section h2.section-title {
  color: white !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5) !important;
  font-size: 2.8rem !important;
  font-weight: 700 !important;
  margin-bottom: 1.5rem !important;
}

.subscription-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
}

.subscription-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.subscription-section .section-title {
  color: white !important;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Ensure all elements in subscription section are white */
.subscription-section h1,
.subscription-section h2,
.subscription-section h3,
.subscription-section h4,
.subscription-section h5,
.subscription-section h6 {
  color: white !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.subscription-section p,
.subscription-section div:not(.icon),
.subscription-section span {
  color: rgba(255,255,255,0.95) !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.subscription-icon {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 2rem;
}

.subscription-intro {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: rgba(255,255,255,0.95) !important;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.subscription-benefits .features {
  margin: 3rem 0;
}

.subscription-benefits .feature {
  background: rgba(255,255,255,0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white !important;
}

.subscription-benefits .feature h3 {
  color: white !important;
  font-weight: 600;
  margin-bottom: 1rem;
}

.subscription-benefits .feature p {
  color: rgba(255,255,255,0.9) !important;
  line-height: 1.6;
}

.subscription-benefits .feature ul li {
  color: rgba(255,255,255,0.9) !important;
}

.subscription-benefits .feature .icon {
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  color: #1a1a2e !important;
}

.subscription-benefits .feature::before {
  background: linear-gradient(90deg, #ffd700, #ffed4a);
}

.subscription-benefits .feature .icon {
  background: linear-gradient(135deg, #ffd700, #ffed4a);
}

.subscription-benefits .feature h3,
.subscription-benefits .feature p {
  color: white;
}

.pricing-box {
  background: rgba(255,255,255,0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  margin: 3rem auto;
  max-width: 300px;
  border: 1px solid rgba(255,255,255,0.2);
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: #ffd700;
}

.price-subtitle {
  font-size: 1rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.btn-subscription {
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  color: #1a1a2e;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255,215,0,0.3);
  margin: 2rem 0 1rem;
}

.btn-subscription:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255,215,0,0.4);
  color: #1a1a2e;
  text-decoration: none;
}

.subscription-guarantee {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 1rem;
}

/* ===== CALL TO ACTION SECTION ===== */
.cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white !important;
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta * {
  color: white !important;
}

.cta h1, .cta h2, .cta h3, .cta h4, .cta h5, .cta h6 {
  color: white !important;
}

.cta p, .cta div, .cta span {
  color: rgba(255,255,255,0.95) !important;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.1);
  z-index: 1;
}

.cta .container {
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  line-height: 1.2;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
  background: var(--card-bg-color);
  color: var(--primary-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 2px solid var(--primary-color);
  line-height: 1.4;
}

.btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,119,204,0.3);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,119,204,0.4);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  text-decoration: none;
  color: var(--primary-color);
}

.hero .btn {
  background: rgba(255,255,255,0.1);
  color: white;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.4);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.hero .btn:hover {
  background: rgba(255,255,255,0.2);
  color: white;
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.cta .btn {
  background: rgba(255,255,255,0.95);
  color: #0077cc !important;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-weight: 700;
  text-shadow: none;
  border: 2px solid transparent;
  font-size: 1.1rem;
}

.cta .btn:hover {
  background: white;
  color: #0066b3 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.3);
  border-color: rgba(255,255,255,0.1);
  text-decoration: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 0;
  }
  
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    min-width: auto;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-image {
    min-width: auto;
  }
  
  .hero-main-image {
    transform: none;
  }
  
  .features {
    grid-template-columns: 1fr;
  }
  
  .comparison,
  .difference {
    grid-template-columns: 1fr;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .subscription-section {
    padding: 4rem 0;
  }
  
  /* Value proposition responsive adjustments */
  .value-title {
    font-size: 2.2rem;
  }
  
  .value-breakdown {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Industry validation responsive */
  .industry-validation {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .validation-number {
    font-size: 2rem;
  }
  
  /* Professional benefits responsive */
  .professional-benefits {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .benefit-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  /* ROI conclusion responsive */
  .roi-conclusion {
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
  }
  
  .roi-calculator {
    padding: 2rem 1.5rem;
  }
  
  .roi-grid {
    grid-template-columns: 1fr;
  }
  
  .roi-calculator {
    padding: 2rem 1.5rem;
  }
  
  .btn-value {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  /* Workflow transformation responsive */
  .workflow-comparison {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .workflow-card {
    padding: 2rem 1.5rem;
  }
  
  .workflow-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .workflow-header h3 {
    font-size: 1.5rem;
  }
  
  .workflow-metrics {
    flex-direction: column;
    gap: 1rem;
  }
  
  .metric-item {
    min-width: auto;
  }
  
  .metric-value {
    font-size: 1.5rem;
  }
  
  .workflow-challenges li,
  .workflow-benefits li {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 1rem;
  }
  
  .challenge-icon,
  .benefit-icon {
    margin-bottom: 0.5rem;
  }
  
  .transformation-cta {
    padding: 2.5rem 1.5rem;
  }
  
  .cta-content h3 {
    font-size: 1.8rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .btn-transformation {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for better accessibility */
.btn:focus,
button:focus,
a:focus {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: 4px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --text-color: #000000;
    --muted-text-color: #2d3748;
    --card-bg-color: #ffffff;
    --border-color: #2d3748;
    --primary-color: #0056b3;
    --secondary-color: #007bff;
  }
  
  .feature,
  .pricing-card {
    border: 2px solid var(--border-color);
  }
  
  .btn {
    border: 2px solid var(--primary-color);
    font-weight: 700;
  }
}
