/* 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: #1a1a1a;
  background-color: #f5f5f5;
  -webkit-font-smoothing: antialiased;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e5e5;
  padding: 1rem 0;
}

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

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: #2d2d2d;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.25rem;
}

.logo-text {
  font-weight: bold;
  font-size: 1.25rem;
  color: #1a1a1a;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: #2d2d2d;
  color: white;
}

.btn-primary:hover {
  background-color: #1a1a1a;
}

.btn-outline {
  background-color: transparent;
  color: #2d2d2d;
  border: 2px solid #2d2d2d;
}

.btn-outline:hover {
  background-color: #2d2d2d;
  color: white;
}

.btn-accent {
  background-color: #ea580c;
  color: white;
}

.btn-accent:hover {
  background-color: #c2410c;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.icon {
  flex-shrink: 0;
}

.phone-label {
  display: none;
}

@media (min-width: 640px) {
  .phone-label {
    display: inline;
  }
}

/* Hero Section */
.hero {
  padding: 8rem 1rem 5rem;
  background: linear-gradient(to bottom, #f5f5f5, rgba(245, 245, 245, 0.3));
}

.hero-content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(234, 88, 12, 0.1);
  border: 1px solid rgba(234, 88, 12, 0.2);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: #ea580c;
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

.gradient-text {
  background: linear-gradient(90deg, #d946ef, #ef4444, #fbbf24);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient 3s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-description {
  font-size: 1.25rem;
  color: #666;
  max-width: 900px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero-features {
  font-size: 0.875rem;
  color: #666;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }

  .hero-description {
    font-size: 1.5rem;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Sections */
section {
  padding: 5rem 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.25rem;
  color: #666;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Cards */
.card {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.problem-card {
  border: 2px solid transparent;
}

.problem-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(234, 88, 12, 0.5);
}

.icon-box {
  width: 56px;
  height: 56px;
  background-color: rgba(234, 88, 12, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon-large {
  width: 28px;
  height: 28px;
  color: #ea580c;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.card-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-footer {
  padding-top: 1rem;
  border-top: 1px solid #e5e5e5;
}

.card-stat {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ea580c;
}

/* Stats Section */
.stats {
  background-color: #2d2d2d;
  color: white;
  padding: 4rem 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-value {
    font-size: 3rem;
  }

  .stat-label {
    font-size: 1rem;
  }
}

/* Solutions Section */
.solutions {
  background-color: rgba(245, 245, 245, 0.3);
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.check-icon {
  color: #ea580c;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.benefits-list span {
  color: #666;
  line-height: 1.6;
}

/* Process Section */
.process {
  background-color: white;
}

.process-card {
  position: relative;
  overflow: hidden;
}

.process-number-bg {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
}

.process-content {
  position: relative;
}

.process-badge {
  width: 48px;
  height: 48px;
  background-color: #ea580c;
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
  background-color: rgba(245, 245, 245, 0.3);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  color: #ea580c;
}

.testimonial-quote {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  padding-top: 1rem;
  border-top: 1px solid #e5e5e5;
}

.author-name {
  font-weight: 700;
  color: #1a1a1a;
}

.author-location {
  font-size: 0.875rem;
  color: #666;
}

.author-problem {
  font-size: 0.875rem;
  color: #ea580c;
  font-weight: 500;
  margin-top: 0.25rem;
}

/* CTA Section */
.cta {
  background-color: white;
}

.cta-card {
  background: linear-gradient(135deg, #2d2d2d 0%, rgba(45, 45, 45, 0.9) 100%);
  border-radius: 16px;
  padding: 3rem;
  color: white;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-description {
  font-size: 1.25rem;
  text-align: center;
  opacity: 0.9;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.form-container {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(45, 45, 45, 0.3);
  background-color: white;
  color: #2d2d2d;
  font-size: 1rem;
  font-family: inherit;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(45, 45, 45, 0.6);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #ea580c;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

.form-textarea {
  resize: none;
}

.error-message {
  color: #fca5a5;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.error-message.show {
  display: block;
}

.success-message {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: #4ade80;
  padding: 1rem;
  background-color: rgba(74, 222, 128, 0.1);
  border-radius: 8px;
}

.privacy-note {
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.75;
  margin-top: 1rem;
}

.contact-info {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: opacity 0.2s;
}

.phone-link:hover {
  opacity: 0.8;
}

.separator {
  display: none;
  opacity: 0.5;
}

.availability {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.9;
}

.footer-note {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.875rem;
  color: #666;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
  .cta {
    padding: 40px 15px;
  }

  .cta-card {
    padding: 20px;
    border-radius: 12px;
  }

  .cta-title {
    font-size: 1.6rem;
  }

  .cta-description {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 1rem;
    padding: 12px;
  }

  .btn-submit {
    font-size: 1rem;
    padding: 12px;
  }

  .phone-link {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 1.4rem;
  }

  .cta-description {
    font-size: 0.9rem;
  }

  .form-title {
    font-size: 1.2rem;
  }

  .btn-submit {
    font-size: 0.95rem;
    padding: 12px;
  }
}

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