/* ===========================
   PULSECREST - TECH FUTURISTIC CSS
   Design Style: Futuristic tech-inspired
   =========================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #E0E0E0;
  background: linear-gradient(135deg, #0A0E27 0%, #1B1E3F 50%, #0D1B2A 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #FFFFFF;
  text-shadow: 0 0 20px rgba(44, 122, 140, 0.3);
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #B0B8C8;
}

a {
  color: #2C7A8C;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #E8A547;
  text-shadow: 0 0 10px rgba(232, 165, 71, 0.5);
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
  color: #B0B8C8;
}

strong {
  color: #FFFFFF;
  font-weight: 600;
}

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

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

/* HEADER */
header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(44, 122, 140, 0.3);
  box-shadow: 0 4px 20px rgba(44, 122, 140, 0.2);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(44, 122, 140, 0.5));
  transition: all 0.3s ease;
}

.logo img:hover {
  filter: drop-shadow(0 0 20px rgba(232, 165, 71, 0.8));
  transform: scale(1.05);
}

/* NAVIGATION */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #B0B8C8;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2C7A8C, #E8A547);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #E8A547;
  background: rgba(44, 122, 140, 0.1);
}

.main-nav a:hover::before {
  width: 100%;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #2C7A8C, #1B4B5A);
  border: 2px solid rgba(232, 165, 71, 0.3);
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 24px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(44, 122, 140, 0.4);
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #E8A547, #2C7A8C);
  box-shadow: 0 6px 25px rgba(232, 165, 71, 0.6);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #0A0E27 0%, #1B1E3F 100%);
  border-left: 2px solid rgba(44, 122, 140, 0.5);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 30px 30px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(232, 165, 71, 0.2);
  border: 2px solid #E8A547;
  border-radius: 50%;
  color: #E8A547;
  font-size: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #E8A547;
  color: #0A0E27;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #B0B8C8;
  padding: 15px 20px;
  border-left: 3px solid transparent;
  background: rgba(44, 122, 140, 0.1);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #E8A547;
  border-left-color: #E8A547;
  background: rgba(232, 165, 71, 0.1);
  transform: translateX(10px);
  box-shadow: 0 0 15px rgba(232, 165, 71, 0.3);
}

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 14px 32px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #2C7A8C, #1B4B5A);
  color: #FFFFFF;
  border-color: rgba(232, 165, 71, 0.3);
  box-shadow: 0 4px 15px rgba(44, 122, 140, 0.4), 0 0 30px rgba(44, 122, 140, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #E8A547, #2C7A8C);
  box-shadow: 0 6px 25px rgba(232, 165, 71, 0.6), 0 0 40px rgba(232, 165, 71, 0.3);
  transform: translateY(-2px);
  border-color: #E8A547;
}

.btn-secondary {
  background: rgba(44, 122, 140, 0.1);
  color: #2C7A8C;
  border: 2px solid #2C7A8C;
  box-shadow: 0 4px 15px rgba(44, 122, 140, 0.2);
}

.btn-secondary:hover {
  background: rgba(232, 165, 71, 0.1);
  color: #E8A547;
  border-color: #E8A547;
  box-shadow: 0 6px 25px rgba(232, 165, 71, 0.4);
  transform: translateY(-2px);
}

button:disabled,
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* HERO SECTIONS */
.hero,
.hero-simple {
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top center, rgba(44, 122, 140, 0.2), transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #FFFFFF, #2C7A8C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px rgba(44, 122, 140, 0.5);
  }
  to {
    text-shadow: 0 0 30px rgba(232, 165, 71, 0.8), 0 0 40px rgba(44, 122, 140, 0.5);
  }
}

.hero-subtitle {
  font-size: 20px;
  color: #B0B8C8;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-indicators,
.trust-indicator {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-indicators span,
.trust-indicator span {
  font-size: 14px;
  color: #2C7A8C;
  font-weight: 600;
  padding: 8px 16px;
  background: rgba(44, 122, 140, 0.1);
  border: 1px solid rgba(44, 122, 140, 0.3);
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(44, 122, 140, 0.2);
}

.hero-stats {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-stats span {
  font-size: 14px;
  font-weight: 600;
  color: #E8A547;
  padding: 10px 20px;
  background: rgba(232, 165, 71, 0.1);
  border: 1px solid rgba(232, 165, 71, 0.3);
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(232, 165, 71, 0.2);
}

/* CARDS */
.value-grid,
.services-grid,
.benefits-grid,
.pain-grid,
.packages-grid,
.plans-grid,
.tech-features,
.methods-grid,
.hours-grid,
.cta-blocks,
.badges-grid,
.stats-grid,
.departments,
.certs-grid,
.neighborhoods-grid,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.value-card,
.service-card,
.benefit,
.pain-item,
.package,
.plan,
.tech-feature,
.method,
.hours-block,
.cta-block,
.badge,
.department,
.cert,
.neighborhood,
.action-card,
.stat-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 32px 24px;
  background: rgba(27, 75, 90, 0.2);
  border: 1px solid rgba(44, 122, 140, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.value-card::before,
.service-card::before,
.benefit::before,
.package::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2C7A8C, #E8A547);
  border-radius: 12px 12px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card:hover,
.service-card:hover,
.benefit:hover,
.pain-item:hover,
.package:hover,
.plan:hover,
.tech-feature:hover,
.action-card:hover {
  background: rgba(27, 75, 90, 0.4);
  border-color: rgba(232, 165, 71, 0.5);
  box-shadow: 0 8px 30px rgba(44, 122, 140, 0.3), 0 0 40px rgba(232, 165, 71, 0.2);
  transform: translateY(-5px);
}

.value-card:hover::before,
.service-card:hover::before,
.benefit:hover::before,
.package:hover::before {
  opacity: 1;
}

.service-card h3,
.benefit h3,
.pain-item h3,
.package h3,
.tech-feature h3 {
  color: #2C7A8C;
  margin-bottom: 12px;
}

.service-card p,
.benefit p,
.pain-item p {
  color: #B0B8C8;
  line-height: 1.6;
}

/* PLAN CARDS */
.plan.featured {
  border: 2px solid #E8A547;
  background: rgba(232, 165, 71, 0.1);
  box-shadow: 0 8px 30px rgba(232, 165, 71, 0.3);
  transform: scale(1.05);
}

.plan-price {
  font-size: 32px;
  font-weight: 700;
  color: #E8A547;
  margin: 16px 0;
}

.popular {
  display: inline-block;
  background: linear-gradient(135deg, #E8A547, #2C7A8C);
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* PROCESS STEPS */
.process-steps,
.process-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 24px;
  background: rgba(27, 75, 90, 0.2);
  border: 1px solid rgba(44, 122, 140, 0.3);
  border-radius: 12px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.step::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #2C7A8C, #E8A547);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(44, 122, 140, 0.5);
}

.step:hover {
  background: rgba(27, 75, 90, 0.4);
  border-color: #E8A547;
  box-shadow: 0 8px 30px rgba(232, 165, 71, 0.3);
  transform: translateY(-5px);
}

.step h3 {
  color: #E8A547;
  margin-bottom: 12px;
  font-size: 18px;
}

.timeline {
  text-align: center;
  color: #2C7A8C;
  font-weight: 600;
  font-size: 14px;
  padding: 16px;
  background: rgba(44, 122, 140, 0.1);
  border-radius: 8px;
  border: 1px dashed rgba(44, 122, 140, 0.3);
  margin-top: 32px;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(44, 122, 140, 0.3);
  border-radius: 12px;
  position: relative;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 64px;
  color: rgba(44, 122, 140, 0.3);
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #E8A547;
  box-shadow: 0 8px 30px rgba(232, 165, 71, 0.3);
  transform: translateY(-5px);
}

.testimonial-card p {
  color: #E0E0E0;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
}

.testimonial-author strong {
  color: #2C7A8C;
  font-size: 16px;
}

.testimonial-author span {
  color: #B0B8C8;
  font-size: 14px;
}

.rating,
.overall-rating {
  text-align: center;
  color: #E8A547;
  font-weight: 600;
  font-size: 16px;
  margin-top: 32px;
}

.result {
  color: #E8A547 !important;
  font-weight: 600;
  font-size: 14px;
  margin-top: 12px;
}

/* STATS SECTION */
.stats,
.stats-row,
.key-stats {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.stats span,
.stats-row .stat,
.key-stats span,
.stat-item {
  font-size: 16px;
  font-weight: 600;
  color: #2C7A8C;
  padding: 16px 24px;
  background: rgba(44, 122, 140, 0.1);
  border: 1px solid rgba(44, 122, 140, 0.3);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 0 15px rgba(44, 122, 140, 0.2);
  flex: 1 1 auto;
  min-width: 200px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-item strong {
  font-size: 32px;
  color: #E8A547;
  display: block;
}

/* SERVICE DETAILS */
.service-detail {
  padding: 40px;
  background: rgba(27, 75, 90, 0.2);
  border: 1px solid rgba(44, 122, 140, 0.3);
  border-left: 4px solid #2C7A8C;
  border-radius: 12px;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.service-detail:hover {
  background: rgba(27, 75, 90, 0.3);
  border-left-color: #E8A547;
  box-shadow: 0 8px 30px rgba(232, 165, 71, 0.2);
  transform: translateX(5px);
}

.service-detail h3 {
  color: #2C7A8C;
  font-size: 24px;
  margin-bottom: 16px;
}

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

.service-detail li {
  padding-left: 24px;
  position: relative;
}

.service-detail li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #E8A547;
  font-weight: 700;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #E8A547;
  margin: 16px 0;
}

.ideal-for {
  color: #2C7A8C;
  font-style: italic;
  font-size: 14px;
  padding: 12px;
  background: rgba(44, 122, 140, 0.1);
  border-radius: 6px;
  border-left: 3px solid #2C7A8C;
}

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

.legal-content .container {
  max-width: 900px;
}

.last-updated {
  color: #2C7A8C;
  font-style: italic;
  font-size: 14px;
  margin-bottom: 32px;
  padding: 12px;
  background: rgba(44, 122, 140, 0.1);
  border-radius: 6px;
  border-left: 3px solid #2C7A8C;
}

.text-section {
  margin-bottom: 40px;
  padding: 24px;
  background: rgba(27, 75, 90, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(44, 122, 140, 0.2);
}

.text-section h2 {
  color: #2C7A8C;
  font-size: 24px;
  margin-bottom: 16px;
  border-bottom: 2px solid rgba(44, 122, 140, 0.3);
  padding-bottom: 8px;
}

.text-section h3 {
  color: #E8A547;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 12px;
}

/* FORMS */
.form-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(27, 75, 90, 0.2);
  border: 1px solid rgba(44, 122, 140, 0.3);
  border-radius: 12px;
}

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

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: #2C7A8C;
  font-weight: 600;
  font-size: 14px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(10, 14, 39, 0.5);
  border: 1px solid rgba(44, 122, 140, 0.3);
  border-radius: 6px;
  color: #E0E0E0;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: #2C7A8C;
  box-shadow: 0 0 15px rgba(44, 122, 140, 0.3);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

.form-note {
  font-size: 14px;
  color: #B0B8C8;
  margin-top: 16px;
  text-align: center;
}

/* MILESTONES & TIMELINE */
.milestones {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
  padding: 32px;
  background: rgba(27, 75, 90, 0.1);
  border-radius: 12px;
  border-left: 4px solid #2C7A8C;
}

.milestone {
  padding: 16px;
  background: rgba(44, 122, 140, 0.1);
  border-radius: 6px;
  border-left: 3px solid #E8A547;
  transition: all 0.3s ease;
}

.milestone:hover {
  background: rgba(232, 165, 71, 0.1);
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(232, 165, 71, 0.2);
}

.milestone strong {
  color: #E8A547;
  font-size: 18px;
  margin-right: 12px;
}

.vision {
  text-align: center;
  font-size: 18px;
  color: #2C7A8C;
  font-weight: 600;
  margin-top: 32px;
  padding: 20px;
  background: rgba(44, 122, 140, 0.1);
  border-radius: 8px;
  border: 1px dashed rgba(44, 122, 140, 0.3);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.faq-item {
  padding: 24px;
  background: rgba(27, 75, 90, 0.2);
  border: 1px solid rgba(44, 122, 140, 0.3);
  border-left: 4px solid #2C7A8C;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(27, 75, 90, 0.3);
  border-left-color: #E8A547;
  box-shadow: 0 4px 20px rgba(232, 165, 71, 0.2);
  transform: translateX(5px);
}

.faq-item h3 {
  color: #2C7A8C;
  font-size: 18px;
  margin-bottom: 12px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 39, 0.98);
  border-top: 2px solid rgba(44, 122, 140, 0.5);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.8);
  padding: 24px;
  z-index: 9999;
  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: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 300px;
  color: #B0B8C8;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-accept {
  background: linear-gradient(135deg, #2C7A8C, #1B4B5A);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(44, 122, 140, 0.4);
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #E8A547, #2C7A8C);
  box-shadow: 0 6px 20px rgba(232, 165, 71, 0.5);
  transform: translateY(-2px);
}

.cookie-reject {
  background: rgba(255, 255, 255, 0.1);
  color: #B0B8C8;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

.cookie-settings {
  background: transparent;
  color: #2C7A8C;
  border: 1px solid #2C7A8C;
}

.cookie-settings:hover {
  background: rgba(44, 122, 140, 0.1);
  color: #E8A547;
  border-color: #E8A547;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: linear-gradient(135deg, #0A0E27 0%, #1B1E3F 100%);
  border: 2px solid rgba(44, 122, 140, 0.5);
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(44, 122, 140, 0.5);
}

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

.cookie-category {
  padding: 20px;
  background: rgba(27, 75, 90, 0.2);
  border: 1px solid rgba(44, 122, 140, 0.3);
  border-radius: 8px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: #E8A547;
  margin-bottom: 8px;
  font-size: 16px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: #B0B8C8;
}

.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

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

.cookie-modal-buttons button {
  flex: 1 1 auto;
  padding: 12px 24px;
}

/* FOOTER */
footer {
  background: rgba(10, 14, 39, 0.95);
  border-top: 2px solid rgba(44, 122, 140, 0.3);
  padding: 60px 20px 20px;
  margin-top: 80px;
  box-shadow: 0 -4px 30px rgba(44, 122, 140, 0.1);
}

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

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

.footer-section h4 {
  color: #2C7A8C;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(44, 122, 140, 0.3));
}

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

.footer-nav a {
  color: #B0B8C8;
  font-size: 14px;
  transition: all 0.3s ease;
}

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

.footer-section p {
  color: #B0B8C8;
  font-size: 14px;
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(44, 122, 140, 0.2);
}

.footer-bottom p {
  color: #B0B8C8;
  font-size: 14px;
}

.compliance {
  text-align: center;
  color: #2C7A8C;
  font-size: 14px;
  margin-top: 32px;
  padding: 16px;
  background: rgba(44, 122, 140, 0.1);
  border-radius: 8px;
  border: 1px dashed rgba(44, 122, 140, 0.3);
}

/* UTILITY CLASSES */
.section-subtitle {
  text-align: center;
  color: #B0B8C8;
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

.return-nav,
.action-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

.return-nav a,
.action-buttons a {
  padding: 12px 24px;
  background: rgba(44, 122, 140, 0.1);
  border: 1px solid rgba(44, 122, 140, 0.3);
  border-radius: 6px;
  color: #2C7A8C;
  transition: all 0.3s ease;
}

.return-nav a:hover,
.action-buttons a:hover {
  background: rgba(232, 165, 71, 0.1);
  border-color: #E8A547;
  color: #E8A547;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 165, 71, 0.2);
}

.confirmation,
.response-promise,
.response-time,
.response-guarantee,
.guarantee,
.urgency,
.availability {
  text-align: center;
  color: #2C7A8C;
  font-weight: 600;
  font-size: 16px;
  padding: 16px;
  background: rgba(44, 122, 140, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(44, 122, 140, 0.3);
  margin: 24px auto;
  max-width: 700px;
}

.urgency {
  color: #E8A547;
  background: rgba(232, 165, 71, 0.1);
  border-color: rgba(232, 165, 71, 0.3);
}

.transition-text {
  text-align: center;
  font-size: 18px;
  color: #2C7A8C;
  font-weight: 600;
  margin-top: 40px;
  padding: 20px;
  background: rgba(44, 122, 140, 0.1);
  border-radius: 8px;
}

.requirements-list {
  list-style: none;
  padding: 0;
}

.requirements-list li {
  padding: 12px 12px 12px 32px;
  margin-bottom: 12px;
  background: rgba(27, 75, 90, 0.2);
  border-left: 3px solid #2C7A8C;
  border-radius: 4px;
  position: relative;
}

.requirements-list li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  color: #E8A547;
  font-weight: 700;
}

.income-note,
.help-note {
  color: #E8A547;
  font-style: italic;
  font-size: 14px;
  margin-top: 16px;
  padding: 12px;
  background: rgba(232, 165, 71, 0.1);
  border-radius: 6px;
  border-left: 3px solid #E8A547;
}

.contact-info {
  text-align: center;
  padding: 32px;
  background: rgba(27, 75, 90, 0.2);
  border: 1px solid rgba(44, 122, 140, 0.3);
  border-radius: 12px;
  margin-top: 40px;
}

.contact-info h3 {
  color: #2C7A8C;
  margin-bottom: 16px;
}

.visit-note {
  text-align: center;
  color: #2C7A8C;
  font-style: italic;
  font-size: 14px;
  margin-top: 24px;
}

.location-info {
  padding: 24px;
  background: rgba(27, 75, 90, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(44, 122, 140, 0.2);
  margin: 24px 0;
}

.location-info p {
  margin-bottom: 12px;
}

.thank-you-hero,
.thank-you-content {
  text-align: center;
  padding: 80px 20px;
}

.thank-you-message {
  max-width: 700px;
  margin: 0 auto 40px;
  padding: 40px;
  background: rgba(27, 75, 90, 0.2);
  border: 2px solid rgba(44, 122, 140, 0.3);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(44, 122, 140, 0.2);
}

.next-steps,
.next-actions {
  max-width: 800px;
  margin: 40px auto;
  padding: 32px;
  background: rgba(27, 75, 90, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(44, 122, 140, 0.2);
}

.next-steps h2,
.next-actions h2 {
  color: #2C7A8C;
  margin-bottom: 24px;
}

.next-steps ol {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.next-steps li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(44, 122, 140, 0.2);
}

.timeline-item {
  padding: 20px;
  background: rgba(27, 75, 90, 0.2);
  border-left: 3px solid #2C7A8C;
  border-radius: 6px;
  margin-bottom: 16px;
}

.timeline-item strong {
  display: block;
  color: #E8A547;
  margin-bottom: 8px;
  font-size: 16px;
}

.testimonial-preview {
  font-style: italic;
  color: #B0B8C8;
  margin: 24px 0;
  padding: 16px;
  background: rgba(27, 75, 90, 0.2);
  border-left: 3px solid #E8A547;
  border-radius: 6px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Mobile Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Hero */
  .hero,
  .hero-simple {
    padding: 60px 20px 40px;
  }
  
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn,
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Cards & Grids */
  .value-grid,
  .services-grid,
  .benefits-grid,
  .pain-grid,
  .packages-grid,
  .plans-grid,
  .testimonials-grid,
  .process-steps,
  .process-grid {
    flex-direction: column;
  }
  
  .value-card,
  .service-card,
  .benefit,
  .pain-item,
  .package,
  .plan,
  .testimonial-card,
  .step {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .plan.featured {
    transform: scale(1);
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
    text-align: center;
  }
  
  .footer-nav {
    align-items: center;
  }
  
  /* Forms */
  .form-container {
    padding: 24px;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Service Details */
  .service-detail {
    padding: 24px;
  }
  
  /* Stats */
  .stats,
  .stats-row,
  .key-stats,
  .hero-stats {
    flex-direction: column;
    align-items: stretch;
  }
  
  /* Sections */
  .section {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  /* Even smaller screens */
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .mobile-menu {
    width: 100%;
  }
}

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

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

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(44, 122, 140, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(232, 165, 71, 0.5);
  }
}

/* Apply animations */
.value-card,
.service-card,
.benefit,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
}

/* ACCESSIBILITY */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus states for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #E8A547;
  outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}