/* ================================
   STRIKESALES - STYLES LANDING PAGE
   ================================ */

/* Import des styles globaux */
@import url('styles.css');

/* === HERO SECTION === */
.hero {
  padding-top: 11rem;
  padding-bottom: 9rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

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

.hero h1 {
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-block;
  padding: 1.25rem 3rem;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--blue-600) 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(14, 165, 233, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2.5rem;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(14, 165, 233, 0.5);
}

.hero-target {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 1.5rem;
}

.hero-proof {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-blue);
  transition: all 0.3s ease;
  margin-top: 2.5rem;
}

.hero-chip:hover {
  background: rgba(14, 165, 233, 0.15);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
}

.section-transition {
  height: 140px;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0) 0%,
    rgba(15, 23, 42, 0.6) 40%,
    rgba(22, 32, 54, 1) 100%
  );
}

.section-intro {
  text-align: center;
  font-size: 1rem;
  color: var(--text-secondary);
  opacity: 0.7;
  margin-bottom: 2rem;
}

/* === SOLUTION SECTION === */
.solution {
  background: var(--dark-850);
}

.solution h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.solution-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--blue-600) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.step h3 {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.step p {
  color: var(--text-secondary);
}

.step::after {
  content: '→';
  position: absolute;
  top: 30px;
  right: -1.5rem;
  font-size: 2rem;
  color: var(--primary-blue);
  opacity: 0.3;
}

.step:last-child::after {
  display: none;
}

/* === REAL PROBLEM SECTION === */
.real-problem {
  background: var(--dark-bg);
  position: relative;
}

.real-problem h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.real-problem-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.real-problem-intro p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.real-problem-intro .highlight {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.real-problem-bullets {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.real-problem-bullet {
  padding: 1.5rem 2rem;
  background: var(--dark-850);
  border-left: 4px solid var(--primary-blue);
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.real-problem-bullet:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.2);
}

.real-problem-bullet p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin: 0;
  font-weight: 500;
}

.real-problem-conclusion {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%);
  border: 2px solid var(--primary-blue);
  border-radius: 12px;
}

.real-problem-conclusion p {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0;
}

/* === LEAD MAGNET SECTION === */
.lead-magnet {
  background: var(--dark-850);
  position: relative;
  overflow: hidden;
}

.lead-magnet::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

.lead-magnet-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.lead-magnet h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead-magnet-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.upload-box {
  background: var(--dark-bg);
  border: 3px dashed var(--primary-blue);
  border-radius: 16px;
  padding: 4rem 2rem;
  margin-bottom: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.upload-box:hover {
  background: var(--dark-850);
  border-color: #38bdf8;
  box-shadow: 0 10px 40px rgba(14, 165, 233, 0.2);
}

.upload-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

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

.upload-hint {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

input[type="file"] {
  display: none;
}

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

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

.form-group input {
  width: 100%;
  padding: 1rem;
  background: var(--dark-bg);
  border: 2px solid var(--dark-700);
  color: var(--text-light);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.submit-btn {
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--blue-600) 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.5);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}

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

.benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-text {
  color: var(--text-secondary);
}

/* === FEATURES SECTION === */
.features {
  background: var(--dark-bg);
}

.features h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  background: var(--dark-850);
  border-radius: 12px;
  border: 1px solid var(--dark-700);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

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

/* === TARGET SECTION === */
.target {
  background: var(--dark-bg);
}

.target h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.target-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 3rem;
}

.target-question {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 1.5rem;
  background: rgba(14, 165, 233, 0.1);
  border-left: 4px solid var(--primary-blue);
  border-radius: 8px;
}

.target-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.target-column h3 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.target-column.for h3 {
  color: var(--success);
}

.target-column.not-for h3 {
  color: var(--danger);
}

.target-list {
  list-style: none;
}

.target-list li {
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: var(--dark-800);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s ease;
  color: var(--text-light);
}

.target-list li:hover {
  transform: translateX(5px);
}

.target-list li::before {
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.target-column.for li::before {
  content: '✓';
  color: var(--success);
}

.target-column.not-for li::before {
  content: '✗';
  color: var(--danger);
}

.target-punchline {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 2rem;
  background: var(--dark-800);
  border: 2px solid var(--primary-blue);
  border-radius: 12px;
}

.target-punchline p {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

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

/* === PROOF SECTION === */
.proof {
  background: var(--dark-850);
}

.proof h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.proof-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.proof-card {
  padding: 2.5rem;
  background: var(--dark-850);
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--dark-700);
}

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

.proof-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.proof-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* === TESTIMONIALS SECTION === */
.testimonials {
  background: var(--dark-bg);
  position: relative;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
}

.testimonial-card {
  background: var(--dark-bg);
  border: 1px solid var(--dark-700);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.2);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 5rem;
  color: var(--primary-blue);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.testimonial-highlight {
  color: var(--text-light);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-style: italic;
  padding-top: 1rem;
  border-top: 1px solid var(--dark-700);
  position: relative;
  z-index: 1;
}

.testimonials-disclaimer {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-style: italic;
  opacity: 0.7;
}

/* === ROI SECTION === */
.roi {
  background: var(--dark-850);
  position: relative;
}

.roi h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.roi-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.5rem;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin: 0 auto 3rem;
}

.roi-badge-wrapper {
  text-align: center;
  margin-bottom: 3rem;
}

.roi-examples {
  max-width: 900px;
  margin: 0 auto;
}

.roi-examples h3 {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

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

.example-card {
  background: var(--dark-bg);
  border: 1px solid var(--dark-700);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.example-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-5px);
}

.example-card.highlighted {
  border-color: var(--success);
  background: rgba(16, 185, 129, 0.05);
}

.example-deal {
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.example-calc {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.example-calc strong {
  color: var(--primary-blue);
  font-size: 1.3rem;
}

.example-card.highlighted .example-calc strong {
  color: var(--success);
}

.example-result {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.roi-conclusion {
  text-align: center;
  padding: 2rem;
  background: var(--dark-bg);
  border-left: 4px solid var(--primary-blue);
  border-radius: 12px;
}

.roi-conclusion p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin: 0;
}

.roi-conclusion strong {
  color: var(--primary-blue);
}

/* === GUARANTEE SECTION === */
.guarantee {
  background: var(--dark-bg);
  position: relative;
}

.guarantee h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.guarantee-box {
  max-width: 800px;
  margin: 0 auto;
  background: var(--dark-bg);
  border: 2px solid var(--primary-blue);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
}

.guarantee-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.guarantee-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.guarantee-note {
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: italic;
  padding-top: 1.5rem;
  border-top: 1px solid var(--dark-700);
}

/* === PRICING SECTION === */
.pricing {
  background: var(--dark-bg);
  position: relative;
}

.pricing h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 2rem;
}

.pricing-decision {
  max-width: 800px;
  margin: 0 auto 4rem;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%);
  border: 2px solid var(--primary-blue);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  animation: subtle-pulse 3s ease-in-out infinite;
}

@keyframes subtle-pulse {
  0%, 100% { 
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.2);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 6px 30px rgba(14, 165, 233, 0.3);
    transform: scale(1.01);
  }
}

.decision-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.decision-icon {
  font-size: 1.5rem;
}

.decision-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
}

.decision-comparison {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.decision-comparison strong {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.15rem;
}

.decision-countdown {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-top: 1rem;
  border-top: 1px solid rgba(14, 165, 233, 0.2);
}

.decision-countdown strong {
  color: var(--primary-blue);
}

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

.pricing-card {
  background: var(--dark-850);
  border: 2px solid var(--dark-700);
  border-radius: 16px;
  padding: 3rem;
  position: relative;
  transition: all 0.3s ease;
}

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

.pricing-card.featured {
  border-color: var(--primary-blue);
  box-shadow: 0 20px 60px rgba(14, 165, 233, 0.3);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 25px 70px rgba(14, 165, 233, 0.4);
}

.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--blue-600) 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.pricing-badge.secondary {
  background: var(--dark-700);
  color: var(--text-secondary);
}

.pricing-card h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.pricing-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  min-height: 40px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1;
}

.pricing-card.featured .price-amount {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-period {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-left: 0.5rem;
}

.pricing-lock {
  background: rgba(14, 165, 233, 0.1);
  border-left: 3px solid var(--primary-blue);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  color: var(--primary-blue);
}

.pricing-lock.secondary {
  background: rgba(148, 163, 184, 0.1);
  border-left-color: var(--text-secondary);
  color: var(--text-secondary);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

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

.pricing-features .check {
  color: var(--success);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.pricing-features .check.secondary {
  color: var(--text-secondary);
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 1.25rem;
  background: var(--dark-700);
  color: var(--text-light);
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--dark-700);
}

.pricing-cta:hover {
  background: var(--dark-bg);
  transform: translateY(-2px);
}

.pricing-cta.featured {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--blue-600) 100%);
  color: white;
  border-color: var(--primary-blue);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-cta.featured:hover {
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.5);
}

.pricing-note {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(14, 165, 233, 0.05);
  border-radius: 6px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
  text-align: center;
}

.pricing-note strong {
  color: var(--primary-blue);
}

.pricing-note.secondary {
  background: rgba(148, 163, 184, 0.05);
}

.pricing-value {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
}

.pricing-value h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

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

.value-item {
  padding: 2rem;
  background: var(--dark-850);
  border-radius: 12px;
  border: 1px solid var(--dark-700);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.pricing-faq {
  max-width: 800px;
  margin: 0 auto;
}

.pricing-faq h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: var(--dark-850);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--dark-700);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.1);
}

.faq-question {
  color: var(--text-light);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === FINAL CTA === */
.final-cta {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--dark-bg) 100%);
  text-align: center;
  padding: 8rem 0;
}

.final-cta h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.final-cta p {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* === STATUS MESSAGE === */
.status-message {
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  display: none;
  animation: fadeInUp 0.3s ease-out;
}

.status-message.success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--success);
  color: var(--success);
  display: block;
}

.status-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid var(--danger);
  color: var(--danger);
  display: block;
}

.status-message.loading {
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid var(--primary-blue);
  color: var(--primary-blue);
  display: block;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .hero-chip {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .solution {
    padding-top: 5rem;
  }

  .solution-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step::after {
    display: none;
  }

  .target-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

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

  .value-grid {
    grid-template-columns: 1fr;
  }

  .price-amount {
    font-size: 3rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .examples-grid {
    grid-template-columns: 1fr;
  }

  .pricing-decision {
    padding: 1.5rem;
  }

  .decision-comparison {
    font-size: 1rem;
  }

  .decision-countdown {
    font-size: 0.8rem;
  }

  section {
    padding: 4rem 0;
  }
}
