:root {
  --primary: #2D3561;
  --secondary: #4A5578;
  --dark: #1A1A2E;
  --light: #F5F7FA;
  --white: #FFFFFF;
  --text: #2D3748;
  --text-light: #718096;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--white);
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.logo-container {
  display: flex;
  align-items: center;
  z-index: 999;
}

.logo-container img {
  height: 85px;
  width: auto;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: var(--primary);
  transition: all 0.3s;
  border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

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

.nav-cta {
  background: #062f66;
  color: white !important;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: #062f66;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(45, 53, 97, 0.4);
  background: #062f66;
}

/* Hero Section */
/* Desktop */
.hero-website {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 7rem 5% 1.5rem;
  background: #ffffff;
}


/* Mobile */
@media (max-width: 768px) {
  .hero-website {
    padding: 7rem 5% 2rem;
    min-height: auto;
  }
}

.hero-content-website {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text-website h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.highlight-outline { 
    color: #062f66;
}


.hero-text-website p {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-buttons-website {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-image-mobile {
  display: none;
}

.hero-image-desktop {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-desktop img {
  width: 100%;
  max-width: 700px;
  height: auto;
}

.hero-image-desktop video,
.hero-image-mobile video {
  width: 100%;
  max-width: 700px;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 20px;
}

.hero-image-mobile video {
  max-width: 100%;
  border-radius: 15px;
}

.btn {
  padding: 1rem 2.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #062f66;
  color: white;
  box-shadow: 0 4px 15px rgba(45, 53, 97, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 53, 97, 0.4);
  background: #062f66;
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

/* Tabs Section */
.tabs-section {
  padding: 4rem 5%;
  background: var(--light);
}

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

.tabs-navigation {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  border-bottom: 2px solid #E9ECEF;
  overflow-x: auto;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 1rem 2rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--primary);
}

.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.section-title-center {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  color: var(--dark);
  margin-bottom: 1rem;
}

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

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card-site {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.feature-icon-site img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.feature-card-site h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.feature-card-site p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Pricing Table */
.pricing-table {
  margin-top: 3rem;
  overflow-x: auto;
}

.price-comparison {
  width: 100%;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-collapse: collapse;
}

.price-comparison thead th {
  background: var(--primary);
  color: white;
  padding: 2rem;
}

.feature-column {
  width: 40%;
  text-align: left;
}

.price-column {
  width: 30%;
  position: relative;
}

.price-column.featured {
  background: linear-gradient(135deg, rgba(45, 53, 97, 0.05), rgba(45, 53, 97, 0.02));
}

.price-header {
  text-align: center;
  padding: 1rem;
}

.popular-badge {
  background: #FFD700;
  color: var(--dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 1rem;
}

.price-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 1rem 0;
}

.price-comparison tbody tr {
  border-bottom: 1px solid #E9ECEF;
}

.price-comparison tbody td {
  padding: 1.5rem;
  text-align: center;
}

.price-comparison tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--dark);
}

.category-row td {
  background: var(--light);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--primary);
  padding: 1rem 1.5rem !important;
}

.check {
  color: #10B981;
  font-size: 1.5rem;
  font-weight: bold;
}

.cross {
  color: #EF4444;
  font-size: 1.5rem;
  font-weight: bold;
}

.cta-row {
  padding: 2rem !important;
}

/* Why Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

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

.why-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #062f66;
  margin-bottom: 1rem;
}

.why-card p {
  color: var(--text);
  line-height: 1.6;
}

/* Portfolio Section */
.portfolio-section {
  padding: 6rem 5%;
  background: white;
}

.section-label {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

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

.portfolio-item-site {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

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

.portfolio-image-site {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.portfolio-image-site img,
.portfolio-image-site video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-info-site {
  padding: 2rem;
}

.portfolio-tag-site {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(45, 53, 97, 0.1);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.portfolio-info-site h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.portfolio-info-site p {
  color: var(--text-light);
  line-height: 1.6;
}

.show-more-btn {
  display: none;
  margin: 3rem auto 0;
  padding: 1rem 3rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.show-more-btn:hover {
  background: #062f66;
  transform: translateY(-3px);
}

/* Comment ça marche */
.how-it-works-section {
  padding: 6rem 5%;
  background: #062f66;
  color: #062f66;
}

.section-title-center-white {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  color: white;
  margin-bottom: 3rem;
}

.phase-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.phase-slide {
  display: none;
}

.phase-slide.active {
  display: block;
  animation: fadeIn 0.5s;
}

.phase-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 3rem;
}

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

.step-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(45, 53, 97, 0.3);
  transition: all 0.3s;
  position: relative;
}

.step-card:hover {
  background: rgba(45, 53, 97, 0.15);
  border-color: var(--primary);
  transform: translateY(-10px);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 1.5rem auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.step-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.step-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.phase-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}

.phase-arrow:hover {
  background: var(--primary);
}

.phase-prev {
  left: -70px;
}

.phase-next {
  right: -70px;
}

.phase-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.phase-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.phase-dot.active {
  background: #ffffff;
  width: 40px;
  border-radius: 6px;
}

/* Autres Services */
.other-services-section {
  padding: 6rem 5%;
  background: var(--light);
}

.services-carousel {
  position: relative;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.services-slide {
  display: none;
}

.services-slide.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  animation: fadeIn 0.5s;
}

.service-card-carousel {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

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

.service-image-carousel {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.service-image-carousel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.service-card-carousel:hover .service-image-carousel img {
  transform: scale(1.1);
}

.service-card-carousel h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 0.5rem 0;
  padding: 0 2rem;
  padding-top: 1.5rem;
}

.service-card-carousel p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
  padding: 0 2rem 1.5rem 2rem;
  flex: 1;
}

.service-card-carousel .btn {
  margin: 0 2rem 2rem 2rem;
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  text-align: center;
  display: block;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #062f66;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}

.carousel-arrow:hover {
  background: #062f66;
}

.carousel-prev {
  left: -70px;
}

.carousel-next {
  right: -70px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  background: rgba(45, 53, 97, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: #062f66;
  width: 40px;
  border-radius: 6px;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

.mobile-dot {
  display: none;
}

@media (min-width: 769px) {
  .mobile-slide {
    display: none !important;
  }

  .mobile-service-dot {
    display: none !important;
  }

  .services-slide:nth-child(n+3) {
    display: none !important;
  }

  .carousel-dots .carousel-dot:nth-child(n+3) {
    display: none !important;
  }
}

/* CTA Section */
.cta-section {
  padding: 6rem 5%;
  background: var(--light);
}

.cta-box {
  background: #062f66;
  padding: 4rem;
  border-radius: 30px;
  text-align: center;
  color: white;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(45, 53, 97, 0.3);
}

.cta-box h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

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

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

.btn-white:hover {
  background: #f0f0f0;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

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

/* Footer */
.footer {
  background: #062f66;
  color: white;
  padding: 4rem 5% 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

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

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

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}

/* Responsive Desktop */
@media (max-width: 1024px) {
  .hero-content-website {
    grid-template-columns: 1fr;
  }

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

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

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  nav {
    padding: 1rem 5%;
  }

  .logo-container img {
    height: 70px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: center;
    padding: 100px 2rem 2rem;
    gap: 0;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
  }

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

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links > li > a {
    display: block;
    padding: 1rem 0;
    width: 100%;
    text-align: center;
  }

  .nav-cta {
    margin-top: 1rem;
    text-align: center;
    display: inline-block;
    width: auto;
  }

  .dropdown-menu {
    position: static;
    left: auto;
    right: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: auto;
    width: 100%;
    box-shadow: none;
    padding: 0;
    margin: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    background: #F8F9FA;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: none;
  }

  .nav-dropdown.active .dropdown-menu {
    display: grid;
  }

  .dropdown-column {
    padding: 1rem 0;
  }

  .dropdown-column-title {
    font-size: 0.75rem;
    padding: 0 1rem;
    text-align: left;
  }

  .dropdown-item {
    padding: 1rem;
    border-bottom: 1px solid #E9ECEF;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }

  .dropdown-item-content {
    text-align: left;
    flex: 1;
  }

  .dropdown-item-title {
    text-align: left;
  }

  .dropdown-item-desc {
    text-align: left;
  }

  .dropdown-item:hover {
    transform: none;
  }

  .hero-website {
    padding: 9rem 5% 3rem;
    min-height: auto;
  }

  .hero-content-website {
    grid-template-columns: 1fr;
    padding-top: 1rem;
  }

  .hero-text-website h1 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .hero-image-mobile {
    display: block !important;
    width: 100%;
    margin: 0 0 1.5rem 0;
  }

  .hero-image-mobile img {
    width: 100%;
    height: auto;
  }

  .hero-image-desktop {
    display: none !important;
  }

  .hero-text-website p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons-website {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .hero-buttons-website .btn {
    width: 100%;
    text-align: center !important;
  }

  .tabs-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    border-bottom: none;
    margin-bottom: 2rem;
  }

  .tab-btn {
    padding: 0.8rem 0.5rem;
    font-size: 0.75rem;
    border-bottom: none;
    background: white;
    border-radius: 10px;
    text-align: center !important;
    border: 2px solid #E9ECEF;
    white-space: normal;
    line-height: 1.2;
  }

  .tab-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
  }

  .benefits-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .benefit-card {
    margin: 0;
    width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .feature-card-site {
    margin: 0;
    width: 100%;
  }

  .tabs-section,
  .portfolio-section,
  .how-it-works-section,
  .other-services-section,
  .cta-section {
    padding: 3rem 5%;
  }

  .section-title-center,
  .section-title-center-white {
    font-size: 1.8rem;
  }

  .section-subtitle-center {
    font-size: 1rem;
  }

  .portfolio-grid-site {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .portfolio-item-site {
    margin: 0;
    width: 100%;
  }

  .hidden-mobile {
    display: none;
  }

  .show-more-btn {
    display: block;
    margin: 2rem auto 0;
  }

  .how-it-works-section {
    padding: 3rem 5%;
  }

  .phase-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

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

  .step-card {
    margin: 0;
    width: 100%;
  }

  .phase-arrow {
    display: none;
  }

  .phase-dots {
    margin-top: 2rem;
  }

  .other-services-section {
    padding: 3rem 5%;
  }

  .services-carousel {
    position: relative;
    padding: 0;
    margin: 2rem 0;
    width: 100%;
  }

  .services-slide {
    display: none !important;
    width: 100%;
    margin: 0;
  }

  .services-slide.active {
    display: block !important;
    width: 100%;
  }

  .service-card-carousel {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .service-image-carousel {
    height: 250px;
  }

  .carousel-arrow {
    position: absolute;
    top: auto;
    bottom: -80px;
    transform: none;
    background: var(--primary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  .carousel-arrow:hover {
    background: #062f66;
  }

  .carousel-prev {
    left: 0;
  }

  .carousel-next {
    right: 0;
  }

  .carousel-dots {
    margin-top: 5rem;
    position: relative;
  }

  .cta-section {
    padding: 3rem 5%;
  }

  .cta-box {
    padding: 2.5rem 1.5rem;
    margin: 0;
    width: 100%;
  }

  .cta-box h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .cta-box p {
    font-size: 1rem;
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
    text-align: center !important;
  }

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

  .price-comparison {
    display: block;
    overflow-x: auto;
  }

  .pricing-table {
    overflow-x: auto;
  }

  .tab-content {
    padding: 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-card {
    margin: 0;
    width: 100%;
  }
}

.phase-next-btn {
  display: none;
}

@media (max-width: 768px) {
  .phase-next-btn {
    display: block;
    margin: 2rem auto 0;
    padding: 1rem 3rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
  }

  .phase-next-btn:hover {
    background: #ffffff;
  }

  .phase-slide[data-phase="2"] .phase-next-btn {
    display: none;
  }

  .phase-dots {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .portfolio-item-site:nth-child(n+7) {
    display: none;
  }

  .show-more-btn {
    display: none !important;
  }

  .pricing-toggle {
    display: none !important;
  }

  .pricing-cards-container {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem;
  }

  .pricing-card {
    display: flex !important;
  }
}

@media (min-width: 769px) {
  .mobile-only {
    display: none !important;
  }

  .desktop-only {
    display: block !important;
  }

  .services-slide {
    display: none;
  }

  .services-slide.active {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .service-card-carousel {
    display: block;
  }

  .services-slide.mobile-slide {
    display: none !important;
  }

  .services-slide[data-slide="1"],
  .services-slide[data-slide="2"] {
    display: none;
  }

  .services-slide[data-slide="1"].active,
  .services-slide[data-slide="2"].active {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .services-slide[data-slide]:not([data-slide="1"]):not([data-slide="2"]) {
    display: none !important;
  }

  .carousel-dots .carousel-dot:nth-child(n+3) {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  .carousel-dots .carousel-dot {
    display: inline-block;
  }

  .carousel-dots .carousel-dot:nth-child(n+3) {
    display: inline-block;
  }
}

@media (min-width: 769px) {
  .mobile-dot {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .mobile-dot {
    display: inline-block !important;
  }
}

@media (max-width: 768px) {
  .services-slide.active {
    display: block !important;
    grid-template-columns: 1fr !important;
  }

  .service-card-carousel:nth-child(n+2) {
    display: none;
  }

  .phase-next-btn {
    display: block;
    margin: 2rem auto 0;
    padding: 1rem 3rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
  }

  .phase-slide[data-phase="2"] .phase-next-btn {
    display: none;
  }

  .phase-dots {
    display: none !important;
  }
}

.portfolio-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.portfolio-slide {
  display: none;
}

.portfolio-slide.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  animation: fadeIn 0.5s;
}

.portfolio-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #062f66;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}

.portfolio-arrow:hover {
  background: #062f66;
}

.portfolio-prev {
  left: -70px;
}

.portfolio-next {
  right: -70px;
}

.portfolio-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.portfolio-dot {
  width: 12px;
  height: 12px;
  background: rgba(45, 53, 97, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.portfolio-dot.active {
  background: #062f66;
  width: 40px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .portfolio-slide.active {
    display: block !important;
  }

  .portfolio-item-site:nth-child(n+4) {
    display: none;
  }

  .portfolio-item-site {
    margin-bottom: 2rem;
  }

  .portfolio-arrow {
    display: none;
  }

  .portfolio-dots {
    display: none;
  }
}

@media (max-width: 768px) {
  .mobile-slide {
    display: none;
  }

  .mobile-slide.active {
    display: block !important;
  }

  .mobile-service-dot {
    display: inline-block !important;
  }
}

@media (min-width: 769px) {
  .mobile-slide {
    display: none !important;
  }

  .mobile-service-dot {
    display: none !important;
  }
}

.show-more-portfolio-btn {
  display: none;
}

@media (max-width: 768px) {
  .show-more-portfolio-btn {
    display: block;
    margin: 2rem auto 0;
    padding: 1rem 3rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(45, 53, 97, 0.3);
  }

  .show-more-portfolio-btn:hover {
    background: #062f66;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 53, 97, 0.4);
  }
}

.phase-next-btn,
.phase-prev-btn {
  display: none;
}

.phase-next-btn-mobile {
  display: none;
}

@media (max-width: 768px) {
  .phase-next-btn,
  .phase-prev-btn,
  .phase-next-btn-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem auto 0;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, #3d4670 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(45, 53, 97, 0.3);
  }

  .phase-next-btn:hover,
  .phase-prev-btn:hover,
  .phase-next-btn-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(45, 53, 97, 0.5);
  }

  .phase-next-btn:active,
  .phase-prev-btn:active,
  .phase-next-btn-mobile:active {
    transform: translateY(0);
  }

  .phase-slide[data-phase="1"] .phase-prev-btn {
    display: none;
  }

  .phase-slide[data-phase="2"] .phase-next-btn,
  .phase-slide[data-phase="2"] .phase-next-btn-mobile {
    display: none;
  }
}

@media (max-width: 768px) {
  .pricing-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #E9ECEF;
  }

  .pricing-tab-btn {
    flex: 1;
    padding: 1rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
  }

  .pricing-tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
  }

  .pricing-content {
    display: none;
  }

  .pricing-content.active {
    display: block;
  }

  .price-comparison {
    display: block;
  }

  .price-comparison thead,
  .price-comparison .price-column {
    display: none;
  }

  .price-comparison tbody tr {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #E9ECEF;
    padding: 1rem 0;
  }

  .price-comparison tbody td:first-child {
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 769px) {
  .mobile-pricing-tabs {
    display: none;
  }
}

@media (max-width: 768px) {
  .mobile-pricing-tabs {
    display: flex;
    gap: 0.5rem;
    margin: 2rem 0;
    padding: 0 1rem;
  }

  .pricing-tab-btn {
    flex: 1;
    padding: 1rem;
    background: white;
    border: 2px solid #E9ECEF;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
  }

  .pricing-tab-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
  }

  .price-comparison .price-column:nth-child(3),
  .price-comparison tbody td:nth-child(3) {
    display: none;
  }

  .pricing-table.show-pro .price-column:nth-child(2),
  .pricing-table.show-pro tbody td:nth-child(2) {
    display: none;
  }

  .pricing-table.show-pro .price-column:nth-child(3),
  .pricing-table.show-pro tbody td:nth-child(3) {
    display: table-cell;
  }
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  min-width: 900px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.dropdown-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dropdown-column-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

.dropdown-item {
  padding: 1rem 1.5rem;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s;
  border-radius: 8px;
}

.dropdown-item:hover {
  background: rgba(45, 53, 97, 0.05);
  color: var(--primary);
  transform: translateX(5px);
}

.dropdown-item-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(45, 53, 97, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.dropdown-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.dropdown-item-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
}

.dropdown-item-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .dropdown-toggle {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }

  .dropdown-menu {
    position: static;
    left: auto;
    right: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: auto;
    width: 100%;
    box-shadow: none;
    padding: 0;
    margin: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    background: #F8F9FA;
    border-radius: 0;
  }

  .nav-dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-section {
    padding: 1rem;
  }

  .dropdown-section h4 {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .dropdown-item {
    padding: 1rem;
    border-bottom: 1px solid #E9ECEF;
  }

  .dropdown-item:hover {
    transform: none;
  }

  .dropdown-icon {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .dropdown-text strong {
    font-size: 0.95rem;
  }

  .dropdown-text p {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    overflow-x: hidden;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown .dropdown-menu {
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    display: none;
  }

  .nav-dropdown.active .dropdown-menu {
    display: block;
  }
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 3rem auto;
  max-width: 500px;
  background: white;
  padding: 0.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.toggle-btn {
  flex: 1;
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.toggle-btn.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(45, 53, 97, 0.3);
}

.toggle-btn:hover:not(.active) {
  color: var(--primary);
}

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

.pricing-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.pricing-card.featured {
  border: 3px solid var(--primary);
  box-shadow: 0 15px 50px rgba(45, 53, 97, 0.2);
}

.pricing-card.featured:hover {
  box-shadow: 0 25px 70px rgba(45, 53, 97, 0.3);
}

.popular-ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: var(--dark);
  padding: 0.5rem 3rem;
  font-weight: 800;
  font-size: 0.85rem;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.popular-ribbon span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.pricing-card-header {
  background: #062f66;
  color: white;
  padding: 3rem 2rem 2.5rem;
  text-align: center;
}

.plan-name {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.plan-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.price-tag {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.amount {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}

.price-description {
  font-size: 0.95rem;
  opacity: 0.85;
}

.pricing-card-body {
  padding: 2.5rem 2rem;
  flex: 1;
}

.feature-category {
  margin-bottom: 2.5rem;
}

.feature-category:last-child {
  margin-bottom: 0;
}

.category-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--light);
}

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

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.8rem;
  border-radius: 10px;
  transition: all 0.3s;
}

.feature-item:hover {
  background: rgba(45, 53, 97, 0.03);
}

.feature-item.highlight {
  background: rgba(45, 53, 97, 0.05);
  border-left: 3px solid var(--primary);
  padding-left: 1rem;
}

.feature-item.unavailable {
  opacity: 0.5;
}

.feature-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: bold;
}

.feature-icon.check {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

.feature-icon.cross {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
}

.feature-icon.info {
  background: rgba(59, 130, 246, 0.1);
  font-size: 0.9rem;
}

.feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.feature-content strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
}

.pricing-card-footer {
  padding: 0 2rem 2.5rem;
}

.btn-pricing {
  width: 100%;
  padding: 1.2rem 2rem;
  background: #062f66;
  color: white;
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(45, 53, 97, 0.3);
}

.btn-pricing:hover {
  background: #062f66;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(45, 53, 97, 0.4);
}

.btn-arrow {
  font-size: 1.3rem;
  transition: transform 0.3s;
}

.btn-pricing:hover .btn-arrow {
  transform: translateX(5px);
}

.pricing-card.featured .btn-pricing {
  background: #062f66;
  box-shadow: 0 8px 25px rgba(45, 53, 97, 0.4);
}

.pricing-card.featured .btn-pricing:hover {
  box-shadow: #062f66;
}

.help-choosing {
  margin-top: 4rem;
}

.help-box {
  background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.help-icon {
  font-size: 3rem;
  min-width: 60px;
}

.help-content {
  flex: 1;
}

.help-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.help-content p {
  font-size: 1rem;
  color: var(--text-light);
}

.btn-help {
  padding: 1rem 2.5rem;
  background: #062f66;
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(45, 53, 97, 0.2);
}

.btn-help:hover {
  background: #062f66;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 53, 97, 0.3);
}

@media (max-width: 1024px) {
  .pricing-cards-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .pricing-toggle {
    margin: 2rem auto;
    max-width: 100%;
    flex-wrap: wrap;
  }

  .toggle-btn {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }

  .pricing-cards-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem 0;
  }

  .pricing-card {
    margin: 0;
  }

  .popular-ribbon {
    font-size: 0.75rem;
    padding: 0.4rem 2.5rem;
  }

  .pricing-card-header {
    padding: 2.5rem 1.5rem 2rem;
  }

  .plan-name {
    font-size: 1.5rem;
  }

  .plan-subtitle {
    font-size: 0.9rem;
  }

  .amount {
    font-size: 3rem;
  }

  .currency {
    font-size: 1.5rem;
  }

  .pricing-card-body {
    padding: 2rem 1.5rem;
  }

  .feature-category {
    margin-bottom: 2rem;
  }

  .category-title {
    font-size: 1rem;
    gap: 0.6rem;
  }

  .category-icon {
    font-size: 1.3rem;
  }

  .features-list {
    gap: 0.8rem;
  }

  .feature-item {
    padding: 0.6rem;
  }

  .feature-content strong {
    font-size: 0.9rem;
  }

  .feature-desc {
    font-size: 0.8rem;
  }

  .pricing-card-footer {
    padding: 0 1.5rem 2rem;
  }

  .btn-pricing {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .help-box {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }

  .help-icon {
    font-size: 2.5rem;
  }

  .help-content h4 {
    font-size: 1.2rem;
  }

  .help-content p {
    font-size: 0.95rem;
  }

  .btn-help {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .pricing-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .pricing-card-header {
    padding: 2rem 1.5rem;
  }

  .plan-name {
    font-size: 1.4rem;
  }

  .amount {
    font-size: 3rem;
  }

  .pricing-card-body {
    padding: 2rem 1.5rem;
  }

  .feature-content strong {
    font-size: 0.9rem;
  }

  .feature-desc {
    font-size: 0.8rem;
  }
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover img {
    transform: scale(1.1);
}

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

.social-icon:hover::before {
    left: 100%;
}

.social-icon:nth-child(1):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon:nth-child(2):hover {
    background: #1877f2;
}

.social-icon:nth-child(3):hover {
    background: #000000;
}

.social-icon:nth-child(4):hover {
    background: #ff0000;
}

@media (max-width: 768px) {
    .footer-social-icons {
        gap: 12px;
        margin-top: 15px;
        justify-content: flex-start;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .footer-social-icons {
        gap: 10px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
    }
}
.termsfeed-com---nb {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  background: #ffffff !important;       /* couleur sombre, change selon ton design */
  padding: 12px 24px !important;
  margin: 0 !important;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15) !important;
  z-index: 99999 !important;
  font-family: 'Poppins', sans-serif !important;
}

/* Layout horizontal : texte à gauche, boutons à droite */
.termsfeed-com---nb .cc-nb-content {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
}

/* Titre — caché, on garde juste le texte court */
.termsfeed-com---nb .cc-nb-title {
  display: none !important;
}

/* Texte de la bannière — compact */
.termsfeed-com---nb .cc-nb-desc {
  color: #e0e0e0 !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  flex: 1 !important;
  max-width: 600px !important;
}

/* Conteneur des boutons — côté droit */
.termsfeed-com---nb .cc-nb-buttons-container {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-shrink: 0 !important;
  flex-wrap: nowrap !important;
}

/* Boutons — petits et compacts */
.termsfeed-com---nb .cc-nb-okagree,
.termsfeed-com---nb .cc-nb-reject,
.termsfeed-com---nb .cc-nb-changep {
  font-family: 'Poppins', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  padding: 8px 16px !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  border: none !important;
  transition: background 0.2s, transform 0.1s !important;
  white-space: nowrap !important;
}

.termsfeed-com---nb .cc-nb-okagree:active,
.termsfeed-com---nb .cc-nb-reject:active,
.termsfeed-com---nb .cc-nb-changep:active {
  transform: scale(0.95) !important;
}

/* Bouton "J'accepte" — vert ou couleur primaire de ton site */
.termsfeed-com---nb .cc-nb-okagree {
  background: #062f66 !important;   /* adapte cette couleur à celle de ton site */
  color: #fff !important;
}
.termsfeed-com---nb .cc-nb-okagree:hover {
  background: #062f66 !important;
}

/* Bouton "Je refuse" — contour */
.termsfeed-com---nb .cc-nb-reject {
  background: transparent !important;
  color: #e0e0e0 !important;
  border: 1px solid #e0e0e0 !important;
}
.termsfeed-com---nb .cc-nb-reject:hover {
  background: rgba(255,255,255,0.1) !important;
}

/* Bouton "Changer mes préférences" — texte discret */
.termsfeed-com---nb .cc-nb-changep {
  background: transparent !important;
  color: #aaa !important;
  text-decoration: underline !important;
  padding: 8px 4px !important;
  font-size: 11px !important;
}
.termsfeed-com---nb .cc-nb-changep:hover {
  color: #fff !important;
}

/* ============================================================
   MOBILE — tout empilé verticalement
   ============================================================ */
@media (max-width: 600px) {
  .termsfeed-com---nb {
    padding: 14px 16px !important;
  }

  .termsfeed-com---nb .cc-nb-content {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }

  .termsfeed-com---nb .cc-nb-desc {
    max-width: 100% !important;
    text-align: center !important;
  }

  .termsfeed-com---nb .cc-nb-buttons-container {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }
}