/*
 * aiclothingremoverFR.pw - Feuille de style
 * Thème: Design élégant français avec palette lavande
 * Date: Août 2025
 */

:root {
  /* Palette de couleurs principale */
  --lavender: #967BB6;
  --lavender-dark: #7A5C9F;
  --lavender-light: #B39DCC;
  --cream: #FFFAEB;
  --dark: #222222;
  --slate: #4A4E69;
  --gray-light: #F8F9FA;
  --gray-medium: #E9ECEF;
  --teal: #2A9D8F;
  --coral: #E76F51;
  
  /* Couleurs sémantiques */
  --primary: var(--lavender);
  --primary-dark: var(--lavender-dark);
  --secondary: var(--coral);
  --background: var(--cream);
  --text: var(--dark);
  --text-light: var(--slate);
  --accent: var(--teal);
  
  /* Effets */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --border-radius: 12px;
  --border-radius-sm: 6px;
  --border-radius-lg: 20px;
  --gradient-primary: linear-gradient(135deg, var(--lavender) 0%, var(--lavender-dark) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--coral) 0%, #D65B40 100%);
}

/* Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--background);
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 100px 0;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.6rem;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style-position: inside;
  margin-bottom: 1.5rem;
}

/* Utilitaires */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

/* Boutons */
.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.5px;
  text-transform: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 12px rgba(150, 123, 182, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(150, 123, 182, 0.4);
  color: white;
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: white;
  box-shadow: 0 4px 12px rgba(231, 111, 81, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(231, 111, 81, 0.4);
  color: white;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 13px 30px;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.btn-group {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

/* Section headers */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-top: 25px;
}

/* Header et Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 250, 235, 0.98);
  backdrop-filter: blur(5px);
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
  padding: 15px 0;
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--dark);
  font-weight: 700;
  font-size: 1.4rem;
  font-family: 'Libre Baskerville', serif;
}

.logo svg {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.logo:hover svg {
  transform: scale(1.1);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
}

.nav-menu li a {
  color: var(--dark);
  font-weight: 500;
  position: relative;
  font-size: 1.05rem;
}

.nav-menu li a::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: var(--transition);
  opacity: 0;
  border-radius: 3px;
}

.nav-menu li a:hover {
  color: var(--primary);
}

.nav-menu li a:hover::before {
  width: 100%;
  opacity: 1;
}

.nav-menu .btn {
  padding: 10px 25px;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
}
/* Hero Section */
.hero {
  padding: 180px 0 100px;
  background: linear-gradient(170deg, var(--cream) 0%, var(--gray-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(150, 123, 182, 0.1) 0%, rgba(150, 123, 182, 0) 70%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 111, 81, 0.08) 0%, rgba(231, 111, 81, 0) 70%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  background-color: var(--coral);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 30px;
  box-shadow: 0 3px 10px rgba(231, 111, 81, 0.2);
  letter-spacing: 0.5px;
}

.hero-illustration {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illustration svg {
  max-width: 100%;
  height: auto;
}

.warning-box {
  margin-top: 35px;
  background-color: rgba(231, 111, 81, 0.08);
  border-radius: var(--border-radius);
  padding: 20px;
  border-left: 4px solid var(--coral);
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.warning-box svg {
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 3px;
}

.warning-box p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Features Section */
.features {
  background-color: white;
  position: relative;
  z-index: 1;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23967bb6' fill-opacity='0.05'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: -1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.feature-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--gray-medium);
  z-index: 1;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, rgba(150, 123, 182, 0.05) 0%, rgba(150, 123, 182, 0) 100%);
  z-index: -1;
  transition: height 0.5s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: var(--lavender-light);
}

.feature-card:hover::before {
  height: 100%;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: rgba(150, 123, 182, 0.1);
  border-radius: 20px;
  margin-bottom: 25px;
  position: relative;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background-color: rgba(150, 123, 182, 0.2);
  transform: scale(1.05);
}

.feature-icon svg {
  width: 35px;
  height: 35px;
  color: var(--primary);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  transition: var(--transition);
}

.feature-card:hover .feature-title {
  color: var(--primary);
}

/* How It Works Section */
.how-it-works {
  background-color: var(--gray-light);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23967bb6' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}

.process-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.process-steps {
  position: relative;
  padding-left: 40px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 19px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--lavender) 0%, var(--lavender-light) 100%);
}

.process-step {
  position: relative;
  margin-bottom: 70px;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  position: absolute;
  left: -40px;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: 0 4px 10px rgba(150, 123, 182, 0.3);
  z-index: 2;
}

.step-content {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-medium);
}

.step-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--lavender-light);
}

.step-title {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.action-center {
  text-align: center;
  margin-top: 60px;
}

/* Testimonials Section */
.testimonials {
  background-color: white;
  position: relative;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background-color: var(--gray-light);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
  padding-top: 30px;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -15px;
  left: -10px;
  font-size: 5rem;
  color: rgba(150, 123, 182, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--lavender-light);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.rating {
  display: flex;
  gap: 3px;
  margin-top: 8px;
}

.rating svg {
  color: #FFD700;
  width: 18px;
  height: 18px;
}
/* FAQ Section */
.faq {
  background-color: var(--cream);
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  overflow: hidden;
  background-color: white;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-medium);
  transition: var(--transition);
}

.accordion-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--lavender-light);
}

.accordion-header {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.accordion-header h3 {
  font-size: 1.2rem;
  margin-bottom: 0;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
}

.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--gray-medium);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-weight: 700;
  font-size: 1.1rem;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-body {
  padding: 0 30px 25px;
  border-top: 1px solid var(--gray-medium);
}

.accordion-item.active .accordion-header {
  background-color: rgba(150, 123, 182, 0.05);
}

.accordion-item.active .accordion-header h3 {
  color: var(--primary-dark);
}

.accordion-item.active .accordion-icon {
  background-color: var(--primary);
  color: white;
  transform: rotate(45deg);
}

.accordion-item.active .accordion-content {
  max-height: 300px;
}

/* CTA Section */
.cta {
  background: var(--gradient-primary);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
  animation: rotate 240s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  color: white;
  margin-bottom: 25px;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn-secondary {
  background: white;
  color: var(--primary);
}

.cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-dark);
}

.cta-note {
  margin-top: 25px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: white;
  padding: 80px 0 30px;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 25px;
  font-size: 0.95rem;
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo span {
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  font-family: 'Libre Baskerville', serif;
}

.footer-links h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.footer-keywords {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  max-width: 800px;
  margin: 0 auto 15px;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero {
    padding: 160px 0 90px;
  }
  
  .testimonial-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.4rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  section {
    padding: 80px 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    flex-direction: column;
    background-color: white;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    padding: 100px 40px;
    transition: right 0.3s ease;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu li {
    margin: 15px 0;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-illustration {
    order: -1;
  }
  
  .btn-group {
    justify-content: center;
  }
  
  .warning-box {
    flex-direction: column;
    text-align: left;
  }
  
  .warning-box svg {
    margin: 0 auto 15px;
  }
  
  .feature-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .process-step {
    padding-left: 20px;
  }
  
  .step-number {
    left: -30px;
  }
}

@media screen and (max-width: 576px) {
  h1 {
    font-size: 2.1rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .btn-group {
    flex-direction: column;
  }
  
  .process-steps {
    padding-left: 0;
  }
  
  .process-steps::before {
    display: none;
  }
  
  .step-number {
    position: relative;
    left: 0;
    margin-bottom: 15px;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-links h4::after {
    left: 0;
    transform: none;
  }
}
