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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #17252A;
  background-color: #FEFFFF;
  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;
}

/* ===== VIBRANT ENERGETIC DESIGN SYSTEM ===== */
:root {
  --primary: #2B7A78;
  --primary-light: #3ed5af;
  --primary-dark: #1a4d4b;
  --secondary: #17252A;
  --accent: #FEFFFF;
  --electric-blue: #00d4ff;
  --neon-green: #39ff14;
  --hot-pink: #ff006e;
  --vibrant-orange: #ff6b35;
  --sunny-yellow: #ffbe0b;
  --purple-pop: #8338ec;
  --gradient-vibrant: linear-gradient(135deg, var(--electric-blue) 0%, var(--hot-pink) 50%, var(--vibrant-orange) 100%);
  --gradient-energy: linear-gradient(45deg, var(--neon-green) 0%, var(--electric-blue) 100%);
  --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);
  --shadow-pop: 0 8px 30px rgba(255, 0, 110, 0.2);
  --shadow-vibrant: 0 10px 40px rgba(131, 56, 236, 0.25);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 48px;
  background: var(--gradient-vibrant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

h2 {
  font-size: 32px;
  color: var(--hot-pink);
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gradient-energy);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: var(--electric-blue);
}

h4 {
  font-size: 18px;
  color: var(--vibrant-orange);
}

p {
  margin-bottom: 16px;
  color: var(--secondary);
}

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

/* ===== BUTTONS - VIBRANT & ENERGETIC ===== */
.btn-primary, .btn-secondary, .btn-link {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--gradient-vibrant);
  color: #fff;
  box-shadow: var(--shadow-pop);
  animation: pulse 2s ease-in-out infinite;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-energy);
  transition: left 0.5s ease;
  z-index: -1;
}

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

.btn-primary:hover::before {
  left: 0;
}

.btn-secondary {
  background: transparent;
  color: var(--hot-pink);
  border: 3px solid var(--hot-pink);
}

.btn-secondary:hover {
  background: var(--hot-pink);
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-pop);
}

.btn-link {
  background: transparent;
  color: var(--electric-blue);
  padding: 8px 16px;
  font-size: 14px;
  border: 2px solid var(--electric-blue);
}

.btn-link:hover {
  background: var(--electric-blue);
  color: #fff;
  transform: translateX(5px);
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: var(--secondary);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--electric-blue);
}

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

.logo img {
  height: 50px;
  filter: invert(1);
  transition: transform 0.3s ease;
}

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

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

.nav-menu a {
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-energy);
  transition: width 0.3s ease;
}

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

.nav-menu a:hover {
  color: var(--electric-blue);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: var(--gradient-vibrant);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-pop);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--secondary);
  z-index: 1999;
  transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--hot-pink);
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-pop);
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  padding: 15px 20px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  border-left-color: var(--neon-green);
  background: rgba(0, 212, 255, 0.1);
  padding-left: 30px;
  color: var(--electric-blue);
}

/* ===== HERO SECTION - ELECTRIC ENERGY ===== */
.hero {
  background: var(--secondary);
  color: var(--accent);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--electric-blue) 0%, transparent 70%);
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--hot-pink) 0%, transparent 70%);
  opacity: 0.15;
  animation: float 8s ease-in-out infinite reverse;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 25px;
  animation: slideInDown 1s ease;
}

.hero-subheadline {
  font-size: 20px;
  margin-bottom: 40px;
  color: var(--accent);
  opacity: 0.9;
  animation: slideInUp 1s ease 0.2s both;
}

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

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  animation: slideInUp 1s ease 0.6s both;
}

.trust-badges span {
  font-size: 14px;
  font-weight: 600;
  color: var(--neon-green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  border: 2px solid var(--neon-green);
  border-radius: 30px;
  background: rgba(57, 255, 20, 0.1);
  transition: all 0.3s ease;
}

.trust-badges span:hover {
  background: var(--neon-green);
  color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(57, 255, 20, 0.3);
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--gradient-vibrant);
  padding: 80px 20px 60px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="2" opacity="0.1"/></svg>');
  background-size: 100px 100px;
  animation: patternMove 20s linear infinite;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.breadcrumbs a {
  color: #fff;
  text-decoration: underline;
}

.breadcrumbs a:hover {
  color: var(--sunny-yellow);
}

.page-hero h1 {
  color: #fff;
  -webkit-text-fill-color: #fff;
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: #fff;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

/* ===== SECTIONS ===== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: var(--secondary);
  margin-bottom: 40px;
  opacity: 0.8;
}

/* ===== SERVICES GRID - DYNAMIC CARDS ===== */
.services-overview, .services-detailed {
  background: linear-gradient(135deg, #feffff 0%, #f0f9ff 100%);
}

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

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 400px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 3px solid transparent;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--gradient-vibrant);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: var(--shadow-vibrant);
}

.service-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  filter: drop-shadow(0 5px 15px rgba(0, 212, 255, 0.3));
  transition: transform 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.2) rotate(10deg);
}

.service-card h3 {
  margin-bottom: 15px;
}

.service-card p {
  margin-bottom: 15px;
  flex-grow: 1;
}

.service-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--hot-pink);
  margin: 15px 0;
}

/* ===== BENEFITS GRID ===== */
.benefits {
  background: var(--secondary);
  color: var(--accent);
}

.benefits h2 {
  color: #fff;
  text-align: center;
  -webkit-text-fill-color: #fff;
}

.benefits h2::after {
  left: 50%;
  transform: translateX(-50%);
}

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

.benefit-item {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.benefit-item:hover {
  border-color: var(--electric-blue);
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.benefit-item img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px var(--neon-green));
}

.benefit-item h3 {
  color: var(--electric-blue);
}

.benefit-item p {
  color: var(--accent);
  opacity: 0.9;
}

/* ===== TESTIMONIALS - HIGH CONTRAST ===== */
.testimonials {
  background: linear-gradient(135deg, #fff5f7 0%, #fff 100%);
}

.testimonials h2 {
  text-align: center;
}

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

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
  max-width: 550px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--vibrant-orange);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: var(--vibrant-orange);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--secondary);
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--hot-pink) !important;
  font-style: normal !important;
  margin-top: 10px;
}

.testimonials .rating {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--sunny-yellow);
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 190, 11, 0.1);
  border-radius: 10px;
}

/* ===== CTA BANNER - ELECTRIC PULSE ===== */
.cta-banner, .cta-section {
  background: var(--gradient-vibrant);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  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 10s linear infinite;
}

.cta-banner h2, .cta-section h2 {
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-size: 40px;
  position: relative;
  z-index: 1;
}

.cta-banner h2::after, .cta-section h2::after {
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
}

.cta-banner p, .cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--hot-pink);
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover {
  background: var(--sunny-yellow);
  color: var(--secondary);
}

.guarantee-text {
  font-size: 14px;
  margin-top: 20px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* ===== PRICING TABLES - VIBRANT CARDS ===== */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  flex: 1 1 calc(33.333% - 30px);
  min-width: 280px;
  max-width: 380px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 3px solid transparent;
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-vibrant);
  border-color: var(--purple-pop);
}

.pricing-card.featured {
  border-color: var(--hot-pink);
  background: linear-gradient(135deg, #fff 0%, #fff5f7 100%);
  transform: scale(1.05);
}

.pricing-card.featured .badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-vibrant);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-pop);
}

.pricing-card h3 {
  font-size: 14px;
  color: var(--electric-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.package-name {
  font-size: 20px;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 20px;
}

.pricing-card .price {
  font-size: 48px;
  font-weight: 700;
  color: var(--hot-pink);
  margin: 20px 0;
}

.pricing-card .price span {
  font-size: 18px;
  color: var(--secondary);
  opacity: 0.7;
}

.pricing-card .features {
  margin: 30px 0;
  text-align: left;
}

.pricing-card .features li {
  padding: 10px 0;
  color: var(--secondary);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card .features li:last-child {
  border-bottom: none;
}

/* ===== SERVICE DETAILS ===== */
.service-detail {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--electric-blue);
  transition: all 0.3s ease;
}

.service-detail:hover {
  box-shadow: var(--shadow-glow);
  transform: translateX(5px);
}

.service-detail img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 15px rgba(0, 212, 255, 0.3));
}

.service-detail h2 {
  margin-top: 20px;
}

.service-detail ul {
  margin: 20px 0;
  padding-left: 20px;
}

.service-detail ul li {
  padding: 8px 0;
  color: var(--secondary);
  position: relative;
  padding-left: 25px;
}

.service-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--neon-green);
  font-weight: 700;
}

/* ===== GUARANTEES ===== */
.guarantees {
  background: linear-gradient(135deg, #f0f9ff 0%, #feffff 100%);
}

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

.guarantee-item {
  flex: 1 1 calc(25% - 30px);
  min-width: 220px;
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.guarantee-item:hover {
  border-color: var(--vibrant-orange);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.guarantee-item h3 {
  color: var(--vibrant-orange);
  margin-bottom: 15px;
}

/* ===== COMPANY STORY ===== */
.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.milestone {
  flex: 1 1 calc(25% - 30px);
  min-width: 180px;
  text-align: center;
  padding: 30px 20px;
  background: var(--gradient-energy);
  border-radius: 15px;
  box-shadow: var(--shadow-glow);
  transition: all 0.3s ease;
}

.milestone:hover {
  transform: translateY(-8px) scale(1.05);
}

.milestone .year {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.milestone p {
  color: #fff;
  font-weight: 600;
}

/* ===== MISSION & VALUES ===== */
.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
  justify-content: center;
}

.mission-item {
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
  background: linear-gradient(135deg, var(--hot-pink) 0%, var(--vibrant-orange) 100%);
  padding: 40px;
  border-radius: 20px;
  color: #fff;
  box-shadow: var(--shadow-pop);
}

.mission-item h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
}

.mission-item p {
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
}

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

.value-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--purple-pop);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-vibrant);
}

.value-item h4 {
  color: var(--purple-pop);
  margin-bottom: 10px;
}

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

.stat-item {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
  text-align: center;
  padding: 40px 20px;
  background: var(--gradient-vibrant);
  border-radius: 15px;
  box-shadow: var(--shadow-pop);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.1);
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.stat-item p {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

/* ===== PORTFOLIO ===== */
.portfolio-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0;
  justify-content: center;
}

.portfolio-stats .stat {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 200px;
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--purple-pop) 100%);
  border-radius: 15px;
  box-shadow: var(--shadow-glow);
}

.portfolio-stats .stat span {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.portfolio-stats .stat p {
  color: #fff;
  font-weight: 600;
}

.case-study {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--vibrant-orange);
  transition: all 0.3s ease;
}

.case-study:hover {
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
  transform: translateX(5px);
}

.case-study .category {
  display: inline-block;
  background: var(--gradient-energy);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.case-study .duration {
  color: var(--electric-blue);
  font-weight: 600;
  margin-top: 20px;
}

/* ===== CONTACT SECTIONS ===== */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.contact-method {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  text-align: center;
  padding: 40px 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: var(--electric-blue);
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.contact-method img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 5px 15px rgba(0, 212, 255, 0.3));
}

.contact-method h3 {
  margin-bottom: 15px;
}

.contact-method .note {
  font-size: 14px;
  color: var(--hot-pink);
  font-weight: 600;
  margin-top: 10px;
}

/* ===== FORMS ===== */
.form-container {
  max-width: 700px;
  margin: 40px auto;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.form-container:hover {
  border-color: var(--electric-blue);
  box-shadow: var(--shadow-glow);
}

.form-note {
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--purple-pop) 100%);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  font-weight: 600;
}

.form-fields-display {
  padding: 20px;
  background: linear-gradient(135deg, #f0f9ff 0%, #feffff 100%);
  border-radius: 10px;
  border-left: 4px solid var(--neon-green);
}

.form-fields-display ul {
  margin: 20px 0;
  padding-left: 20px;
}

.form-fields-display ul li {
  padding: 8px 0;
  color: var(--secondary);
  position: relative;
  padding-left: 25px;
}

.form-fields-display ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--neon-green);
  font-weight: 700;
}

.privacy-note {
  font-size: 14px;
  color: var(--secondary);
  margin-top: 20px;
}

.privacy-note a {
  color: var(--electric-blue);
  text-decoration: underline;
}

.guarantee {
  color: var(--neon-green);
  font-weight: 700;
  margin-top: 15px;
}

/* ===== LOCATION INFO ===== */
.location-info {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
  align-items: flex-start;
}

.address-details {
  flex: 1 1 400px;
}

.map-placeholder {
  flex: 1 1 400px;
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--purple-pop) 100%);
  padding: 60px 40px;
  border-radius: 15px;
  color: #fff;
  text-align: center;
  font-weight: 600;
  box-shadow: var(--shadow-glow);
}

/* ===== SERVICE AREA ===== */
.service-area {
  background: linear-gradient(135deg, #fff5f7 0%, #f0f9ff 100%);
}

.primary-area {
  font-size: 24px;
  font-weight: 700;
  color: var(--hot-pink);
  text-align: center;
  margin-bottom: 30px;
}

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

.discount-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 30px 20px;
  background: var(--gradient-vibrant);
  border-radius: 15px;
  color: #fff;
  box-shadow: var(--shadow-pop);
  transition: all 0.3s ease;
}

.discount-item:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 15px 50px rgba(255, 0, 110, 0.4);
}

.discount-item h3 {
  color: #fff;
  margin-bottom: 15px;
}

.discount-item p {
  color: #fff;
}

.promo-note {
  text-align: center;
  font-size: 14px;
  margin-top: 30px;
  color: var(--secondary);
  font-style: italic;
}

/* ===== SERVICE PRICE LIST ===== */
.services-list {
  max-width: 800px;
  margin: 40px auto;
}

.service-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--electric-blue);
  transition: all 0.3s ease;
  flex-wrap: wrap;
  gap: 15px;
}

.service-price-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-glow);
}

.service-price-item h3 {
  margin: 0;
  color: var(--secondary);
  font-size: 18px;
}

.service-price-item .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--hot-pink);
  margin: 0;
}

.note {
  text-align: center;
  font-size: 14px;
  color: var(--secondary);
  margin-top: 30px;
  font-style: italic;
}

/* ===== LEGAL CONTENT ===== */
.legal-content {
  background: #fff;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.content-wrapper h2 {
  margin-top: 40px;
  color: var(--electric-blue);
}

.content-wrapper h2:first-child {
  margin-top: 0;
}

.content-wrapper ul {
  margin: 20px 0;
  padding-left: 30px;
}

.content-wrapper ul li {
  padding: 8px 0;
  color: var(--secondary);
  list-style: disc;
}

.last-updated {
  font-size: 14px;
  color: var(--secondary);
  opacity: 0.7;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-hero {
  background: var(--gradient-vibrant);
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.confirmation-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: #fff;
  color: var(--neon-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 700;
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
  animation: bounceIn 0.8s ease;
}

.thank-you-hero h1 {
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.thank-you-hero .subheadline {
  font-size: 24px;
  margin-bottom: 20px;
}

.next-steps {
  background: linear-gradient(135deg, #f0f9ff 0%, #feffff 100%);
}

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

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-vibrant);
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--gradient-energy);
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 15px;
  box-shadow: var(--shadow-glow);
}

.timeline {
  text-align: center;
  font-weight: 600;
  color: var(--electric-blue);
  margin-top: 30px;
}

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

.contact-option {
  flex: 1 1 300px;
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #f0f9ff 0%, #feffff 100%);
  border-radius: 10px;
  border: 2px solid var(--electric-blue);
}

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

.link-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  padding: 30px 20px;
  background: var(--gradient-vibrant);
  color: #fff;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-pop);
  transition: all 0.3s ease;
}

.link-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(255, 0, 110, 0.4);
}

.link-card h3 {
  color: #fff;
  font-size: 16px;
}

.testimonial-single .testimonial-card {
  max-width: 800px;
  margin: 40px auto;
}

.return-navigation {
  text-align: center;
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* ===== FOOTER - ENERGETIC DESIGN ===== */
footer {
  background: var(--secondary);
  color: var(--accent);
  padding: 60px 20px 20px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-vibrant);
}

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

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

.footer-logo {
  height: 50px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer-column h4 {
  color: var(--electric-blue);
  margin-bottom: 20px;
  font-size: 16px;
}

.footer-column p,
.footer-column a {
  color: var(--accent);
  opacity: 0.9;
  font-size: 14px;
  line-height: 1.8;
}

.footer-column a:hover {
  color: var(--neon-green);
  opacity: 1;
  padding-left: 5px;
}

.footer-column ul li {
  margin-bottom: 10px;
}

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

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--secondary);
  color: var(--accent);
  padding: 25px 20px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 3px solid var(--electric-blue);
}

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

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 30px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: var(--gradient-energy);
  color: #fff;
  border-color: var(--neon-green);
}

.cookie-btn.accept:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

.cookie-btn.reject {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.cookie-btn.reject:hover {
  background: var(--accent);
  color: var(--secondary);
}

.cookie-btn.settings {
  background: transparent;
  color: var(--electric-blue);
  border-color: var(--electric-blue);
  padding: 8px 16px;
  font-size: 12px;
}

.cookie-btn.settings:hover {
  background: var(--electric-blue);
  color: #fff;
}

/* ===== COOKIE PREFERENCES MODAL ===== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(23, 37, 42, 0.95);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 3px solid var(--electric-blue);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

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

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

.cookie-modal-header h2 {
  color: var(--hot-pink);
  margin: 0;
}

.cookie-modal-close {
  background: var(--hot-pink);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  transform: rotate(90deg);
  background: var(--vibrant-orange);
}

.cookie-category {
  margin-bottom: 25px;
  padding: 20px;
  background: linear-gradient(135deg, #f0f9ff 0%, #feffff 100%);
  border-radius: 10px;
  border-left: 4px solid var(--electric-blue);
}

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

.cookie-category h3 {
  margin: 0;
  font-size: 18px;
  color: var(--electric-blue);
}

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

.cookie-toggle.active {
  background: var(--neon-green);
}

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

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

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

.cookie-category p {
  font-size: 14px;
  color: var(--secondary);
  margin: 0;
}

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

/* ===== ANIMATIONS ===== */
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

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

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

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

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

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes patternMove {
  from { background-position: 0 0; }
  to { background-position: 100px 100px; }
}

/* ===== RESPONSIVE DESIGN - MOBILE FIRST ===== */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  /* Navigation */
  .nav-menu { display: none; }
  .main-nav .btn-primary { display: none; }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 15px;
  }
  
  /* Sections */
  section {
    padding: 30px 15px;
    margin-bottom: 40px;
  }
  
  /* Grids */
  .services-grid,
  .benefits-grid,
  .testimonials-grid,
  .pricing-grid,
  .guarantees-grid,
  .contact-grid,
  .discounts-grid,
  .stats-grid,
  .milestones,
  .mission-grid,
  .values-grid,
  .steps-grid,
  .links-grid {
    flex-direction: column;
    gap: 20px;
  }
  
  .service-card,
  .benefit-item,
  .testimonial-card,
  .pricing-card,
  .guarantee-item,
  .contact-method,
  .discount-item,
  .stat-item,
  .milestone,
  .mission-item,
  .value-item,
  .step,
  .link-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Location */
  .location-info {
    flex-direction: column;
  }
  
  /* Contact Options */
  .contact-options {
    flex-direction: column;
  }
  
  /* Service Price Items */
  .service-price-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .benefit-item,
  .value-item {
    flex: 1 1 calc(50% - 30px);
  }
  
  .pricing-card {
    flex: 1 1 calc(50% - 30px);
  }
}

/* ===== ACCESSIBILITY ===== */
*:focus {
  outline: 3px solid var(--electric-blue);
  outline-offset: 2px;
}

a:focus,
button:focus {
  outline: 3px solid var(--neon-green);
}

/* ===== PRINT STYLES ===== */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .btn-primary,
  .btn-secondary,
  .cta-banner,
  .cta-section {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  a {
    text-decoration: underline;
  }
}