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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #fff;
  overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1a365d;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: #4a5568;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
  color: white;
  border: 2px solid #ff6b35;
  padding: 18px 36px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(49, 130, 206, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

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

.btn-primary::after {
  content: '→';
  font-size: 1.2em;
  transition: transform 0.3s ease;
  order: -1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(49, 130, 206, 0.4);
  background: linear-gradient(135deg, #2c5aa0 0%, #2a4d8d 100%);
  border-color: #ff8c42;
}

.btn-primary:hover::after {
  transform: translateX(-3px);
}

.btn-primary.large {
  padding: 22px 44px;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 700;
}

.btn-primary.large::after {
  font-size: 1.3em;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

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

.logo h2 {
  color: #1a365d;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin: 0;
  font-weight: 800;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #4a5568;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: #3182ce;
}

.nav-link.cta-nav {
  background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
}

.nav-link.cta-nav:hover {
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(49, 130, 206, 0.3);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #1a365d;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a365d 0%, #2c5aa0 50%, #3182ce 100%);
  color: white;
  padding: 120px 0 80px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: white;
}

.highlight {
  color: #90cdf4;
  font-weight: 800;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.1rem);
  margin-bottom: 1.5rem;
  opacity: 0.95;
  line-height: 1.5;
  color: #e2e8f0;
}

.hero-cta {
  margin-top: 1.5rem;
}

.guarantee {
  margin-top: 1rem;
  font-size: clamp(0.9rem, 2vw, 1rem);
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #cbd5e0;
}

/* Website Mockup */
.website-mockup {
  perspective: 1000px;
  position: relative;
}

.mockup-screen {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transform: rotateY(-15deg) rotateX(10deg);
  overflow: hidden;
  transition: transform 0.3s ease;
  position: relative;
  border: 1px solid #e2e8f0;
}

.mockup-screen:hover {
  transform: rotateY(-10deg) rotateX(5deg);
}

.mockup-header {
  background: #f7fafc;
  height: 40px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  padding: 0 15px;
}

.mockup-header::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fc8181;
  margin-right: 8px;
  box-shadow: 20px 0 0 #f6e05e, 40px 0 0 #68d391;
}

.mockup-content {
  padding: 20px;
  height: 300px;
  background: white;
}

.mockup-hero {
  background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
  height: 80px;
  border-radius: 6px;
  margin-bottom: 15px;
}

.mockup-services {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 15px;
}

.mockup-services::before,
.mockup-services::after {
  content: '';
  background: #edf2f7;
  height: 60px;
  border-radius: 4px;
}

.mockup-testimonials {
  background: #f7fafc;
  height: 100px;
  border-radius: 6px;
}

/* Problem Section */
.problem {
  padding: 100px 0;
  background: #f7fafc;
  position: relative;
}

.problem h2 {
  text-align: center;
  color: #1a365d;
  margin-bottom: 4rem;
  position: relative;
}

.problem h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3182ce, #2c5aa0);
  border-radius: 2px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.problem-item {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  position: relative;
}

.problem-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: #3182ce;
}

.problem-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.problem-item h3 {
  color: #1a365d;
  margin-bottom: 1rem;
}

.problem-item p {
  color: #4a5568;
  line-height: 1.6;
}

/* Solution Section */
.solution {
  padding: 100px 0;
  background: white;
  position: relative;
}

.solution h2 {
  text-align: center;
  color: #1a365d;
  margin-bottom: 4rem;
  position: relative;
}

.solution h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3182ce, #2c5aa0);
  border-radius: 2px;
}

.solution-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.solution-text h3 {
  color: #1a365d;
  margin-bottom: 1.5rem;
}

.solution-text p {
  font-size: clamp(1.1rem, 2.5vw, 1.2rem);
  color: #4a5568;
  margin-bottom: 3rem;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #f7fafc;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 4px solid #3182ce;
}

.benefit:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  background: #edf2f7;
}

.check {
  color: #38a169;
  font-weight: bold;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: #f7fafc;
  position: relative;
}

.features h2 {
  text-align: center;
  color: #1a365d;
  margin-bottom: 4rem;
  position: relative;
}

.features h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3182ce, #2c5aa0);
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: #3182ce;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.feature-card h3 {
  color: #1a365d;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #4a5568;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: white;
  position: relative;
}

.testimonials h2 {
  text-align: center;
  color: #1a365d;
  margin-bottom: 4rem;
  position: relative;
}

.testimonials h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3182ce, #2c5aa0);
  border-radius: 2px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  position: relative;
  border-left: 4px solid #3182ce;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stars {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #f6e05e;
}

.testimonial-card p {
  font-style: italic;
  color: #4a5568 !important;
  margin-bottom: 2rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.6;
  position: relative;
  text-align: left;
}

.testimonial-card p::before {
  content: '"';
  font-size: 4rem;
  color: #e2e8f0;
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.4;
  font-style: normal;
}

.testimonial-author {
  text-align: left;
  margin-top: 1rem;
}

.testimonial-author strong {
  color: #1a365d !important;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  font-style: normal;
}

.testimonial-author span {
  color: #718096 !important;
  font-size: 0.9rem;
  font-weight: 400;
  font-style: normal;
  opacity: 0.8;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a365d 0%, #2c5aa0 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.4;
}

.pricing h2 {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
  color: white;
}

.pricing-card {
  max-width: 650px;
  margin: 0 auto;
  background: white;
  color: #1a365d;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  z-index: 1;
  border: 1px solid #e2e8f0;
}

.pricing-header h3 {
  color: #1a365d;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.price {
  margin: 2rem 0;
}

.old-price {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: #a0aec0;
  text-decoration: line-through;
  margin-right: 1rem;
}

.new-price {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #3182ce;
}

.savings {
  color: #38a169;
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2rem;
  background: rgba(56, 161, 105, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: inline-block;
}

.pricing-features {
  text-align: left;
  margin: 2rem 0;
}

.pricing-features .feature {
  padding: 0.75rem 0;
  color: #4a5568;
  font-size: clamp(1rem, 2vw, 1.1rem);
  position: relative;
  padding-left: 2rem;
}

.pricing-features .feature::before {
  content: '✓';
  color: #3182ce;
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: 0.75rem;
}

/* Urgency Section */
.urgency {
  padding: 80px 0;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.urgency::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  opacity: 0.6;
}

.urgency h2 {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.urgency p {
  font-size: clamp(1.1rem, 2.5vw, 1.2rem);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  color: white;
}

#countdown {
  background: rgba(255, 255, 255, 0.95);
  color: #dc2626;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: bold;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.8);
  display: inline-block;
  margin: 0 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-shadow: none;
}

/* Order Section */
.order {
  padding: 100px 0;
  background: #f7fafc;
  position: relative;
}

.order h2 {
  text-align: center;
  color: #1a365d;
  margin-bottom: 4rem;
  position: relative;
}

.order h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3182ce, #2c5aa0);
  border-radius: 2px;
}

.order-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.order-form {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.order-form h3 {
  color: #1a365d;
  margin-bottom: 2rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #1a365d;
  font-weight: 500;
  font-size: 1rem;
}

.form-group input {
  width: 100%;
  padding: 15px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f7fafc;
}

.form-group input:focus {
  outline: none;
  border-color: #3182ce;
  background: white;
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.guarantees {
  margin-top: 2rem;
  text-align: center;
}

.consultation-benefits {
  margin: 2rem 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f7fafc;
  border-radius: 8px;
  border-left: 4px solid #3182ce;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: #edf2f7;
  transform: translateX(5px);
}

.benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.benefit-text h4 {
  color: #1a365d;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.benefit-text p {
  color: #4a5568;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.guarantees p {
  color: #38a169;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.order-benefits h3 {
  color: #1a365d;
  margin-bottom: 2rem;
}

.step {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.step-number {
  background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(49, 130, 206, 0.3);
}

.step-content h4 {
  color: #1a365d;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: #4a5568;
  margin: 0;
  line-height: 1.5;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1a365d 0%, #2c5aa0 100%);
  color: white;
  padding: 3rem 0;
  text-align: center;
  position: relative;
}

.footer p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #cbd5e0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .hero .container {
    gap: 3rem;
  }

  .order-content {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
    margin-top: 70px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-image {
    display: none;
  }

  .problem-grid,
  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .order-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-card {
    padding: 2rem;
    margin: 0 1rem;
  }

  .btn-primary {
    padding: 16px 28px;
    width: 100%;
    max-width: 300px;
  }

  .btn-primary.large {
    padding: 18px 32px;
  }

  .problem,
  .solution,
  .features,
  .testimonials,
  .order {
    padding: 80px 0;
  }

  .pricing {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 100px 0 60px;
    margin-top: 60px;
  }

  .hero .container {
    gap: 2rem;
  }

  .problem-item,
  .feature-card,
  .testimonial-card {
    padding: 2rem;
  }

  .order-form {
    padding: 2rem;
  }

  .pricing-card {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }

  .form-group input {
    padding: 12px;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .mockup-content {
    height: 250px;
  }

  .problem,
  .solution,
  .features,
  .testimonials,
  .order {
    padding: 60px 0;
  }

  .pricing {
    padding: 60px 0;
  }

  .urgency {
    padding: 50px 0;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Animation for elements coming into view */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.problem-item,
.feature-card,
.testimonial-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Loading states */
.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Focus states for accessibility */
.btn-primary:focus,
.form-group input:focus,
.nav-link:focus {
  outline: 2px solid #3182ce;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero {
    background: #000;
  }

  .btn-primary {
    background: #3182ce;
    border: 2px solid #fff;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Social Proof Popup Styles */
.social-proof-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid #e2e8f0;
  z-index: 10000;
  max-width: 350px;
  transform: translateX(-400px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.social-proof-popup.show {
  transform: translateX(0);
  opacity: 1;
}

.social-proof-popup.hide {
  transform: translateX(-400px);
  opacity: 0;
}

.popup-content {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  gap: 12px;
  position: relative;
}

.popup-icon {
  background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(56, 161, 105, 0.3);
}

.popup-text {
  flex: 1;
  min-width: 0;
}

.popup-name {
  font-weight: 600;
  color: #1a365d;
  font-size: 14px;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.popup-location {
  color: #718096;
  font-size: 12px;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.popup-action {
  color: #4a5568;
  font-size: 13px;
  margin-bottom: 2px;
}

.popup-time {
  color: #a0aec0;
  font-size: 11px;
  font-style: italic;
}

.popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  color: #a0aec0;
  font-size: 18px;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.popup-close:hover {
  background: #f7fafc;
  color: #4a5568;
}

/* Mobile responsive adjustments for popup */
@media (max-width: 480px) {
  .social-proof-popup {
    left: 10px;
    right: 10px;
    max-width: none;
    bottom: 10px;
  }

  .popup-content {
    padding: 14px 16px;
  }

  .popup-name,
  .popup-location,
  .popup-action {
    white-space: normal;
  }
}
