/* ===================================
   VIXA ENERGY - INDUSTRIAL MODERN CSS
   Design Style: Industrial Modern
   ================================== */

/* CSS RESET & BASE */
* {
  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', sans-serif;
  line-height: 1.6;
  color: #2C2C2C;
  background-color: #F5F5F5;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1A1A1A;
  margin-bottom: 16px;
}

h1 { font-size: 48px; letter-spacing: -0.5px; }
h2 { font-size: 36px; letter-spacing: -0.3px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #4A4A4A;
}

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

a:hover {
  color: #E09615;
}

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

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

strong {
  font-weight: 700;
  color: #1A1A1A;
}

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

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

/* HEADER */
header {
  background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #E09615;
}

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

.logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(224, 150, 21, 0.3));
}

.logo .tagline {
  font-size: 12px;
  color: #E09615;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.main-nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #E09615;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #E09615;
}

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

.cta-button {
  background: linear-gradient(135deg, #E09615 0%, #F5A623 100%);
  color: #1A1A1A;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(224, 150, 21, 0.3);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-button:hover {
  background: linear-gradient(135deg, #F5A623 0%, #E09615 100%);
  box-shadow: 0 6px 20px rgba(224, 150, 21, 0.5);
  transform: translateY(-2px);
  color: #FFFFFF;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #E09615;
  color: #1A1A1A;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #F5A623;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #1A1A1A 0%, #2C2C2C 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #E09615;
  border: 2px solid #E09615;
  padding: 8px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #E09615;
  color: #1A1A1A;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  gap: 0;
}

.mobile-nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(224, 150, 21, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #E09615;
  padding-left: 12px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 50%, #3A3A3A 100%);
  color: #FFFFFF;
  padding: 100px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(224, 150, 21, 0.03) 10px,
    rgba(224, 150, 21, 0.03) 20px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

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

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-primary {
  background: linear-gradient(135deg, #E09615 0%, #F5A623 100%);
  color: #1A1A1A;
  padding: 16px 40px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(224, 150, 21, 0.4);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-block;
}

.cta-primary:hover {
  background: linear-gradient(135deg, #F5A623 0%, #E09615 100%);
  box-shadow: 0 8px 28px rgba(224, 150, 21, 0.6);
  transform: translateY(-3px);
  color: #FFFFFF;
}

.cta-secondary {
  background: transparent;
  color: #FFFFFF;
  padding: 16px 40px;
  border: 2px solid #E09615;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-secondary:hover {
  background: #E09615;
  color: #1A1A1A;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(224, 150, 21, 0.4);
}

.trust-indicators {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-indicators span {
  color: #E09615;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-indicators span::before {
  content: '✓';
  color: #E09615;
  font-weight: 700;
  font-size: 18px;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #2C2C2C 0%, #3A3A3A 100%);
  color: #FFFFFF;
  padding: 80px 20px 60px;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(224, 150, 21, 0.05) 40px,
    rgba(224, 150, 21, 0.05) 80px
  );
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.page-hero p {
  color: #E0E0E0;
  font-size: 18px;
}

.breadcrumbs {
  margin-bottom: 24px;
  font-size: 14px;
  color: #E0E0E0;
}

.breadcrumbs a {
  color: #E09615;
  transition: all 0.3s ease;
}

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

/* SECTIONS */
.benefits {
  background: #FFFFFF;
  padding: 80px 20px;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #1A1A1A;
  position: relative;
  padding-bottom: 16px;
}

.benefits h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #E09615 0%, #F5A623 100%);
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefit-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background: #F8F8F8;
  padding: 32px 24px;
  border-radius: 4px;
  border-left: 4px solid #E09615;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(224, 150, 21, 0.02) 20px,
    rgba(224, 150, 21, 0.02) 40px
  );
  pointer-events: none;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-left-color: #F5A623;
}

.benefit-card h3 {
  color: #15407A;
  margin-bottom: 12px;
  font-size: 20px;
}

.benefit-card p {
  color: #4A4A4A;
  font-size: 15px;
  line-height: 1.6;
}

/* SERVICES */
.services-overview {
  background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
  padding: 80px 20px;
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 16px;
}

.services-overview h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #E09615 0%, #F5A623 100%);
}

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

.service-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  border: 2px solid transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #E09615 0%, #F5A623 100%);
  transition: height 0.3s ease;
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: #E09615;
}

.service-card.featured {
  border: 2px solid #E09615;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF9F0 100%);
}

.service-card.featured::after {
  content: 'POLECANE';
  position: absolute;
  top: 12px;
  right: 12px;
  background: #E09615;
  color: #1A1A1A;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.service-card h3 {
  color: #15407A;
  font-size: 22px;
  margin-bottom: 8px;
}

.service-card p {
  color: #4A4A4A;
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card .price {
  color: #E09615;
  font-size: 28px;
  font-weight: 700;
  margin-top: 8px;
  display: block;
}

.btn-link {
  display: inline-block;
  color: #15407A;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 0;
  transition: all 0.3s ease;
  position: relative;
}

.btn-link::after {
  content: '→';
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.btn-link:hover {
  color: #E09615;
}

.btn-link:hover::after {
  margin-left: 16px;
}

/* PROCESS SECTION */
.process {
  background: #FFFFFF;
  padding: 80px 20px;
}

.process h2 {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 16px;
}

.process h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #E09615 0%, #F5A623 100%);
}

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

.step {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  text-align: center;
  padding: 32px 20px;
  background: #F8F8F8;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #E09615 0%, #F5A623 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.step:hover::before {
  transform: scaleX(1);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.step-number {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #E09615 0%, #F5A623 100%);
  color: #1A1A1A;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(224, 150, 21, 0.3);
}

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

.step p {
  color: #4A4A4A;
  font-size: 14px;
}

.timeline {
  text-align: center;
  color: #E09615;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* TRUST SECTION */
.trust-section {
  background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  position: relative;
}

.trust-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(224, 150, 21, 0.05) 20px,
    rgba(224, 150, 21, 0.05) 40px
  );
  pointer-events: none;
}

.trust-section .container {
  position: relative;
  z-index: 1;
}

.trust-section h2 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 16px;
}

.trust-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #E09615 0%, #F5A623 100%);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.stat {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(224, 150, 21, 0.3);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.stat:hover {
  background: rgba(224, 150, 21, 0.1);
  border-color: #E09615;
  transform: translateY(-4px);
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #E09615;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: #E0E0E0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* TESTIMONIALS */
.testimonials {
  background: #F5F5F5;
  padding: 80px 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 16px;
}

.testimonials h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #E09615 0%, #F5A623 100%);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.testimonial-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 4px;
  border-left: 4px solid #E09615;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-left-color: #F5A623;
}

.testimonial-card p {
  font-style: italic;
  color: #2C2C2C;
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  padding-left: 24px;
}

.testimonial-card p::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 48px;
  color: #E09615;
  font-style: normal;
  line-height: 1;
}

.testimonial-card .author {
  font-weight: 700;
  color: #15407A;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-style: normal;
  padding-left: 0;
}

.testimonial-card .author::before {
  display: none;
}

/* CTA FINAL */
.cta-final {
  background: linear-gradient(135deg, #15407A 0%, #1B4B8C 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 60px,
    rgba(224, 150, 21, 0.05) 60px,
    rgba(224, 150, 21, 0.05) 120px
  );
  pointer-events: none;
}

.cta-final .container {
  position: relative;
  z-index: 1;
}

.cta-final h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 40px;
}

.cta-final p {
  color: #E0E0E0;
  font-size: 18px;
  margin-bottom: 32px;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #2C2C2C 0%, #3A3A3A 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-section p {
  color: #E0E0E0;
  font-size: 18px;
  margin-bottom: 32px;
}

/* SERVICES DETAILED */
.services-detailed {
  padding: 60px 20px;
  background: #FFFFFF;
}

.services-detailed h2 {
  margin-bottom: 40px;
  margin-top: 40px;
  padding-bottom: 16px;
  border-bottom: 3px solid #E09615;
}

.service-detail {
  background: #F8F8F8;
  padding: 32px 24px;
  margin-bottom: 24px;
  border-radius: 4px;
  border-left: 4px solid #E09615;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-detail:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border-left-color: #F5A623;
}

.service-detail h3 {
  color: #15407A;
  margin-bottom: 12px;
  font-size: 22px;
}

.service-detail p {
  margin-bottom: 16px;
}

.service-detail .price {
  display: block;
  color: #E09615;
  font-size: 28px;
  font-weight: 700;
  margin: 16px 0;
}

.service-detail ul {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
}

.service-detail ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

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

.service-detail.featured {
  border: 2px solid #E09615;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF9F0 100%);
  padding: 32px 24px;
  position: relative;
}

.service-detail.featured::after {
  content: 'NAJLEPSZY WYBÓR';
  position: absolute;
  top: 12px;
  right: 12px;
  background: #E09615;
  color: #1A1A1A;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.savings {
  color: #E09615;
  font-weight: 700;
  font-size: 16px;
  margin-top: 8px;
}

/* WHAT INCLUDED */
.what-included {
  background: #F5F5F5;
  padding: 60px 20px;
}

.what-included h2 {
  margin-bottom: 32px;
}

.included-list {
  list-style: none;
  padding-left: 0;
  max-width: 700px;
}

.included-list li {
  padding: 16px 16px 16px 48px;
  margin-bottom: 12px;
  background: #FFFFFF;
  border-left: 4px solid #E09615;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.included-list li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  color: #E09615;
  font-weight: 700;
  font-size: 20px;
}

.included-list li:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* PRICING TABLES */
.pricing-tables {
  background: #FFFFFF;
  padding: 60px 20px;
}

.pricing-tables h2 {
  margin-bottom: 40px;
  margin-top: 40px;
  padding-bottom: 16px;
  border-bottom: 3px solid #E09615;
}

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

.pricing-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 240px;
  background: #F8F8F8;
  padding: 32px 24px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: #E09615;
}

.pricing-card h3 {
  color: #15407A;
  font-size: 20px;
  margin-bottom: 8px;
}

.pricing-card .price {
  color: #E09615;
  font-size: 32px;
  font-weight: 700;
  margin: 16px 0;
  display: block;
}

.pricing-card ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
  flex-grow: 1;
}

.pricing-card ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  font-size: 14px;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E09615;
  font-weight: 700;
}

/* FEATURED PACKAGE */
.featured-package {
  background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
  padding: 60px 20px;
}

.package-card {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF9F0 100%);
  padding: 48px 40px;
  border: 3px solid #E09615;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  position: relative;
}

.package-card::before {
  content: 'BESTSELLER';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #E09615;
  color: #1A1A1A;
  padding: 8px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
}

.package-card h2 {
  color: #15407A;
  margin-bottom: 16px;
}

.package-price {
  display: block;
  color: #E09615;
  font-size: 48px;
  font-weight: 700;
  margin: 24px 0;
}

.package-card .savings {
  display: block;
  color: #E09615;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 24px;
}

.package-card ul {
  list-style: none;
  padding-left: 0;
  margin: 32px 0;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.package-card ul li {
  padding: 12px 12px 12px 40px;
  position: relative;
  margin-bottom: 12px;
  font-size: 16px;
}

.package-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E09615;
  font-weight: 700;
  font-size: 20px;
}

/* ADDITIONAL COSTS & PAYMENT */
.additional-costs,
.payment-options,
.guarantee {
  background: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 40px;
}

.additional-costs h2,
.payment-options h2,
.guarantee h2 {
  margin-bottom: 24px;
  color: #15407A;
}

.disclaimer {
  font-style: italic;
  color: #E09615;
  font-weight: 600;
  margin-bottom: 16px;
}

.guarantee {
  background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
  text-align: center;
  border-left: 4px solid #E09615;
  border-right: 4px solid #E09615;
}

.guarantee h2 {
  color: #E09615;
}

/* ABOUT STORY */
.about-story {
  background: #FFFFFF;
  padding: 60px 20px;
}

.about-story h2 {
  margin-bottom: 24px;
}

.about-story .stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.about-story .stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-story .stat-item .number {
  font-size: 36px;
  font-weight: 700;
  color: #E09615;
  font-family: 'Montserrat', sans-serif;
}

.about-story .stat-item .label {
  font-size: 14px;
  color: #4A4A4A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* MISSION VISION */
.mission-vision {
  background: #F5F5F5;
  padding: 60px 20px;
}

.mission-vision h2 {
  margin-bottom: 24px;
}

.mission {
  font-size: 20px;
  font-weight: 600;
  color: #15407A;
  text-align: center;
  margin-bottom: 48px;
  padding: 24px;
  background: #FFFFFF;
  border-left: 4px solid #E09615;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.value-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 240px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 4px;
  border-top: 4px solid #E09615;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.value-card h3 {
  color: #15407A;
  margin-bottom: 12px;
  font-size: 20px;
}

/* TEAM SECTION */
.team-section {
  background: #FFFFFF;
  padding: 60px 20px;
}

.team-section h2 {
  margin-bottom: 16px;
}

.team-section p {
  font-size: 18px;
  font-weight: 600;
  color: #15407A;
  margin-bottom: 24px;
}

.team-section ul {
  max-width: 600px;
}

/* ACHIEVEMENTS */
.achievements {
  background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
  color: #FFFFFF;
  padding: 60px 20px;
}

.achievements h2 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 48px;
}

.achievements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.achievement {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(224, 150, 21, 0.3);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.achievement:hover {
  background: rgba(224, 150, 21, 0.1);
  border-color: #E09615;
  transform: scale(1.05);
}

.achievement .number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #E09615;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.achievement p {
  color: #E0E0E0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* PROCESS DETAILED */
.process-detailed {
  background: #FFFFFF;
  padding: 60px 20px;
}

.process-step {
  margin-bottom: 48px;
  padding: 32px 24px;
  background: #F8F8F8;
  border-left: 6px solid #E09615;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
}

.process-step .step-number {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #E09615 0%, #F5A623 100%);
  color: #1A1A1A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(224, 150, 21, 0.3);
}

.process-step h2 {
  color: #15407A;
  margin-top: 8px;
  margin-bottom: 16px;
}

.step-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.step-meta span {
  color: #E09615;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timeline-summary {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #E09615;
  padding: 24px;
  background: #F8F8F8;
  border: 2px solid #E09615;
  border-radius: 4px;
  margin-top: 32px;
}

/* DOCUMENTS NEEDED */
.documents-needed {
  background: #F5F5F5;
  padding: 60px 20px;
}

.doc-category {
  margin-bottom: 32px;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.doc-category h3 {
  color: #15407A;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #E09615;
}

.note {
  font-style: italic;
  color: #E09615;
  font-weight: 600;
  margin-top: 24px;
}

/* WHAT YOU GET */
.what-you-get {
  background: #FFFFFF;
  padding: 60px 20px;
}

.what-you-get h2 {
  margin-bottom: 32px;
}

.what-you-get ul {
  list-style: none;
  padding-left: 0;
  max-width: 700px;
}

.what-you-get ul li {
  padding: 16px 16px 16px 48px;
  margin-bottom: 12px;
  background: #F8F8F8;
  border-left: 4px solid #E09615;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.what-you-get ul li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  color: #E09615;
  font-weight: 700;
  font-size: 20px;
}

.what-you-get ul li:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* FAQ PROCESS */
.faq-process {
  background: #F5F5F5;
  padding: 60px 20px;
}

.faq-process h2 {
  margin-bottom: 32px;
}

.faq-item {
  margin-bottom: 24px;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 4px;
  border-left: 4px solid #E09615;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

/* CONTACT OPTIONS */
.contact-options {
  background: #FFFFFF;
  padding: 60px 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.contact-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: #F8F8F8;
  padding: 32px 24px;
  border-radius: 4px;
  border-left: 4px solid #E09615;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contact-card h3 {
  color: #15407A;
  margin-bottom: 16px;
  font-size: 20px;
}

.contact-value {
  color: #E09615;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-detail {
  color: #4A4A4A;
  font-size: 14px;
}

/* CONTACT FORM */
.contact-form-section {
  background: #F5F5F5;
  padding: 60px 20px;
}

.contact-form-section h2 {
  margin-bottom: 16px;
}

.contact-form-section > p {
  margin-bottom: 32px;
  color: #4A4A4A;
}

.form-container {
  max-width: 700px;
  background: #FFFFFF;
  padding: 40px 32px;
  border-radius: 4px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

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

.form-field label {
  display: block;
  font-weight: 600;
  color: #15407A;
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-placeholder {
  height: 48px;
  background: #F8F8F8;
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.input-placeholder:hover {
  border-color: #E09615;
}

.select-placeholder {
  height: 48px;
  background: #F8F8F8;
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.select-placeholder:hover {
  border-color: #E09615;
}

.textarea-placeholder {
  height: 120px;
  background: #F8F8F8;
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.textarea-placeholder:hover {
  border-color: #E09615;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400 !important;
  text-transform: none !important;
  cursor: pointer;
}

.checkbox-placeholder {
  width: 20px;
  height: 20px;
  background: #F8F8F8;
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.checkbox-label:hover .checkbox-placeholder {
  border-color: #E09615;
}

.form-actions {
  margin-top: 32px;
}

.submit-button {
  display: inline-block;
  background: linear-gradient(135deg, #E09615 0%, #F5A623 100%);
  color: #1A1A1A;
  padding: 16px 48px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(224, 150, 21, 0.4);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.submit-button:hover {
  background: linear-gradient(135deg, #F5A623 0%, #E09615 100%);
  box-shadow: 0 8px 28px rgba(224, 150, 21, 0.6);
  transform: translateY(-2px);
  color: #FFFFFF;
}

/* OFFICE INFO */
.office-info {
  background: #FFFFFF;
  padding: 60px 20px;
}

.office-info h2 {
  margin-bottom: 32px;
}

.office-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 700px;
}

.office-details p {
  padding: 20px;
  background: #F8F8F8;
  border-left: 4px solid #E09615;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* CONSULTATION CTA */
.consultation-cta {
  background: linear-gradient(135deg, #15407A 0%, #1B4B8C 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
}

.consultation-cta h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.consultation-cta p {
  color: #E0E0E0;
  font-size: 18px;
  margin-bottom: 24px;
}

.consultation-cta ul {
  list-style: none;
  padding-left: 0;
  max-width: 500px;
  margin: 0 auto 32px;
  text-align: left;
}

.consultation-cta ul li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: #E0E0E0;
}

.consultation-cta ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E09615;
  font-weight: 700;
  font-size: 20px;
}

/* RESPONSE TIME */
.response-time {
  background: #F5F5F5;
  padding: 60px 20px;
}

.response-time h2 {
  margin-bottom: 24px;
}

.response-time ul {
  max-width: 500px;
  margin-bottom: 24px;
}

.urgent-note {
  font-weight: 700;
  color: #E09615;
  font-size: 16px;
  padding: 16px;
  background: #FFFFFF;
  border-left: 4px solid #E09615;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  max-width: 500px;
}

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

.legal-content h2 {
  color: #15407A;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #E09615;
}

.legal-content ul {
  margin-bottom: 24px;
}

.legal-content a {
  color: #E09615;
  font-weight: 600;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #15407A 0%, #1B4B8C 100%);
  color: #FFFFFF;
  padding: 100px 20px 80px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #E09615;
  color: #1A1A1A;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(224, 150, 21, 0.4);
}

.thank-you-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.thank-you-hero p {
  color: #E0E0E0;
  font-size: 18px;
  margin-bottom: 32px;
}

/* NEXT STEPS */
.next-steps {
  background: #FFFFFF;
  padding: 60px 20px;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 40px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.step-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  background: #F8F8F8;
  padding: 32px 24px;
  border-radius: 4px;
  text-align: center;
  border-top: 4px solid #E09615;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.step-num {
  display: block;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #E09615 0%, #F5A623 100%);
  color: #1A1A1A;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(224, 150, 21, 0.3);
}

.step-card p {
  color: #4A4A4A;
  font-size: 15px;
}

/* WHILE YOU WAIT */
.while-you-wait {
  background: #F5F5F5;
  padding: 60px 20px;
}

.while-you-wait h2 {
  margin-bottom: 24px;
}

.while-you-wait ul {
  list-style: none;
  padding-left: 0;
  max-width: 600px;
}

.while-you-wait ul li {
  margin-bottom: 16px;
}

.while-you-wait ul li a {
  display: block;
  padding: 16px 20px;
  background: #FFFFFF;
  border-left: 4px solid #E09615;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  color: #15407A;
  font-weight: 600;
  transition: all 0.3s ease;
}

.while-you-wait ul li a:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  color: #E09615;
}

/* SOCIAL PROOF */
.social-proof {
  background: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
}

.social-proof h2 {
  margin-bottom: 40px;
}

/* NAVIGATION LINKS */
.navigation-links {
  background: #F5F5F5;
  padding: 60px 20px;
}

.navigation-links h2 {
  text-align: center;
  margin-bottom: 40px;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}

.link-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 200px;
  background: #FFFFFF;
  padding: 24px 20px;
  border-radius: 4px;
  text-align: center;
  border: 2px solid #E0E0E0;
  color: #15407A;
  font-weight: 600;
  transition: all 0.3s ease;
}

.link-card:hover {
  border-color: #E09615;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  color: #E09615;
}

/* HELPFUL LINKS */
.helpful-links {
  background: #F5F5F5;
  padding: 60px 20px;
}

.helpful-links h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
  color: #E0E0E0;
  padding: 60px 20px 20px;
  border-top: 4px solid #E09615;
}

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

.footer-section {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
}

.footer-section h3 {
  color: #E09615;
  margin-bottom: 16px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-section ul {
  list-style: none;
  padding-left: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #C0C0C0;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-section ul li a:hover {
  color: #E09615;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(224, 150, 21, 0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: #C0C0C0;
  font-size: 14px;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

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

.footer-legal a:hover {
  color: #E09615;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid #E09615;
}

.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 300px;
  font-size: 14px;
  color: #E0E0E0;
}

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

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

.cookie-accept {
  background: linear-gradient(135deg, #E09615 0%, #F5A623 100%);
  color: #1A1A1A;
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #F5A623 0%, #E09615 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(224, 150, 21, 0.4);
}

.cookie-reject {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #E0E0E0;
}

.cookie-reject:hover {
  border-color: #E09615;
  color: #E09615;
}

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

.cookie-settings:hover {
  background: #E09615;
  color: #1A1A1A;
}

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

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

.cookie-modal-content {
  background: #FFFFFF;
  max-width: 600px;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-header {
  background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
  color: #FFFFFF;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #E09615;
}

.cookie-modal-header h3 {
  color: #FFFFFF;
  margin: 0;
  font-size: 20px;
}

.cookie-modal-close {
  background: transparent;
  border: none;
  color: #E09615;
  font-size: 28px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  transform: rotate(90deg);
  color: #F5A623;
}

.cookie-modal-body {
  padding: 32px 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F8F8F8;
  border-left: 4px solid #E09615;
  border-radius: 4px;
}

.cookie-category h4 {
  color: #15407A;
  margin-bottom: 8px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  color: #4A4A4A;
  font-size: 14px;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 24px;
  background: #C0C0C0;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #E09615;
}

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

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

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

.cookie-modal-footer {
  padding: 24px;
  background: #F8F8F8;
  border-top: 1px solid #E0E0E0;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  /* Hide desktop nav */
  .main-nav {
    display: none;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Header */
  .header-content {
    justify-content: center;
  }
  
  .logo {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .cta-button {
    display: none;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px 40px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Sections */
  .section {
    padding: 40px 20px;
  }
  
  /* Grids */
  .benefits-grid,
  .services-grid,
  .process-steps,
  .stats-grid,
  .testimonials-grid,
  .pricing-grid,
  .values-grid,
  .achievements-grid,
  .contact-grid,
  .steps-grid,
  .links-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .step,
  .stat,
  .testimonial-card,
  .pricing-card,
  .value-card,
  .achievement,
  .contact-card,
  .step-card,
  .link-card {
    flex: 1 1 100%;
  }
  
  /* CTA Group */
  .cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-primary,
  .cta-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Trust Indicators */
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Forms */
  .form-container {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  /* Container */
  .container {
    padding: 0 16px;
  }
  
  /* Typography */
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  /* Sections */
  .section {
    padding: 32px 16px;
  }
  
  /* Hero */
  .hero h1 {
    font-size: 28px;
  }
  
  /* Buttons */
  .cta-primary,
  .cta-secondary,
  .submit-button {
    padding: 14px 24px;
    font-size: 14px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .cta-button,
  .cta-group,
  header,
  footer {
    display: none;
  }
  
  body {
    background: #FFFFFF;
    color: #000000;
  }
  
  a {
    color: #000000;
    text-decoration: underline;
  }
}

/* UTILITIES */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

.fade-in {
  animation: fadeIn 0.6s ease;
}

.slide-in-up {
  animation: slideInUp 0.6s ease;
}

.slide-in-right {
  animation: slideInRight 0.6s ease;
}