/* ===== VARIABLES & RESET ===== */
:root {
  --primary-orange: #F95A2C;
  --primary-teal: #00C6AE;
  --secondary-teal: #1BB1BD;
  --dark: rgba(24, 25, 31, 1);
  --gray: rgba(89, 89, 89, 1);
  --gray-light: rgba(246, 246, 246, 1);
  --white: #ffffff;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

section {
  padding: 80px 0;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.navbar .logo img {
  transition: transform 0.3s ease;
}

.navbar .logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary-orange);
}

.nav-links .cta-btn-nav {
  background: var(--primary-orange);
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.nav-links .cta-btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(249, 90, 44, 0.3);
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background: var(--dark);
  margin: 5px;
  transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero-sales {
  margin-top: 80px;
  padding: 120px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  font-family: var(--font-secondary);
  letter-spacing: 2px;
}

.hero-sales h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 25px;
  font-family: var(--font-secondary);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

/* ===== CTA BUTTONS ===== */
.btn-cta-orange {
  display: inline-block;
  background: var(--primary-orange);
  color: white;
  padding: 18px 45px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(249, 90, 44, 0.3);
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-cta-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(249, 90, 44, 0.4);
  background: #ff6b3d;
}

.btn-cta-orange-large {
  display: inline-block;
  background: var(--primary-orange);
  color: white;
  padding: 22px 60px;
  border-radius: 35px;
  font-weight: 900;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  box-shadow: 0 15px 40px rgba(249, 90, 44, 0.4);
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-cta-orange-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(249, 90, 44, 0.5);
  background: #ff6b3d;
}

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

/* ===== SECTION HEADERS ===== */
.section-header-center {
  text-align: center;
  margin-bottom: 60px;
}

.section-header-center h2 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 15px;
  color: var(--dark);
  font-family: var(--font-secondary);
}

.section-header-center p,
.subtitle {
  font-size: 1.2rem;
  color: var(--gray);
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
  background: var(--white);
  text-align: center;
}

.problem-section h2 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 15px;
  font-family: var(--font-secondary);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.problem-card {
  background: var(--gray-light);
  padding: 35px 25px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.problem-card i {
  font-size: 3rem;
  color: #e74c3c;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 700;
}

/* ===== ABOUT YOANN ===== */
.about-yoann {
  background: var(--gray-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.yoann-img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-text-section h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  font-family: var(--font-secondary);
}

.about-text-section h3 {
  color: var(--primary-orange);
  margin-bottom: 25px;
  font-size: 1.4rem;
}

.about-text-section p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.results-list {
  margin-top: 30px;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-weight: 600;
}

.result-item i {
  color: var(--primary-teal);
  font-size: 1.5rem;
}

/* ===== PLAN SECTION ===== */
.plan-section {
  background: var(--white);
}

.plan-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  background: var(--gray-light);
  padding: 35px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.step-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-orange);
  box-shadow: 0 15px 40px rgba(249, 90, 44, 0.15);
}

.step-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-orange);
  margin-bottom: 15px;
  font-family: var(--font-secondary);
}

.step-icon {
  font-size: 3rem;
  color: var(--primary-teal);
  margin-bottom: 20px;
}

.step-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 700;
}

/* ===== SUPPORT SECTION ===== */
.support-section {
  background: var(--gray-light);
  text-align: center;
}

.support-section h2 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 15px;
  font-family: var(--font-secondary);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.support-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.support-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.support-card i {
  font-size: 3.5rem;
  color: var(--primary-orange);
  margin-bottom: 20px;
}

.support-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pricing-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 3px solid transparent;
}

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

.pricing-card.featured {
  border-color: var(--primary-orange);
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(249, 90, 44, 0.2);
}

.badge-popular {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-orange);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.pricing-header h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 10px;
  font-family: var(--font-secondary);
}

.pricing-subtitle {
  color: var(--gray);
  margin-bottom: 25px;
}

.pricing-price {
  text-align: center;
  margin: 30px 0;
}

.price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-orange);
  display: block;
  font-family: var(--font-secondary);
}

.period {
  font-size: 0.9rem;
  color: var(--gray);
}

.pricing-features {
  list-style: none;
  margin: 30px 0;
}

.pricing-features li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features i {
  color: var(--primary-teal);
  font-size: 1.2rem;
}

.btn-pricing,
.btn-pricing-featured {
  display: block;
  text-align: center;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 25px;
}

.btn-pricing {
  background: var(--gray-light);
  color: var(--dark);
  border: 2px solid var(--dark);
}

.btn-pricing:hover {
  background: var(--dark);
  color: white;
}

.btn-pricing-featured {
  background: var(--primary-orange);
  color: white;
  box-shadow: 0 10px 30px rgba(249, 90, 44, 0.3);
}

.btn-pricing-featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(249, 90, 44, 0.4);
}

/* ===== DELIVERABLES ===== */
.deliverables-section {
  background: var(--gray-light);
  text-align: center;
}

.deliverables-section h2 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 15px;
  font-family: var(--font-secondary);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
  text-align: left;
}

.deliverable-item {
  background: white;
  padding: 20px 25px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.deliverable-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.deliverable-item i {
  color: var(--primary-teal);
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--gray-light);
  padding: 35px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

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

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-header h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.testimonial-header p {
  color: var(--gray);
  font-size: 0.9rem;
}

.testimonial-text {
  margin: 20px 0;
  font-size: 1.05rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-results {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.result-badge {
  background: var(--primary-orange);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--gray-light);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--gray-light);
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.faq-question i {
  color: var(--primary-orange);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 30px 25px;
  line-height: 1.8;
  color: var(--gray);
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  padding: 100px 0;
}

.final-cta h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  font-family: var(--font-secondary);
}

.final-cta p {
  font-size: 1.3rem;
  margin-bottom: 40px;
}

/* ===== CONTACT FORM ===== */
.contact-section {
  background: var(--white);
  padding: 80px 0 100px;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

.involveme_embed {
  min-height: 600px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer h4 {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: white;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--primary-orange);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    right: -100%;
    top: 70px;
    flex-direction: column;
    background: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 40px 0;
  }

  .nav-links.active {
    right: 0;
  }

  .burger {
    display: block;
  }

  .hero-sales h1 {
    font-size: 2.5rem;
  }

  .problems-grid,
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .hero-sales {
    padding: 80px 0;
  }

  .hero-sales h1 {
    font-size: 2rem;
  }

  .section-header-center h2,
  .problem-section h2,
  .support-section h2,
  .deliverables-section h2 {
    font-size: 2rem;
  }

  section {
    padding: 50px 0;
  }

  .problems-grid,
  .plan-steps,
  .support-grid,
  .deliverables-grid {
    grid-template-columns: 1fr;
  }
}
