/* Startup OS Marketing Website Styles */
/* Matching Future Forward Design System from Dashboard */

/* === CSS CUSTOM PROPERTIES === */
:root {
  /* Future Forward Light Theme Colors */
  --bg-primary: #F8FAFC;
  --bg-secondary: #FFFFFF;
  --bg-tertiary: #F1F5F9;
  --text-primary: #242323;
  --text-secondary: #c4c4c4;
  --text-muted: #494949;
  --text-inverse: #FFFFFF;
  --accent-primary: #4e9a69;
  --accent-secondary: #059669;
  --border-color: #E2E8F0;
  --border-light: #CBD5E1;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --shadow-light: rgba(0, 0, 0, 0.05);

  /* Semantic Colors */
  --color-success: #059669;
  --color-error: #DC2626;
  --color-warning: #D97706;
  --color-info: #2563EB;

  /* Typography Scale */
  --font-family-primary: 'Outfit', system-ui, sans-serif;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 32px;
  --font-size-4xl: 40px;
  --font-size-5xl: 48px;

  /* Spacing System */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  --spacing-4xl: 96px;

  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
  --border-radius: 8px;
  --border-radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 2px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 4px 8px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.06);
  --shadow-xl: 0 10px 25px rgba(0,0,0,0.15);
}

/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
  margin-bottom: var(--spacing-md);
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* === LAYOUT === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-4xl);
}

.section-title {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.section-description {
  font-size: var(--font-size-lg);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: var(--font-size-base);
  font-weight: 500;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-lg {
  padding: var(--spacing-lg) var(--spacing-xl);
  font-size: var(--font-size-lg);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-color);
}

.btn-outline:hover {
  background: var(--bg-secondary);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

/* === HEADER === */
.header {
  position: relative;
  
  left: 0;
  right: 0;
  height: var(--header-height);
  background: #0F172A;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(227, 227, 227, 0.1);
  z-index: 1000;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand .logo svg {
  height: 45px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}

.nav-link {
  color: #e3e3e3;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--accent-primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: var(--font-size-xl);
  color: #e3e3e3;
  cursor: pointer;
}

/* === HERO SECTION === */
.hero {
  /* padding: calc(var(--header-height) + 2rem) 0 0; */
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  min-height: 30vh;
  display: flex;
  align-items: center;
}

/* Full-width Hero Title Layout */
.hero .hero-badge {
  text-align: center;
  margin-bottom: 1rem;
}

.hero .hero-title {
  text-align: center;
  margin-bottom: 3rem;
  max-width: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 2rem;
  /* min-height: 650px; */
}

.hero-content {
  max-width: 580px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-image {
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
}

/* Features section spacing */
#features.features {
  padding-top: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--accent-primary);
  margin-bottom: var(--spacing-xl);
}

.hero-title {
  font-size: var(--font-size-5xl);
  font-weight: 800;
  margin-bottom: var(--spacing-xl);
  line-height: 1.1;
}

.hero-description {
  font-size: var(--font-size-lg);
  color: var(--text-muted);
  margin-bottom: var(--spacing-2xl);
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-3xl);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--spacing-2xl);
  flex-wrap: wrap;
}

.stat {
  text-align: left;
}

.stat-number {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: var(--spacing-xs);
}

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

/* === PROBLEM SECTION === */
.problem {
  padding: var(--spacing-4xl) 0;
  background: var(--bg-secondary);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.problem-item {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--bg-primary);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
}

.problem-icon {
  font-size: var(--font-size-3xl);
  color: var(--color-error);
  margin-bottom: var(--spacing-lg);
}

.problem-item h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-md);
}

.problem-item p {
  color: var(--text-muted);
  margin: 0;
}

/* === SOLUTION SECTION === */
.solution {
  padding: var(--spacing-4xl) 0;
  background: var(--bg-primary);
}

.journey-map {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-md);
}

.journey-step.active .step-number {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.step-content h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-xs);
}

.step-content p {
  color: var(--text-muted);
  font-size: var(--font-size-sm);
  margin: 0;
}

.journey-arrow {
  color: var(--accent-primary);
  font-size: var(--font-size-xl);
}

/* === FEATURES SECTION === */
.features {
  padding: var(--spacing-4xl) 0;
  background: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-2xl);
}

.feature-category {
  padding: var(--spacing-2xl);
  background: var(--bg-primary);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.category-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.category-icon {
  font-size: var(--font-size-3xl);
  color: var(--accent-primary);
}

.category-header h3 {
  font-size: var(--font-size-2xl);
  margin: 0;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-light);
}

.feature-item i {
  color: var(--color-success);
  font-size: var(--font-size-base);
  margin-left: 1rem;
}

.feature-item span {
  font-weight: 500;
}

/* === PLATFORM SECTION === */
.platform {
  padding: var(--spacing-4xl) 0;
  background: var(--bg-primary);
}

.platform-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-2xl);
}

.platform-feature {
  display: flex;
  gap: var(--spacing-lg);
  padding: var(--spacing-xl);
  background: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

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

.feature-content h3 {
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-xl);
}

.feature-content p {
  color: var(--text-muted);
  margin: 0;
}

/* === COMPARISON SECTION === */
.comparison {
  padding: var(--spacing-4xl) 0;
  background: var(--bg-secondary);
}

.comparison-table {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--spacing-2xl);
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.comparison-column {
  padding: var(--spacing-2xl);
  background: var(--bg-primary);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
}

.comparison-column h3 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  font-size: var(--font-size-2xl);
}

.stack-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-light);
}

.tool-name {
  font-weight: 500;
}

.tool-price {
  font-weight: 600;
  color: var(--color-error);
}

.stack-total {
  padding: var(--spacing-md);
  background: var(--color-error);
  color: white;
  border-radius: var(--border-radius);
  text-align: center;
  margin: var(--spacing-lg) 0;
}

.stack-problems,
.startup-os-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.problem-point,
.benefit-point {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: var(--font-size-sm);
}

.problem-point i {
  color: var(--color-error);
}

.benefit-point i {
  color: var(--color-success);
}

.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--font-size-lg);
  box-shadow: var(--shadow-lg);
}

.startup-os {
  border: 2px solid var(--accent-primary);
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.startup-os-features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.feature-check {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-sm);
}

.feature-check i {
  color: var(--color-success);
  font-size: var(--font-size-base);
}

.startup-os-price {
  text-align: center;
  padding: var(--spacing-lg);
  background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
  color: white;
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-lg);
}

.startup-os-price strong {
  display: block;
  font-size: var(--font-size-2xl);
  font-weight: 700;
}

.startup-os-price small {
  font-size: var(--font-size-sm);
  opacity: 0.9;
}

/* === CTA SECTION === */
.cta {
  padding: var(--spacing-4xl) 0;
  background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta h2 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--spacing-lg);
}

.cta p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-2xl);
  opacity: 0.9;
}

.cta-actions {
  margin-bottom: var(--spacing-xl);
}

.cta .btn-primary {
  background: white;
  color: var(--accent-primary);
}

.cta .btn-primary:hover {
  background: var(--bg-primary);
}

.cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  font-size: var(--font-size-sm);
  opacity: 0.9;
}

/* === FOOTER === */
.footer {
  padding: var(--spacing-4xl) 0 var(--spacing-xl);
  background: #0F172A;
  border-top: 1px solid rgba(227, 227, 227, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.footer-brand {
  grid-column: span 1;
}

.footer-brand .logo svg {
  height: 40px;
  width: auto;
  margin-bottom: var(--spacing-md);
}

.footer-brand p {
  color: #e3e3e3;
  font-size: var(--font-size-sm);
}

.footer-links {
  grid-column: span 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

.footer-column h4 {
  font-size: var(--font-size-base);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  color: #e3e3e3;
}

.footer-column a {
  display: block;
  color: #e3e3e3;
  text-decoration: none;
  font-size: var(--font-size-sm);
  margin-bottom: var(--spacing-sm);
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--accent-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-xl);
  border-top: 1px solid rgba(227, 227, 227, 0.1);
}

.footer-bottom p {
  color: #e3e3e3;
  font-size: var(--font-size-sm);
  margin: 0;
}

.footer-social {
  display: flex;
  gap: var(--spacing-md);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(227, 227, 227, 0.1);
  border: 1px solid rgba(227, 227, 227, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e3e3e3;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: var(--accent-primary);
  color: white;
  border-color: var(--accent-primary);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + var(--spacing-2xl)) 0 var(--spacing-2xl);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    min-height: auto;
    text-align: center;
  }

  .hero-content {
    order: 1;
    max-width: 100%;
  }

  .hero-visual {
    order: 2;
  }

  .hero-title {
    font-size: var(--font-size-4xl);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-stats {
    gap: var(--spacing-lg);
    justify-content: center;
  }

  .stat {
    text-align: center;
  }
  
  .journey-map {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .journey-arrow {
    transform: rotate(90deg);
  }
  
  .comparison-table {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .vs-divider {
    order: 2;
  }
  
  .startup-os {
    order: 3;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-links {
    grid-column: span 1;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-md);
  }
  
  .hero-title {
    font-size: var(--font-size-3xl);
  }
  
  .section-title {
    font-size: var(--font-size-3xl);
  }
  
  .platform-feature {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* === FAQ SECTION STYLES === */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
    line-height: 1.4;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-item h3 {
        font-size: 18px;
    }
}

/* Demo Forms Section */
.demo-forms-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.demo-forms-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.demo-form-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.demo-form-header {
    text-align: center;
    margin-bottom: 25px;
}

.demo-form-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.demo-form-header p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.demo-form-embed {
    min-height: 300px;
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.form-placeholder i {
    font-size: 48px;
    color: #059669;
    margin-bottom: 15px;
}

.form-placeholder p {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
}

.form-placeholder small {
    color: #059669;
    font-weight: 500;
    font-size: 12px;
}

.demo-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.demo-cta p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .demo-forms-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .demo-form-embed {
        min-height: 250px;
    }

    .demo-form-item {
        padding: 20px;
    }
}

/* Widget Types / Use Cases Section */
.widget-types {
    padding: 80px 0;
    background: #f8f9fa;
}

.widget-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.widget-type-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(5, 150, 105, 0.1);
    position: relative;
    overflow: hidden;
}

.widget-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    border-color: rgba(5, 150, 105, 0.2);
}

.widget-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #059669 0%, #4e9a69 100%);
}

.widget-type-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #059669 0%, #4e9a69 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

.widget-type-icon i {
    color: white;
    font-size: 28px;
}

.widget-type-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
    line-height: 1.2;
}

.widget-type-content p {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 16px;
}

.widget-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-features li {
    padding: 10px 0;
    color: #555;
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.widget-features li:hover {
    color: #059669;
}

.widget-features li:before {
    content: '✓';
    color: #059669;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 16px;
    top: 9px;
}

/* Mobile responsive improvements */
@media (max-width: 768px) {
    .widget-types-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .widget-type-card {
        padding: 25px;
        border-radius: 16px;
    }

    .widget-type-content h3 {
        font-size: 22px;
    }

    .widget-type-content p {
        font-size: 15px;
    }

    .widget-features li {
        padding: 8px 0;
        font-size: 14px;
    }
}

/* Mid CTA Section */
.mid-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #059669 0%, #4e9a69 100%);
    text-align: center;
}

.mid-cta-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.3;
}

.mid-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 500;
}

.mid-cta .btn {
    font-size: 18px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.mid-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.mid-cta .btn-primary {
    background: white;
    color: #059669;
    border: none;
}

.mid-cta .btn-primary:hover {
    background: #f8f9fa;
}

.mid-cta .btn i {
    margin-right: 8px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .mid-cta {
        padding: 40px 0;
    }

    .mid-cta-content h3 {
        font-size: 24px;
    }

    .mid-cta-content p {
        font-size: 16px;
    }

    .mid-cta .btn {
        font-size: 16px;
        padding: 14px 28px;
    }
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: #fff5f5;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.problem-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    border-left: 4px solid #ef4444;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: #ef4444;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.problem-icon i {
    color: white;
    font-size: 24px;
}

.problem-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.problem-item p {
    color: #666;
    line-height: 1.6;
}

/* Solution Overview Section */
.solution-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-module {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    transition: transform 0.3s ease;
    border-top: 4px solid #059669;
}

.solution-module:hover {
    transform: translateY(-5px);
}

.module-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #059669 0%, #4e9a69 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.module-icon i {
    color: white;
    font-size: 24px;
}

.solution-module h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.solution-module p {
    color: #666;
    font-size: 14px;
}

.solution-cta {
    text-align: center;
    margin-top: 40px;
}

/* Tool Consolidation Benefits */
.consolidation-benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    margin-top: 50px;
    align-items: start;
}

.comparison-side {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.comparison-side.scattered {
    border-top: 4px solid #ef4444;
}

.comparison-side.unified {
    border-top: 4px solid #059669;
}

.comparison-side h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.comparison-side h3 i {
    margin-right: 10px;
}

.tools-list, .platform-features {
    margin-bottom: 30px;
}

.tool-item, .feature-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
}

.tool-item {
    color: #666;
}

.feature-item {
    color: #059669;
    font-weight: 500;
}

.problems-list .problem {
    padding: 8px 0;
    color: #ef4444;
    font-size: 14px;
}

.benefits-list .benefit {
    padding: 8px 0;
    color: #059669;
    font-size: 14px;
    font-weight: 500;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #666;
    padding: 20px;
}

/* Card CTAs */
.card-cta {
    margin-top: 20px;
    text-align: center;
}

.btn-sm {
    font-size: 14px;
    padding: 10px 20px;
}

/* Step Numbers for How It Works */
.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #059669 0%, #4e9a69 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .problem-grid,
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vs-divider {
        order: 2;
        padding: 15px;
        font-size: 20px;
    }

    .comparison-side.unified {
        order: 3;
    }

    .comparison-side {
        padding: 25px;
    }

    .problem-item,
    .solution-module {
        padding: 20px 15px;
    }
}
