/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #0F172A;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* GEOMETRIC STRUCTURED DESIGN - Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

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

h2 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 32px;
  border-left: 4px solid #2563EB;
  padding-left: 16px;
}

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

h4 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
}

a {
  color: #2563EB;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1e40af;
}

ul {
  list-style: none;
}

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

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

/* GEOMETRIC STRUCTURED - Header */
header {
  background: linear-gradient(135deg, #0F172A 0%, #1e293b 100%);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #2563EB;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

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

.logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.main-nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #F59E0B;
  border-bottom-color: #F59E0B;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #2563EB;
  color: #FFFFFF;
  border: none;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 0;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
  transition: all 0.3s ease;
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #0F172A 0%, #1e293b 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  border-left: 4px solid #2563EB;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #2563EB;
  border-color: #2563EB;
  transform: rotate(90deg);
}

/* Mobile Navigation Links */
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 24px 24px 24px;
  gap: 0;
}

.mobile-nav a {
  color: #FFFFFF;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: block;
}

.mobile-nav a:hover {
  background: rgba(37, 99, 235, 0.2);
  padding-left: 32px;
  color: #F59E0B;
}

/* GEOMETRIC STRUCTURED - Hero Section */
.hero {
  background: linear-gradient(135deg, #2563EB 0%, #1e40af 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

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

.hero p {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.premium-hero {
  background: linear-gradient(135deg, #F59E0B 0%, #d97706 100%);
}

.legal-hero {
  background: linear-gradient(135deg, #0F172A 0%, #1e293b 100%);
  padding: 60px 20px;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* GEOMETRIC STRUCTURED - Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: #2563EB;
  color: #FFFFFF;
  border-color: #2563EB;
}

.btn-primary:hover {
  background: #1e40af;
  border-color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
  background: transparent;
   transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: #FFFFFF;
  color: #2563EB;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

/* Trust Indicators */
.trust-indicators {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.trust-indicators p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}

/* Section Spacing */
section {
  padding: 80px 20px;
  margin-bottom: 0;
  position: relative;
}

section:nth-child(even) {
  background: #F8FAFC;
}

/* GEOMETRIC STRUCTURED - Category Grid */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.category-card {
  background: #FFFFFF;
  border: 3px solid #E2E8F0;
  padding: 32px;
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2563EB 0%, #F59E0B 100%);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.category-card:hover::before {
  transform: translateX(0);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.2);
  border-color: #2563EB;
}

.category-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.category-card:hover img {
  filter: grayscale(0%);
}

.category-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #0F172A;
}

.category-card p {
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

/* Category Grid Large */
.category-grid-large {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.category-card-large {
  background: #FFFFFF;
  border: 3px solid #E2E8F0;
  padding: 40px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  transition: all 0.3s ease;
  position: relative;
}

.category-card-large::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #2563EB;
  transition: width 0.3s ease;
}

.category-card-large:hover::after {
  width: 100%;
}

.category-card-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  border-color: #2563EB;
}

.category-card-large img {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

.category-card-large h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.category-card-large p {
  color: #64748b;
  font-weight: 600;
  margin-bottom: 16px;
}

.category-card-large ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-card-large ul li {
  color: #0F172A;
  font-size: 14px;
  padding-left: 24px;
  position: relative;
}

.category-card-large ul li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: #2563EB;
  font-size: 20px;
}

/* GEOMETRIC STRUCTURED - Features Grid */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #FFFFFF;
  border-left: 4px solid #2563EB;
  padding: 32px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.15);
  border-left-width: 8px;
}

.feature-item img {
  width: 56px;
  height: 56px;
}

.feature-item h3 {
  margin: 0;
  font-size: 20px;
}

.feature-item p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
}

/* Premium Features */
.feature-premium {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #FFFFFF;
  border: 3px solid #E2E8F0;
  padding: 40px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-premium::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 4px;
  background: linear-gradient(90deg, #2563EB, #F59E0B);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-premium:hover::before {
  transform: scaleX(1);
}

.feature-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(37, 99, 235, 0.2);
  border-color: #2563EB;
}

.feature-premium img {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
}

.feature-premium h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.feature-premium p {
  color: #64748b;
  margin: 0;
}

/* How It Works - Steps */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  padding: 24px;
  position: relative;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #2563EB;
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  border: 4px solid #FFFFFF;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

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

.step p {
  color: #64748b;
  font-size: 14px;
  margin: 0;
}

/* Detailed Steps */
.steps-detailed {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.step-detailed {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #FFFFFF;
  border: 3px solid #E2E8F0;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
}

.step-detailed::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #2563EB 0%, #F59E0B 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-detailed:hover::before {
  opacity: 1;
}

.step-detailed:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-color: #2563EB;
}

.step-detailed .step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  font-size: 24px;
  margin: 0;
}

.step-detailed h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.step-detailed p {
  color: #64748b;
  margin: 0;
  line-height: 1.7;
}

/* GEOMETRIC STRUCTURED - Testimonials */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FFFFFF;
  border: 3px solid #E2E8F0;
  border-top: 6px solid #2563EB;
  padding: 32px;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 72px;
  font-weight: 700;
  color: rgba(37, 99, 235, 0.1);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
  border-top-width: 10px;
}

.testimonial-card p {
  color: #0F172A;
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid #E2E8F0;
  width: 100%;
}

.testimonial-author strong {
  color: #0F172A;
  font-weight: 700;
  font-size: 16px;
}

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

/* Benefits Grid */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #FFFFFF;
  border: 3px solid #2563EB;
  padding: 40px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 48px rgba(37, 99, 235, 0.2);
  background: linear-gradient(135deg, #2563EB 0%, #1e40af 100%);
}

.benefit-item:hover h3,
.benefit-item:hover p {
  color: #FFFFFF;
}

.benefit-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

.benefit-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-item p {
  color: #64748b;
  margin: 0;
}

/* GEOMETRIC STRUCTURED - Pricing */
.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 3px solid #E2E8F0;
  padding: 40px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card.featured {
  border-color: #2563EB;
  border-width: 4px;
  transform: scale(1.05);
  box-shadow: 0 16px 48px rgba(37, 99, 235, 0.2);
}

.pricing-card:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.15);
}

.pricing-card .badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #F59E0B;
  color: #FFFFFF;
  padding: 8px 24px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  padding: 24px 0;
  border-top: 2px solid #E2E8F0;
  border-bottom: 2px solid #E2E8F0;
}

.price .amount {
  font-size: 48px;
  font-weight: 700;
  color: #2563EB;
  line-height: 1;
}

.price .period {
  font-size: 16px;
  color: #64748b;
  margin-top: 8px;
}

.pricing-card .features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-card .features-list li {
  color: #0F172A;
  font-size: 14px;
  padding-left: 32px;
  position: relative;
  line-height: 1.6;
}

.pricing-card .features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2563EB;
  font-weight: 700;
  font-size: 18px;
}

.pricing-card .btn {
  margin-top: auto;
  width: 100%;
}

/* Plans Grid */
.plans-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 3px solid #E2E8F0;
  padding: 40px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.plan-card.featured {
  border-color: #2563EB;
  border-width: 4px;
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.2);
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.plan-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.plan-price {
  font-size: 40px;
  font-weight: 700;
  color: #2563EB;
  margin-bottom: 24px;
}

.plan-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin-bottom: 24px;
}

.plan-card ul li {
  color: #0F172A;
  padding-left: 28px;
  position: relative;
  font-size: 14px;
}

.plan-card ul li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: #2563EB;
  font-size: 20px;
}

/* Services Grid */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-left: 6px solid #2563EB;
  padding: 32px;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.15);
  border-left-width: 10px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #0F172A;
}

.service-card p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 16px;
}

.service-price {
  display: inline-block;
  background: #2563EB;
  color: #FFFFFF;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: auto;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 48px;
  position: relative;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #2563EB 0%, #F59E0B 100%);
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.timeline-item .year {
  position: absolute;
  left: -60px;
  width: 48px;
  height: 48px;
  background: #2563EB;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  border: 4px solid #FFFFFF;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.timeline-item h3 {
  font-size: 22px;
  margin: 0;
}

.timeline-item p {
  color: #64748b;
  margin: 0;
  line-height: 1.7;
}

/* Values Grid */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.value-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 3px solid #2563EB;
  padding: 32px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2563EB 0%, #1e40af 100%);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 0;
}

.value-card:hover::before {
  transform: translateY(0);
}

.value-card:hover {
  color: #FFFFFF;
}

.value-card:hover h3,
.value-card:hover p {
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.value-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.value-card p {
  color: #64748b;
  margin: 0;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

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

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #2563EB 0%, #1e40af 100%);
  color: #FFFFFF;
  padding: 40px;
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  border: 4px solid #2563EB;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 48px rgba(37, 99, 235, 0.4);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}

.stat-card p {
  font-size: 16px;
  margin: 0;
  opacity: 0.95;
}

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

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #FFFFFF;
  border: 3px solid #E2E8F0;
  padding: 40px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  transition: all 0.3s ease;
  position: relative;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #2563EB 0%, #F59E0B 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
  border-color: #2563EB;
}

.contact-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

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

.contact-card p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.contact-card strong {
  color: #0F172A;
  font-size: 16px;
}

/* Departments Grid */
.departments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 48px;
}

.department-card {
  display: flex;
  flex-direction: column;
  background: #2563EB;
  color: #FFFFFF;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 240px;
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid #2563EB;
}

.department-card:hover {
  background: #1e40af;
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
}

.department-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.department-card p {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* Features List */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 48px;
}

.feature-explanation {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  background: #FFFFFF;
  border-left: 6px solid #2563EB;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-explanation:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.15);
  border-left-width: 10px;
}

.feature-explanation h3 {
  font-size: 22px;
  margin: 0;
}

.feature-explanation p {
  color: #64748b;
  margin: 0;
  line-height: 1.7;
}

/* Support Channels */
.support-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 40px 0;
}

.support-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px;
  background: #FFFFFF;
  border: 3px solid #2563EB;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 220px;
  transition: all 0.3s ease;
}

.support-item:hover {
  background: #2563EB;
  color: #FFFFFF;
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
}

.support-item:hover p {
  color: #FFFFFF;
}

.support-item img {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}

.support-item p {
  font-weight: 600;
  margin: 0;
}

/* Location Grid */
.location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 48px;
  align-items: flex-start;
}

.location-info {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
  border-left: 4px solid #2563EB;
  padding-left: 12px;
}

.location-info p {
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.location-info strong {
  color: #0F172A;
}

.map-placeholder {
  flex: 1 1 400px;
  min-height: 400px;
  background: #E2E8F0;
  border: 4px solid #2563EB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-weight: 600;
}

/* Legal Content */
.legal-content {
  padding: 60px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 48px;
  border: 3px solid #E2E8F0;
  border-top: 6px solid #2563EB;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.content-wrapper h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 24px;
  color: #0F172A;
  border-left: 6px solid #2563EB;
  padding-left: 16px;
}

.content-wrapper h3 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #2563EB;
}

.content-wrapper p {
  color: #0F172A;
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.content-wrapper ul li {
  color: #0F172A;
  padding-left: 32px;
  position: relative;
  line-height: 1.7;
}

.content-wrapper ul li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: #2563EB;
  font-size: 24px;
}

.content-wrapper strong {
  color: #0F172A;
  font-weight: 700;
}

.last-updated {
  color: #64748b;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 16px;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #2563EB 0%, #1e40af 100%);
  padding: 100px 20px;
  text-align: center;
  color: #FFFFFF;
}

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

.success-icon {
  width: 120px;
  height: 120px;
  background: #FFFFFF;
  color: #2563EB;
  font-size: 80px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  border: 6px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

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

.next-steps .steps-grid {
  margin-top: 48px;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #FFFFFF;
  border: 3px solid #E2E8F0;
  border-top: 6px solid #2563EB;
  padding: 32px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 240px;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
  border-top-width: 10px;
}

.step-card .step-number {
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.step-card p {
  color: #64748b;
  font-size: 14px;
  margin: 0;
}

/* Actions Grid */
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 48px;
}

.action-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 3px solid #E2E8F0;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.action-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2563EB 0%, #1e40af 100%);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 0;
}

.action-card:hover::before {
  transform: translateY(0);
}

.action-card:hover {
  color: #FFFFFF;
  border-color: #2563EB;
}

.action-card:hover h3,
.action-card:hover p {
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.action-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.action-card p {
  color: #64748b;
  font-size: 14px;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Urgent Contact */
.urgent-contact {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.urgent-contact .contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #FFFFFF;
  border: 4px solid #2563EB;
  padding: 40px;
  max-width: 400px;
}

.urgent-contact img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.urgent-contact p {
  margin-bottom: 8px;
}

/* CTA Sections */
.cta-final,
.cta-support,
.cta-pricing,
.contact-cta {
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.cta-final::before,
.cta-support::before,
.cta-pricing::before,
.contact-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 50px,
    rgba(37, 99, 235, 0.05) 50px,
    rgba(37, 99, 235, 0.05) 100px
  );
  pointer-events: none;
}

.cta-final h2,
.cta-support h2,
.cta-pricing h2,
.contact-cta h2 {
  margin-bottom: 16px;
  border-left-color: #F59E0B;
}

.cta-final p,
.cta-support p,
.cta-pricing p,
.contact-cta p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.response-time,
.time-estimate,
.trial-notice,
.guarantee,
.no-commitment,
.savings-badge {
  font-size: 14px;
  margin-top: 16px;
  opacity: 0.9;
}

.pricing-highlight {
  margin: 32px 0;
}

.pricing-highlight .price {
  font-size: 56px;
  font-weight: 700;
  color: #FFFFFF;
  display: inline-block;
  padding: 16px 32px;
  background: rgba(245, 158, 11, 0.2);
  border: 3px solid #F59E0B;
}

.mission-statement {
  font-size: 18px;
  font-style: italic;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

/* GEOMETRIC STRUCTURED - Footer */
footer {
  background: linear-gradient(135deg, #0F172A 0%, #1e293b 100%);
  color: #FFFFFF;
  padding: 60px 20px 24px;
  border-top: 4px solid #2563EB;
}

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

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

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #2563EB;
  padding-bottom: 12px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

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

.footer-section nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 16px;
  position: relative;
}

.footer-section nav a::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #2563EB;
  transition: transform 0.3s ease;
}

.footer-section nav a:hover {
  color: #F59E0B;
  padding-left: 24px;
}

.footer-section nav a:hover::before {
  color: #F59E0B;
  transform: translateX(4px);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #0F172A 0%, #1e293b 100%);
  color: #FFFFFF;
  padding: 24px 20px;
  z-index: 9999;
  border-top: 4px solid #2563EB;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-text a {
  color: #F59E0B;
  text-decoration: underline;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

#accept-all-cookies {
  background: #2563EB;
  color: #FFFFFF;
  border-color: #2563EB;
}

#accept-all-cookies:hover {
  background: #1e40af;
  border-color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}

#reject-all-cookies {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

#reject-all-cookies:hover {
  background: #FFFFFF;
  color: #0F172A;
}

#cookie-settings {
  background: transparent;
  color: #F59E0B;
  border-color: #F59E0B;
}

#cookie-settings:hover {
  background: #F59E0B;
  color: #FFFFFF;
}

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

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

.cookie-modal-content {
  background: #FFFFFF;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  border: 4px solid #2563EB;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.5);
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #0F172A;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.cookie-category {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  margin-bottom: 16px;
  background: #F8FAFC;
  border-left: 4px solid #2563EB;
}

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

.cookie-category h3 {
  font-size: 18px;
  margin: 0;
  color: #0F172A;
}

.cookie-category p {
  color: #64748b;
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.cookie-toggle {
  position: relative;
  width: 56px;
  height: 28px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #CBD5E1;
  transition: 0.3s;
  cursor: pointer;
  border: 2px solid #94A3B8;
}

.toggle-slider::before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background: #FFFFFF;
  transition: 0.3s;
}

input:checked + .toggle-slider {
  background: #2563EB;
  border-color: #2563EB;
}

input:checked + .toggle-slider::before {
  transform: translateX(28px);
}

input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid #E2E8F0;
}

.cookie-modal-actions button {
  flex: 1;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

#save-cookie-preferences {
  background: #2563EB;
  color: #FFFFFF;
  border-color: #2563EB;
}

#save-cookie-preferences:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Show mobile menu button, hide desktop nav */
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  /* Section padding */
  section {
    padding: 60px 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  /* Flexbox layouts - single column */
  .category-grid,
  .features-grid,
  .steps-grid,
  .testimonials-grid,
  .benefits-grid,
  .pricing-cards,
  .plans-grid,
  .services-grid,
  .values-grid,
  .stats-grid,
  .contact-grid,
  .departments-grid,
  .actions-grid,
  .category-grid-large {
    flex-direction: column;
  }
  
  .category-card,
  .feature-item,
  .feature-premium,
  .step,
  .testimonial-card,
  .benefit-item,
  .pricing-card,
  .plan-card,
  .service-card,
  .value-card,
  .stat-card,
  .contact-card,
  .department-card,
  .action-card,
  .category-card-large {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 100%;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Cookie modal */
  .cookie-modal-content {
    padding: 32px 20px;
  }
  
  .cookie-modal-actions {
    flex-direction: column;
  }
  
  /* Timeline */
  .timeline {
    padding-left: 40px;
  }
  
  .timeline-item .year {
    left: -40px;
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
  
  /* Location grid */
  .location-grid {
    flex-direction: column;
  }
  
  .map-placeholder {
    min-height: 300px;
  }
  
  /* Legal content */
  .content-wrapper {
    padding: 32px 20px;
  }
  
  /* Stats */
  .stat-number {
    font-size: 36px;
  }
  
  /* Pricing highlight */
  .pricing-highlight .price {
    font-size: 40px;
    padding: 12px 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .category-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .feature-item,
  .testimonial-card,
  .service-card,
  .value-card,
  .contact-card {
    flex: 1 1 calc(50% - 32px);
  }
  
  .pricing-card,
  .plan-card {
    flex: 1 1 calc(50% - 32px);
    max-width: calc(50% - 32px);
  }
  
  .step,
  .stat-card {
    flex: 1 1 calc(50% - 32px);
  }
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .btn,
  .cta-buttons {
    display: none;
  }
  
  body {
    color: #000000;
    background: #FFFFFF;
  }
  
  section {
    page-break-inside: avoid;
  }
}