/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===================================
   PLAYFUL DYNAMIC DESIGN SYSTEM
   =================================== */
:root {
  --primary-vibrant: #FF6B9D;
  --secondary-electric: #4ECDC4;
  --accent-sunny: #FFE66D;
  --accent-purple: #A8E6CF;
  --dark-text: #2d3748;
  --light-bg: #FFF5F8;
  --white: #ffffff;
  --shadow-playful: 0 8px 30px rgba(255, 107, 157, 0.2);
  --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ===================================
   TYPOGRAPHY - PLAYFUL & ENERGETIC
   =================================== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark-text);
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  font-size: 16px;
  line-height: 1.8;
  color: #4a5568;
}

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  h4 { font-size: 16px; }
  p { font-size: 15px; }
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

/* ===================================
   BUTTONS - PLAYFUL & DYNAMIC
   =================================== */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-vibrant), #FF8CB4);
  color: var(--white);
  box-shadow: 0 6px 25px rgba(255, 107, 157, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 35px rgba(255, 107, 157, 0.5);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-vibrant);
  border: 3px solid var(--primary-vibrant);
  box-shadow: var(--shadow-light);
}

.btn-secondary:hover {
  background: var(--primary-vibrant);
  color: var(--white);
  transform: translateY(-3px) scale(1.05);
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
header {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 30px;
}

.logo img {
  height: 45px;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: rotate(-5deg) scale(1.1);
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

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

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-vibrant), var(--secondary-electric));
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* ===================================
   MOBILE MENU - ENERGETIC SLIDE
   =================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, var(--primary-vibrant), #FF8CB4);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 6px 25px rgba(255, 107, 157, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-vibrant), #FF8CB4);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--white);
  color: var(--primary-vibrant);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mobile-nav a {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover {
  background: var(--white);
  color: var(--primary-vibrant);
  transform: translateX(10px);
}

@media (max-width: 968px) {
  .nav-menu, .nav-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ===================================
   HERO SECTION - DYNAMIC & PLAYFUL
   =================================== */
.hero {
  background: linear-gradient(135deg, var(--light-bg) 0%, #FFF 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-sunny) 0%, transparent 70%);
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--secondary-electric) 0%, transparent 70%);
  opacity: 0.2;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 24px;
  animation: bounceIn 0.8s ease;
}

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.5); }
  60% { opacity: 1; transform: scale(1.1); }
  100% { transform: scale(1); }
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  color: #4a5568;
  animation: fadeInUp 1s ease 0.3s both;
}

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

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.6s both;
}

.trust-badges {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.9s both;
}

.trust-badges span {
  padding: 10px 20px;
  background: var(--white);
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-light);
  color: var(--primary-vibrant);
}

/* ===================================
   HERO INNER (Subpages)
   =================================== */
.hero-inner {
  background: linear-gradient(135deg, var(--primary-vibrant) 0%, #FF8CB4 100%);
  padding: 80px 20px 60px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-inner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

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

.hero-inner h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-inner p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a {
  color: var(--white);
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ===================================
   CARDS - PLAYFUL DESIGN
   =================================== */
.benefits-grid, .features-grid, .pricing-cards, .testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 50px;
}

.benefit-card, .feature-card, .price-card, .testimonial-card,
.stat-card, .value-card, .article-card, .method-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: 25px;
  box-shadow: var(--shadow-light);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  flex: 1 1 280px;
  max-width: 350px;
  margin-bottom: 20px;
}

.benefit-card::before, .feature-card::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, var(--primary-vibrant), var(--secondary-electric), var(--accent-sunny));
  border-radius: 25px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card:hover::before, .feature-card:hover::before {
  opacity: 1;
}

.benefit-card:hover, .feature-card:hover, .price-card:hover,
.testimonial-card:hover, .value-card:hover, .article-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(255, 107, 157, 0.3);
}

.benefit-card h3, .feature-card h3 {
  color: var(--primary-vibrant);
  margin-bottom: 15px;
  font-size: 22px;
}

.benefit-card p, .feature-card p {
  color: #4a5568;
  line-height: 1.7;
}

/* ===================================
   PRICING CARDS - SPECIAL STYLING
   =================================== */
.price-card {
  text-align: center;
  position: relative;
}

.price-card.featured {
  background: linear-gradient(135deg, var(--primary-vibrant), #FF8CB4);
  color: var(--white);
  transform: scale(1.05);
}

.price-card.featured h3,
.price-card.featured p,
.price-card.featured .price {
  color: var(--white);
}

.price-card .badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-sunny);
  color: var(--dark-text);
  padding: 6px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 12px;
  box-shadow: var(--shadow-light);
}

.price {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-vibrant);
  margin: 20px 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.price span {
  font-size: 16px;
  font-weight: 600;
}

.price-card p {
  margin: 15px 0 25px;
}

.features-list {
  text-align: left;
  margin: 25px 0;
}

.features-list li {
  padding: 10px 0;
  position: relative;
  padding-left: 30px;
  color: #4a5568;
}

.price-card.featured .features-list li {
  color: rgba(255, 255, 255, 0.95);
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-electric);
  font-weight: bold;
  font-size: 18px;
}

/* ===================================
   TESTIMONIALS - READABLE TEXT
   =================================== */
.testimonials {
  background: var(--light-bg);
  padding: 80px 20px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-left: 6px solid var(--primary-vibrant);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-quote {
  font-size: 18px;
  line-height: 1.8;
  color: var(--dark-text);
  font-style: italic;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 60px;
  color: var(--primary-vibrant);
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.3;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-vibrant);
  font-size: 16px;
}

/* ===================================
   STATS SECTION - ANIMATED
   =================================== */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 50px;
}

.stat-card {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: scale(1.1) rotate(-2deg);
  box-shadow: var(--shadow-playful);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-vibrant);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: #4a5568;
  font-weight: 600;
}

/* ===================================
   SOCIAL PROOF SECTION
   =================================== */
.social-proof {
  background: linear-gradient(135deg, var(--secondary-electric) 0%, var(--accent-purple) 100%);
  padding: 80px 20px;
  text-align: center;
}

.social-proof h2 {
  color: var(--white);
  margin-bottom: 50px;
}

/* ===================================
   CTA SECTIONS - ENERGETIC
   =================================== */
.cta-section, .cta-final {
  background: linear-gradient(135deg, var(--primary-vibrant), #FF8CB4);
  padding: 80px 20px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.cta-section h2, .cta-final h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-section p, .cta-final p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.guarantee, .guarantee-badges {
  margin-top: 25px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   FEATURES DETAILED
   =================================== */
.features-detailed {
  padding: 60px 20px;
}

.features-detailed h2 {
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary-vibrant);
}

.feature-detail {
  background: var(--light-bg);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 30px;
  border-left: 6px solid var(--secondary-electric);
}

.feature-detail h3 {
  color: var(--primary-vibrant);
  margin-bottom: 15px;
}

.feature-detail p {
  margin-bottom: 20px;
  color: #4a5568;
}

.feature-detail ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-detail ul li {
  padding-left: 30px;
  position: relative;
  color: #4a5568;
}

.feature-detail ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--secondary-electric);
  font-weight: bold;
}

/* ===================================
   BLOG SECTIONS
   =================================== */
.blog-categories {
  padding: 40px 20px;
  background: var(--light-bg);
}

.categories {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.category {
  padding: 12px 25px;
  background: var(--white);
  border-radius: 25px;
  font-weight: 600;
  color: var(--dark-text);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
}

.category:hover, .category.active {
  background: var(--primary-vibrant);
  color: var(--white);
  transform: translateY(-3px);
}

.blog-featured, .blog-listing {
  padding: 60px 20px;
}

.featured-grid, .articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.featured-article, .article-card {
  background: var(--white);
  padding: 35px;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  flex: 1 1 350px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.featured-article:hover, .article-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-playful);
}

.featured-article h3, .article-card h3 {
  color: var(--primary-vibrant);
  margin-bottom: 15px;
  font-size: 22px;
}

.article-meta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 14px;
  color: #718096;
}

.article-meta .category {
  background: var(--accent-sunny);
  color: var(--dark-text);
  padding: 5px 15px;
  border-radius: 15px;
  font-weight: 600;
}

/* ===================================
   NEWSLETTER SECTION
   =================================== */
.newsletter {
  background: linear-gradient(135deg, var(--secondary-electric), var(--accent-purple));
  padding: 80px 20px;
  text-align: center;
}

.newsletter h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin: 0 auto 30px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 30px auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1 1 250px;
  padding: 15px 25px;
  border-radius: 50px;
  border: none;
  font-size: 16px;
  min-width: 200px;
}

.newsletter-benefits {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 15px;
}

.subscribers {
  font-weight: 700;
  color: var(--white);
  margin-top: 10px;
}

/* ===================================
   CONTACT SECTIONS
   =================================== */
.contact-methods, .contact-departments {
  padding: 60px 20px;
}

.methods-grid, .departments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.method-card, .department-card {
  flex: 1 1 300px;
  max-width: 350px;
  padding: 35px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.method-card:hover, .department-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--shadow-playful);
}

.method-card h3, .department-card h3 {
  color: var(--primary-vibrant);
  margin-bottom: 15px;
}

.method-value {
  font-weight: 700;
  font-size: 18px;
  color: var(--dark-text);
  margin: 15px 0;
}

.method-description {
  color: #718096;
  font-size: 14px;
}

/* ===================================
   CONTACT FORM
   =================================== */
.contact-form-section {
  padding: 60px 20px;
  background: var(--light-bg);
}

.form-wrapper {
  max-width: 700px;
  margin: 40px auto 0;
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
}

.form-field {
  margin-bottom: 25px;
}

.form-field label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--dark-text);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 15px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary-vibrant);
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.form-field.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-field.checkbox input {
  width: auto;
  margin-top: 3px;
}

.form-field.checkbox label {
  margin-bottom: 0;
  font-weight: 400;
}

.form-note {
  margin-top: 15px;
  font-size: 14px;
  color: #718096;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq {
  padding: 60px 20px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary-vibrant);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq-item {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid var(--secondary-electric);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-light);
}

.faq-item h3 {
  color: var(--primary-vibrant);
  margin-bottom: 15px;
  font-size: 20px;
}

.faq-item p {
  color: #4a5568;
  line-height: 1.8;
}

/* ===================================
   LEGAL CONTENT
   =================================== */
.legal-content {
  padding: 60px 20px;
}

.legal-section {
  max-width: 900px;
  margin: 0 auto 40px;
  background: var(--light-bg);
  padding: 35px;
  border-radius: 15px;
}

.legal-section h2 {
  color: var(--primary-vibrant);
  margin-bottom: 20px;
  font-size: 28px;
}

.legal-section p {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 15px;
}

.legal-section a {
  color: var(--primary-vibrant);
  font-weight: 600;
  text-decoration: underline;
}

/* ===================================
   TIMELINE (O nas page)
   =================================== */
.timeline {
  max-width: 900px;
  margin: 50px auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-vibrant), var(--secondary-electric));
}

.milestone {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.year {
  min-width: 80px;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-vibrant);
  position: relative;
}

.year::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 10px;
  width: 16px;
  height: 16px;
  background: var(--primary-vibrant);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--white), 0 0 0 8px var(--primary-vibrant);
}

.milestone h3 {
  color: var(--primary-vibrant);
  margin-bottom: 10px;
}

.milestone p {
  color: #4a5568;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }
  
  .milestone {
    flex-direction: column;
    gap: 15px;
  }
  
  .year::after {
    right: auto;
    left: -35px;
  }
}

/* ===================================
   THANK YOU PAGE
   =================================== */
.thank-you-hero {
  background: linear-gradient(135deg, var(--secondary-electric), var(--accent-purple));
  padding: 100px 20px;
  text-align: center;
  color: var(--white);
}

.checkmark-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: var(--secondary-electric);
  font-weight: bold;
  animation: scaleIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.thank-you-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
}

.confirmation-info {
  padding: 60px 20px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.step {
  flex: 1 1 280px;
  max-width: 350px;
  padding: 30px;
  background: var(--light-bg);
  border-radius: 20px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.step::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary-vibrant);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 20px;
}

.steps {
  counter-reset: step;
}

.next-steps {
  padding: 60px 20px;
  background: var(--light-bg);
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.action-card {
  flex: 1 1 350px;
  max-width: 450px;
  padding: 40px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  text-align: center;
  margin-bottom: 20px;
}

.action-card h3 {
  color: var(--primary-vibrant);
  margin-bottom: 15px;
}

.action-card p {
  margin-bottom: 25px;
}

/* ===================================
   VALUES & SERVICES GRIDS
   =================================== */
.values-grid, .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 50px;
}

.value-card, .service-card {
  flex: 1 1 300px;
  max-width: 350px;
  padding: 35px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-card:hover, .service-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: var(--shadow-playful);
}

.value-card h3, .service-card h3 {
  color: var(--primary-vibrant);
  margin-bottom: 15px;
}

/* ===================================
   STORY & HIGHLIGHT
   =================================== */
.story {
  padding: 60px 20px;
}

.story p {
  max-width: 800px;
  margin: 0 auto 25px;
  font-size: 18px;
  line-height: 1.9;
  color: #4a5568;
}

.highlight {
  background: linear-gradient(135deg, var(--primary-vibrant), #FF8CB4);
  padding: 40px;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 800px;
  text-align: center;
}

.highlight p {
  color: var(--white);
  font-size: 20px;
  margin: 0;
}

.team-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin: 40px 0;
}

.team-stats .stat {
  flex: 1 1 200px;
  padding: 25px;
  background: var(--light-bg);
  border-radius: 15px;
  text-align: center;
  font-weight: 700;
  color: var(--primary-vibrant);
  font-size: 18px;
}

/* ===================================
   FOOTER - PLAYFUL STYLE
   =================================== */
footer {
  background: linear-gradient(135deg, var(--dark-text) 0%, #1a202c 100%);
  color: var(--white);
  padding: 60px 20px 20px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 70%);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 220px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 20px;
}

.footer-column h4 {
  color: var(--accent-sunny);
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: var(--accent-sunny);
  transform: translateX(5px);
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 10px;
}

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

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--dark-text), #1a202c);
  color: var(--white);
  padding: 25px 20px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 400px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.cookie-btn-accept:hover {
  background: #FF8CB4;
  transform: scale(1.05);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cookie-btn-reject:hover {
  background: var(--white);
  color: var(--dark-text);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--accent-sunny);
  text-decoration: underline;
}

/* ===================================
   COOKIE SETTINGS MODAL
   =================================== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: var(--white);
  border-radius: 25px;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--primary-vibrant);
  color: var(--white);
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  transform: rotate(90deg) scale(1.1);
}

.cookie-modal h3 {
  color: var(--primary-vibrant);
  margin-bottom: 25px;
  font-size: 28px;
}

.cookie-category {
  padding: 20px;
  background: var(--light-bg);
  border-radius: 15px;
  margin-bottom: 20px;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.cookie-category h4 {
  color: var(--primary-vibrant);
  font-size: 18px;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: #cbd5e0;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: var(--secondary-electric);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 14px;
  color: #718096;
}

.cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 968px) {
  .section {
    padding: 40px 15px;
  }
  
  .hero {
    padding: 60px 15px;
  }
  
  .hero-inner {
    padding: 60px 15px 40px;
  }
  
  .benefit-card, .feature-card, .price-card,
  .testimonial-card, .stat-card, .value-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .price { font-size: 36px; }
  
  .stat-number { font-size: 36px; }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    min-width: 100%;
  }
  
  .cookie-modal-content {
    padding: 25px;
  }
}

/* ===================================
   ANIMATIONS & UTILITIES
   =================================== */
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth scrolling behavior */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background: var(--primary-vibrant);
  color: var(--white);
}

::-moz-selection {
  background: var(--primary-vibrant);
  color: var(--white);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-vibrant);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #FF8CB4;
}