/* ============================================
   INDRA MARCA - VIBRANT ENERGETIC DESIGN
   Modern CSS with Flexbox-Only Layouts
   ============================================ */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  overflow-x: hidden;
}

/* TYPOGRAPHY - VIBRANT & ENERGETIC */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #0d2742;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #ff006e 0%, #8338ec 50%, #3a86ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

h2 {
  font-size: 36px;
  color: #ff006e;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #ffbe0b, #fb5607, #ff006e);
  border-radius: 10px;
}

h3 {
  font-size: 24px;
  color: #8338ec;
  font-weight: 700;
}

p {
  font-size: 18px;
  margin-bottom: 16px;
  color: #2b2d42;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
  list-style: none;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER - ELECTRIC & BOLD */
header {
  background: linear-gradient(135deg, #ff006e 0%, #8338ec 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(255, 0, 110, 0.3);
  animation: slideDown 0.5s ease-out;
}

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

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

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

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

.main-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  background: transparent;
  transition: all 0.3s ease;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: -1;
}

.main-nav a:hover::before {
  left: 0;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #ff006e, #8338ec);
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 0, 110, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 12px 32px rgba(255, 0, 110, 0.6);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #ff006e 0%, #8338ec 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

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

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

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* BUTTONS - VIBRANT & ENERGETIC */
.btn {
  display: inline-block;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
  letter-spacing: 1px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #ff006e 0%, #fb5607 100%);
  color: white;
  border-color: #ff006e;
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 16px 40px rgba(255, 0, 110, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #3a86ff 0%, #8338ec 100%);
  color: white;
  border-color: #3a86ff;
}

.btn-secondary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 16px 40px rgba(58, 134, 255, 0.4);
}

/* HERO SECTION - DYNAMIC & BOLD */
.hero {
  background: linear-gradient(135deg, #ff006e 0%, #8338ec 50%, #3a86ff 100%);
  background-size: 200% 200%;
  animation: gradientMove 5s ease infinite;
  padding: 100px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

@keyframes gradientMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

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

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

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: white;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  animation: slideInLeft 0.8s ease-out;
  background: none;
  -webkit-text-fill-color: white;
}

@keyframes slideInLeft {
  from { transform: translateX(-100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.cta-buttons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out;
}

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

.trust-indicators {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 16px;
  font-weight: 600;
}

.trust-indicators span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

/* SECTIONS - ENERGETIC SPACING */
.section, section {
  margin-bottom: 80px;
  padding: 60px 20px;
}

.value-proposition,
.services-preview,
.process,
.testimonials,
.mission-vision,
.company-story,
.team,
.statistics,
.services-overview,
.benefits-categories,
.pricing-intro,
.contact-methods,
.office-info {
  padding: 80px 20px;
  position: relative;
}

.section-subtitle {
  font-size: 20px;
  color: #6c757d;
  margin-bottom: 40px;
  text-align: center;
}

/* BENEFITS GRID - FLEXBOX */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: space-between;
}

.benefit-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg, #ff006e, #8338ec, #3a86ff);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.benefit-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 16px 48px rgba(255, 0, 110, 0.25);
  border-color: #ff006e;
}

.benefit-item:hover::before {
  opacity: 0.1;
}

.benefit-item h3 {
  color: #ff006e;
  margin-bottom: 16px;
  font-size: 22px;
}

/* SERVICES GRID - FLEXBOX */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: space-between;
}

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(58, 134, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid #e0f2fe;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(58, 134, 255, 0.1) 0%, transparent 70%);
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.service-card:hover::before {
  top: -25%;
  right: -25%;
}

.service-card:hover {
  transform: translateY(-15px) rotate(2deg);
  box-shadow: 0 20px 60px rgba(255, 0, 110, 0.3);
  border-color: #ff006e;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #3a86ff;
  position: relative;
}

.service-card .price {
  font-size: 36px;
  font-weight: 800;
  color: #ff006e;
  margin-top: 16px;
}

/* STEPS GRID - FLEXBOX */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: space-between;
}

.step-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  padding: 40px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(251, 86, 7, 0.15);
  border-left: 6px solid #fb5607;
  transition: all 0.3s ease;
  position: relative;
}

.step-item:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 48px rgba(251, 86, 7, 0.25);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffbe0b 0%, #fb5607 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(251, 86, 7, 0.3);
}

/* TESTIMONIALS - FLEXBOX */
.testimonials {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 20px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: space-between;
}

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-top: 6px solid #8338ec;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  color: #ff006e;
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(131, 56, 236, 0.25);
}

.testimonial-card p {
  font-style: italic;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #2b2d42;
  position: relative;
}

.testimonial-card .author {
  font-weight: 700;
  font-style: normal;
  color: #ff006e;
  margin-bottom: 8px;
}

.testimonial-card .service {
  font-size: 14px;
  color: #6c757d;
  font-style: normal;
}

.trust-badge {
  text-align: center;
  margin-top: 40px;
  font-size: 20px;
  font-weight: 700;
  color: #8338ec;
}

/* CTA BANNER - ELECTRIC */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #8338ec 0%, #3a86ff 100%);
  padding: 80px 20px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-banner h2 {
  color: white;
  font-size: 42px;
  margin-bottom: 24px;
}

.cta-banner h2::after {
  background: white;
  left: 50%;
  transform: translateX(-50%);
}

.cta-banner p {
  font-size: 20px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
}

.urgency-text {
  font-style: italic;
  font-size: 16px;
  margin-top: 24px;
  color: #ffbe0b;
  font-weight: 600;
}

/* FOOTER - MODERN */
footer {
  background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
  color: white;
  padding: 60px 20px 30px;
  margin-top: 80px;
}

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

.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-column h3 {
  color: #ffbe0b;
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-column p,
.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.8;
  display: block;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #ff006e;
  transform: translateX(5px);
}

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

/* BREADCRUMBS */
.breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
  color: #6c757d;
}

.breadcrumbs a {
  color: #3a86ff;
  font-weight: 600;
}

.breadcrumbs a:hover {
  color: #ff006e;
}

/* HERO INTERNAL */
.hero-internal {
  background: linear-gradient(135deg, #ff006e 0%, #8338ec 100%);
  padding: 80px 20px;
  color: white;
  text-align: center;
}

.hero-internal h1 {
  color: white;
  margin-bottom: 20px;
  background: none;
  -webkit-text-fill-color: white;
}

/* LEGAL PAGE */
.legal-page {
  padding: 60px 20px;
}

.legal-content {
  max-width: 900px;
  margin: 40px auto;
  background: white;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content ul {
  list-style: disc;
  margin-left: 30px;
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 12px;
  color: #2b2d42;
}

/* PRICING */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: space-between;
}

.price-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border: 3px solid #e0f2fe;
  transition: all 0.4s ease;
  text-align: center;
}

.price-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 60px rgba(255, 0, 110, 0.25);
  border-color: #ff006e;
}

.price-card h3 {
  color: #3a86ff;
  margin-bottom: 20px;
}

.price-card .price {
  font-size: 48px;
  font-weight: 800;
  color: #ff006e;
  margin: 20px 0;
}

.price-card .duration {
  color: #6c757d;
  margin-bottom: 20px;
}

.price-card .includes {
  list-style: none;
  margin: 30px 0;
  text-align: left;
}

.price-card .includes li {
  padding: 12px 0;
  border-bottom: 1px solid #e9ecef;
  color: #2b2d42;
}

.price-card .includes li::before {
  content: '✓';
  color: #8338ec;
  font-weight: 800;
  margin-right: 10px;
}

.price-card .best-for {
  font-size: 14px;
  color: #6c757d;
  font-style: italic;
  margin-top: 20px;
}

/* CONTACT */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: space-between;
}

.contact-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 6px solid #3a86ff;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(58, 134, 255, 0.25);
}

.contact-card .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.contact-info {
  font-size: 24px;
  font-weight: 700;
  color: #ff006e;
  margin: 20px 0;
}

/* STATISTICS */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: space-between;
}

.stat-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 48px rgba(58, 134, 255, 0.25);
}

.stat-number {
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, #ff006e 0%, #8338ec 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.stat-label {
  font-size: 18px;
  color: #6c757d;
  font-weight: 600;
}

/* TEAM */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: space-between;
}

.team-member {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid #e0f2fe;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(131, 56, 236, 0.25);
  border-color: #8338ec;
}

.team-member h3 {
  color: #ff006e;
  margin-bottom: 12px;
}

.team-member .position {
  font-weight: 700;
  color: #3a86ff;
  margin-bottom: 16px;
}

/* SERVICE DETAILED */
.service-detailed {
  padding: 40px 20px;
}

.service-box {
  background: white;
  padding: 60px;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  border-left: 8px solid #ff006e;
}

.service-box h2 {
  margin-bottom: 24px;
}

.service-box h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.service-box ul {
  list-style: none;
  margin: 20px 0;
}

.service-box ul li {
  padding: 12px 0 12px 30px;
  position: relative;
  color: #2b2d42;
}

.service-box ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8338ec;
  font-weight: 800;
  font-size: 20px;
}

.timeline {
  font-style: italic;
  color: #6c757d;
  margin-top: 20px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 12px;
}

.success-rate {
  font-weight: 700;
  color: #8338ec;
  margin-top: 16px;
  font-size: 18px;
}

/* BENEFIT DETAILED */
.benefit-detailed {
  padding: 40px 20px;
}

.benefit-box {
  background: white;
  padding: 60px;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  border-top: 8px solid #3a86ff;
}

.benefit-box .amount {
  font-size: 32px;
  font-weight: 800;
  color: #ff006e;
  margin: 20px 0;
}

.benefit-box .duration {
  color: #6c757d;
  font-style: italic;
  margin-bottom: 24px;
}

/* CATEGORIES */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.category-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background: linear-gradient(135deg, #8338ec 0%, #3a86ff 100%);
  color: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(131, 56, 236, 0.3);
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 60px rgba(131, 56, 236, 0.4);
}

.category-card h3 {
  color: white;
  margin-bottom: 12px;
  font-size: 22px;
}

.category-card p {
  color: rgba(255, 255, 255, 0.9);
}

/* PACKAGES */
.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: space-between;
}

.package-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(251, 86, 7, 0.15);
  border: 3px solid #fb5607;
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(251, 86, 7, 0.3);
}

.package-card h3 {
  color: #fb5607;
  margin-bottom: 20px;
}

.regular-price {
  text-decoration: line-through;
  color: #6c757d;
  margin: 16px 0;
}

.package-price {
  font-size: 32px;
  font-weight: 800;
  color: #ff006e;
  margin: 16px 0;
}

.savings {
  background: #ffbe0b;
  color: #0d1b2a;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  font-weight: 700;
  margin-top: 16px;
}

/* DISCOUNTS */
.discounts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.discount-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #8338ec;
  transition: all 0.3s ease;
}

.discount-card:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 48px rgba(131, 56, 236, 0.25);
}

.discount-card h3 {
  color: #ff006e;
  margin-bottom: 12px;
  font-size: 20px;
}

.discount-note {
  text-align: center;
  margin-top: 32px;
  font-style: italic;
  color: #6c757d;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #8338ec 0%, #3a86ff 100%);
  padding: 100px 20px;
  color: white;
  text-align: center;
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
}

.success-icon {
  width: 120px;
  height: 120px;
  background: white;
  color: #8338ec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  font-weight: 800;
  margin: 0 auto 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  animation: popIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes popIn {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.thank-you-page h1,
.thank-you-hero h1 {
  color: white;
  margin-bottom: 24px;
  background: none;
  -webkit-text-fill-color: white;
}

.message {
  font-size: 20px;
  margin-bottom: 40px;
}

/* MISC ELEMENTS */
.cta-center {
  text-align: center;
  margin-top: 40px;
}

.small-text {
  font-size: 14px;
  color: #6c757d;
  margin-top: 16px;
}

.supporting-text {
  text-align: center;
  font-size: 18px;
  color: #6c757d;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.text-section {
  margin-bottom: 40px;
}

.text-section ul {
  list-style: none;
  margin-top: 20px;
}

.text-section ul li {
  padding: 12px 0 12px 30px;
  position: relative;
  color: #2b2d42;
}

.text-section ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #ff006e;
  font-weight: 800;
}

.milestones {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.milestone {
  background: linear-gradient(90deg, #ff006e, #8338ec);
  color: white;
  padding: 20px 30px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(255, 0, 110, 0.3);
  transition: all 0.3s ease;
}

.milestone:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 32px rgba(255, 0, 110, 0.4);
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
  color: white;
  padding: 24px;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 16px;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #ff006e 0%, #fb5607 100%);
  color: white;
}

.cookie-btn-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(255, 0, 110, 0.4);
}

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

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
  background: transparent;
  color: #3a86ff;
  border: 2px solid #3a86ff;
}

.cookie-btn-settings:hover {
  background: rgba(58, 134, 255, 0.1);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.cookie-modal-content {
  background: white;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.cookie-modal h2 {
  margin-bottom: 24px;
  color: #ff006e;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background: #f8f9fa;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-category-info h3 {
  color: #3a86ff;
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-category-info p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 60px;
  height: 30px;
  background: #ccc;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.cookie-toggle.active {
  background: linear-gradient(135deg, #8338ec 0%, #3a86ff 100%);
}

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

.cookie-toggle.active::after {
  left: 33px;
}

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

.cookie-modal-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* RESPONSIVE - MOBILE FIRST */
@media (max-width: 768px) {
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  p {
    font-size: 16px;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Button adjustments */
  .btn {
    padding: 14px 28px;
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Grid adjustments - all to single column */
  .benefits-grid,
  .services-grid,
  .steps-grid,
  .testimonials-grid,
  .stats-grid,
  .team-grid,
  .pricing-grid,
  .contact-grid,
  .categories-grid,
  .packages-grid,
  .discounts-grid {
    flex-direction: column;
  }
  
  .benefit-item,
  .service-card,
  .step-item,
  .testimonial-card,
  .stat-item,
  .team-member,
  .price-card,
  .contact-card,
  .category-card,
  .package-card,
  .discount-card {
    flex: 1 1 100%;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Section padding */
  .section, section {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
  
  /* Service and benefit boxes */
  .service-box,
  .benefit-box,
  .legal-content {
    padding: 30px 20px;
  }
  
  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Trust indicators */
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .stat-number {
    font-size: 40px;
  }
  
  .service-card .price,
  .price-card .price {
    font-size: 32px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .cta-banner,
  .cta-section {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  body {
    background: white;
  }
}

/* ACCESSIBILITY */
:focus-visible {
  outline: 3px solid #ff006e;
  outline-offset: 3px;
}

.btn:focus-visible {
  outline: 3px solid #ffbe0b;
}

/* ANIMATIONS */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.btn:active {
  animation: pulse 0.3s ease;
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* SMOOTH SCROLLING */
html {
  scroll-padding-top: 100px;
}