/* Content-Monster Marketing Website - Styles */

:root {
  --cm-primary: #e91e63;
  --cm-primary-hover: #d81b60;
  --cm-gradient: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
  --bg-light: #f8f9fa;
  --bg-dark: #1a1a2e;
  --card-bg: #ffffff;
  --card-border: #eee;
  --text-dark: #333;
  --text-muted: #666;
  --text-light: #888;
  --success: #4caf50;
}

/* ============================================
   BASE STYLES
   ============================================ */

* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  background: var(--bg-light);
  color: var(--text-dark);
  margin: 0;
  padding: 0;
}

a {
  color: var(--cm-primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--cm-primary-hover);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--cm-primary) !important;
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text-muted) !important;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--cm-primary) !important;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-primary {
  background: var(--cm-gradient);
  color: white !important;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: white !important;
}

/* Mobile Menu */
.navbar-toggler {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .navbar-toggler {
    display: block;
  }
  
  .navbar-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .navbar-nav.active {
    display: flex;
  }
  
  .navbar-actions {
    display: none;
  }
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  padding: 0.5rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s;
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  color: var(--text-dark);
  transition: all 0.2s;
}

.dropdown-item:hover {
  background: var(--cm-primary);
  color: white !important;
}

.dropdown-item i {
  color: var(--cm-primary);
  width: 20px;
}

.dropdown-item:hover i {
  color: white;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--cm-gradient);
  color: white;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.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 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: 50px 50px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-badge {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
  display: inline-block;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-image {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.btn-hero {
  background: white;
  color: var(--cm-primary) !important;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  color: var(--cm-primary) !important;
}

.btn-hero-outline {
  background: transparent;
  color: white !important;
  border: 2px solid white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  margin-left: 1rem;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-hero-outline:hover {
  background: white;
  color: var(--cm-primary) !important;
}

.trust-badges {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: 5rem 0;
}

.section-light {
  background: white;
}

.section-badge {
  background: var(--cm-gradient);
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

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

/* ============================================
   FEATURE CARDS
   ============================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--card-border);
  transition: all 0.3s;
}

.feature-card:hover {
  box-shadow: 0 10px 40px rgba(233,30,99,0.1);
  transform: translateY(-5px);
  border-color: var(--cm-primary);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--cm-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

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

.feature-card h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================
   FEATURE ROWS
   ============================================ */

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--card-border);
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

@media (max-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .feature-row.reverse {
    direction: ltr;
  }
}

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

.feature-content .lead {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.feature-list li i {
  color: var(--success);
  margin-top: 0.3rem;
}

.feature-screenshot {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.btn-feature {
  color: var(--cm-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-feature:hover {
  gap: 0.8rem;
}

/* ============================================
   PRICING
   ============================================ */

.pricing-hero {
  background: var(--cm-gradient);
  color: white;
  padding: 5rem 0 3rem;
  margin-top: 60px;
  text-align: center;
}

.pricing-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.free-banner {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  max-width: 600px;
  margin: 2rem auto 0;
  text-align: center;
}

.free-banner h4 {
  margin: 0 0 0.5rem 0;
}

.free-banner p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.95rem;
}

.trial-banner {
  background: #fff3e0;
  border: 2px solid #ff9800;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trial-banner i {
  font-size: 2rem;
  color: #ff9800;
}

.trial-banner-content h4 {
  margin: 0 0 0.3rem 0;
  color: var(--text-dark);
}

.trial-banner-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.trial-banner-content a {
  color: var(--cm-primary);
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--card-border);
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border: 2px solid var(--cm-primary);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cm-gradient);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.plan-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.plan-price {
  margin-bottom: 1.5rem;
}

.plan-price .amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--cm-primary);
}

.plan-price .period {
  color: var(--text-light);
  font-size: 0.9rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features li i {
  color: var(--success);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.pricing-features li.disabled {
  color: #bbb;
}

.pricing-features li.disabled i {
  color: #ddd;
}

.pricing-features li strong {
  color: var(--cm-primary);
}

.pricing-features .feature-divider {
  border-top: 1px solid #f0f0f0;
  margin: 0.5rem 0;
  padding-top: 0.75rem !important;
}

.btn-plan {
  width: 100%;
  padding: 0.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-align: center;
  display: block;
  text-decoration: none;
}

.btn-plan.primary {
  background: var(--cm-gradient);
  color: white !important;
}

.btn-plan.primary:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.btn-plan.outline {
  background: white;
  color: var(--cm-primary) !important;
  border: 2px solid var(--cm-primary);
}

.btn-plan.outline:hover {
  background: var(--cm-primary);
  color: white !important;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.comparison-table thead th {
  background: var(--bg-light);
  padding: 1.2rem 1rem;
  font-weight: 600;
  text-align: center;
  border-bottom: 1px solid var(--card-border);
}

.comparison-table thead th.featured {
  background: var(--cm-primary);
  color: white;
}

.comparison-table tbody td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--card-border);
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
}

.comparison-table tbody td.featured {
  background: rgba(233,30,99,0.03);
}

.comparison-table .category-row td {
  background: var(--bg-light);
  font-weight: 700;
  color: var(--cm-primary);
  text-align: left;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

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

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

.step-card {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cm-primary);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(233,30,99,0.1), rgba(233,30,99,0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto 1.5rem;
}

.step-icon i {
  font-size: 2rem;
  color: var(--cm-primary);
}

.step-card h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: var(--cm-gradient);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  opacity: 0.9;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* ============================================
   CONTACT FORM
   ============================================ */

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

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

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

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

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--cm-primary);
}

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

.btn-submit {
  background: var(--cm-gradient);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s;
}

.btn-submit:hover {
  opacity: 0.9;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--bg-dark);
  color: #888;
  padding: 3rem 0 1.5rem;
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #aaa;
}

.footer-links a:hover {
  color: var(--cm-primary);
}

.footer-heading {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

.footer-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.footer-badges span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-badges i {
  color: var(--cm-primary);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--cm-primary);
}

.faq-question i {
  transition: transform 0.3s;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  display: block;
}

/* ============================================
   UTILITIES
   ============================================ */

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-md-4, .col-md-6, .col-lg-6 {
  padding: 0 15px;
}

.col-md-4 {
  width: 33.333%;
}

.col-md-6, .col-lg-6 {
  width: 50%;
}

@media (max-width: 768px) {
  .col-md-4, .col-md-6, .col-lg-6 {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .btn-hero-outline {
    margin-left: 0;
    margin-top: 1rem;
    display: block;
    text-align: center;
  }
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

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