:root {
  --primary-color: #34495D;
  --secondary-color: #2C3D4F;
  --accent-color: #95A5A6;
  --light-color: #ECF0F1;
  --dark-color: #000000;
  --gradient-primary: linear-gradient(135deg, #34495D 0%, #2C3D4F 100%);
  --hover-color: #2C3E50;
  --background-color: #FFFFFF;
  --text-color: #2C3E50;
  --border-color: rgba(149, 165, 166, 0.3);
  --divider-color: rgba(44, 61, 79, 0.1);
  --shadow-color: rgba(44, 61, 79, 0.15);
  --highlight-color: #E74C3C;
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Roboto', sans-serif;
}

/* Mobile Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.hamburger .line {
  width: 28px;
  height: 3px;
  background-color: var(--light-color);
  margin: 3px 0;
  transition: 0.2s;
  border-radius: 1px;
}

#menu-toggle {
  display: none;
}

#menu-toggle:checked ~ .mobile-nav {
  max-height: 400px;
  opacity: 1;
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--primary-color);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.mobile-nav ul {
  padding: 1.5rem;
  margin: 0;
  list-style: none;
}

.mobile-nav li {
  margin: 0.8rem 0;
}

.mobile-nav a {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--light-color);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid transparent;
}

.mobile-nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Enhanced Feature Cards */
.feature-card {
  transition: all 0.2s ease;
  border: 2px solid var(--border-color);
  position: relative;
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(44, 61, 79, 0.1);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(44, 61, 79, 0.15);
  border-color: var(--primary-color);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  text-align: center;
  transition: transform 0.2s ease;
  color: var(--primary-color);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

/* Enhanced Testimonial Cards */
.testimonial {
  transition: all 0.2s ease;
  border: 2px solid var(--border-color);
  position: relative;
  background: #ffffff;
  padding: 2rem;
  margin: 1rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(44, 61, 79, 0.1);
}

.testimonial:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 61, 79, 0.15);
  border-color: var(--primary-color);
}

/* Enhanced FAQ Items */
.faq-item {
  border: 2px solid var(--border-color);
  transition: all 0.2s ease;
  position: relative;
  background: #ffffff;
  padding: 2rem;
  margin: 1rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(44, 61, 79, 0.1);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 61, 79, 0.15);
  border-color: var(--primary-color);
}

/* Enhanced Form Styles */
input,
textarea {
  transition: all 0.2s ease;
  font-family: var(--alt-font);
  border: 2px solid var(--border-color);
  border-radius: 6px;
  padding: 1.2rem;
  background-color: white;
  color: var(--text-color);
  font-size: 1rem;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(52, 73, 93, 0.1);
  background: #ffffff;
}

input:hover,
textarea:hover {
  border-color: var(--secondary-color);
}

/* Enhanced Button Styles */
button,
.btn {
  transition: all 0.2s ease;
  position: relative;
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-family: var(--alt-font);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

button:hover,
.btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 61, 79, 0.3);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Hero Section Enhancement */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* Enhanced Typography */
h1, h2, h3 {
  font-family: var(--main-font);
  font-weight: 700;
  color: var(--text-color);
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
}

/* Statistics Cards */
.stat-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(44, 61, 79, 0.1);
  transition: all 0.2s ease;
  border: 2px solid var(--border-color);
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(44, 61, 79, 0.15);
  border-color: var(--primary-color);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--main-font);
}

.stat-text {
  font-size: 1rem;
  color: var(--text-color);
  margin-top: 0.5rem;
}

/* Process Steps */
.process-step {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(44, 61, 79, 0.1);
  transition: all 0.2s ease;
  position: relative;
  border: 2px solid var(--border-color);
}

.process-step::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(44, 61, 79, 0.2);
}

.process-step:nth-child(1)::before { content: '1'; }
.process-step:nth-child(2)::before { content: '2'; }
.process-step:nth-child(3)::before { content: '3'; }
.process-step:nth-child(4)::before { content: '4'; }

.process-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(44, 61, 79, 0.15);
  border-color: var(--primary-color);
}

/* Trust Indicators */
.trust-indicator {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(44, 61, 79, 0.1);
  transition: all 0.2s ease;
  border: 2px solid var(--border-color);
}

.trust-indicator:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 61, 79, 0.15);
}

/* Objection Cards */
.objection-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(44, 61, 79, 0.1);
  transition: all 0.2s ease;
  border: 2px solid var(--border-color);
  border-left: 4px solid var(--primary-color);
}

.objection-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 61, 79, 0.15);
}

/* Transform Input Styles */
.transform-input {
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.2s ease;
  font-family: var(--alt-font);
  background-color: white;
  color: var(--text-color);
}

.transform-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(52, 73, 93, 0.1);
  outline: none;
}

.transform-input:hover {
  border-color: var(--secondary-color);
}

/* Transform Button */
.btn-transform {
  background: var(--primary-color);
  color: white;
  padding: 1.2rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-transform:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 73, 93, 0.3);
}

/* Mobile Floating CTA */
.mobile-floating-cta {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 999;
  background: var(--primary-color);
  border-radius: 6px;
  padding: 1rem;
  box-shadow: 0 8px 25px rgba(52, 73, 93, 0.3);
}

.btn-floating {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Urgent Stat Cards */
.stat-card.urgent {
  background: white;
  border: 2px solid #f39c12;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.1);
}

.stat-card.urgent:hover {
  box-shadow: 0 8px 25px rgba(243, 156, 18, 0.15);
  border-color: #e67e22;
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    padding: 1rem;
  }

  .hamburger {
    display: flex;
  }
  
  .navigation {
    display: none;
  }
  
  .mobile-nav {
    display: block;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .feature-card,
  .testimonial,
  .faq-item,
  .stat-card,
  .process-step,
  .trust-indicator,
  .objection-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }
  
  .feature-card,
  .testimonial,
  .faq-item,
  .stat-card,
  .process-step,
  .trust-indicator,
  .objection-card {
    margin: 0.8rem 0;
    padding: 1.3rem;
  }
  
  .mobile-floating-cta {
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
}

/* Header Styles */
header {
  background: var(--primary-color);
  color: var(--light-color);
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(44, 61, 79, 0.2);
}

footer {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 3rem 0 1rem;
}

header img[alt="logo"],
footer img[alt="logo"] {
  filter: brightness(0) invert(1);
}

/* Focus States */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--highlight-color);
  outline-offset: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-color);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* Animation for page elements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.5s ease-out;
}

/* Background patterns */
.pattern-bg {
  background-image: 
    linear-gradient(90deg, rgba(52, 73, 93, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(52, 73, 93, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --text-color: #000000;
    --background-color: #FFFFFF;
    --border-color: #000000;
    --primary-color: #000000;
    --secondary-color: #000000;
  }
}

/* Professional styling adjustments */
.hero {
  position: relative;
}

.hero h1 { 
  color: white;
}

.section-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 2rem;
}

.professional-card {
  background: #ffffff;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 1rem 0;
  box-shadow: 0 4px 15px rgba(44, 61, 79, 0.1);
  transition: all 0.2s ease;
}

.professional-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 61, 79, 0.15);
}

.text-professional {
  color: var(--text-color);
  line-height: 1.6;
}

.btn-professional {
  background: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-professional:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}