* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #da5448;
  --primary-hover: #c24136;
  --primary-light: #f5e8e7;
  --secondary-color: #64748b;
  --text-color: #1e293b;
  --light-gray: #f8fafc;
  --border-color: #e2e8f0;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --accent-pink: #fef2f1;
  --max-width: 1200px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #ffffff;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.service-name {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.05em;
}

.service-tagline {
  font-size: 14px;
  color: var(--secondary-color);
  font-weight: 500;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-pink) 100%);
  padding: 100px 0;
  margin-top: 80px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  text-align: left;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a80 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-color);
  line-height: 1.2;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 24px;
}

.hero-description {
  font-size: 18px;
  color: var(--secondary-color);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.cta-button {
  display: inline-block;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.cta-button.primary {
  background-color: var(--primary-color);
  color: white;
}

.cta-button.outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.cta-button.primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(218, 84, 72, 0.2);
}

.cta-button.large {
  padding: 20px 40px;
  font-size: 20px;
}

/* Problem Section */
.problem {
  padding: 80px 0;
  background-color: #ffffff;
}

.problem h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-color);
}

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

.problem-item {
  text-align: center;
  padding: 40px 30px;
  background-color: var(--light-gray);
  border-radius: 12px;
  transition: transform 0.3s ease;
  border: 1px solid transparent;
}

.problem-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-light);
  background-color: var(--accent-pink);
}

.problem-icon {
  margin-bottom: 20px;
  height: 256px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-icon img {
  max-width: 256px;
  max-height: 256px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.problem-item h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--text-color);
}

.problem-item p {
  color: var(--secondary-color);
  line-height: 1.6;
}

/* Solution Concept Section */
.concept {
  padding: 80px 0;
  background-color: var(--accent-pink);
  text-align: center;
}

.concept h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--text-color);
}

.concept-subtitle {
  font-size: 20px;
  color: var(--secondary-color);
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.concept-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.concept-item {
  display: flex;
  align-items: flex-start;
  text-align: left;
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.concept-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin-right: 20px;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  border-radius: 50%;
}

.concept-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-color);
}

.concept-content p {
  color: var(--secondary-color);
  line-height: 1.6;
}

/* Before/After Section */
.before-after {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.before-after h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 60px;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.before {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.after {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  border: 2px solid var(--primary-color);
  box-shadow: 0 8px 20px rgba(218, 84, 72, 0.15);
  position: relative;
  transform: scale(1.05);
}

.before h3,
.after h3 {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
}

.before h3 {
  color: #94a3b8;
}

.after h3 {
  color: var(--primary-color);
}

.flow {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow-item {
  background-color: var(--light-gray);
  padding: 15px 25px;
  border-radius: 8px;
  margin: 10px 0;
  font-size: 16px;
  text-align: center;
  width: 100%;
  max-width: 280px;
}

.flow-item.issue {
  background-color: #f3f4f6;
  color: #6b7280;
}

.flow-item.highlight {
  background-color: var(--primary-light);
  color: var(--primary-color);
  font-weight: 600;
}

.flow-item.success {
  background-color: var(--primary-light);
  color: var(--primary-color);
  font-weight: 600;
}

.arrow {
  font-size: 24px;
  color: var(--secondary-color);
  margin: 5px 0;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: #ffffff;
}

.features h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 60px;
}

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

.feature {
  padding: 40px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature:hover {
  box-shadow: 0 10px 30px rgba(218, 84, 72, 0.15);
  transform: translateY(-5px);
  border-color: var(--primary-light);
}

.feature-icon {
  margin-bottom: 20px;
  height: 256px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  max-width: 256px;
  max-height: 256px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.feature h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-color);
}

.feature p {
  color: var(--secondary-color);
  line-height: 1.8;
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.benefits h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 60px;
}

.benefits-list {
  max-width: 800px;
  margin: 0 auto;
}

.benefit {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
  font-size: 28px;
  color: var(--success-color);
  margin-right: 20px;
  flex-shrink: 0;
}

.benefit-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--text-color);
}

.benefit-content p {
  color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #fff5f4 0%, #ffe4e1 100%);
  text-align: center;
  color: var(--text-color);
}

.cta-section h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 20px;
  margin-bottom: 40px;
  color: var(--secondary-color);
}

.cta-form {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-form p {
  margin-bottom: 20px;
  font-size: 18px;
  color: var(--text-color);
}

.form-note {
  font-size: 14px;
  color: var(--secondary-color);
  margin-top: 20px;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: #ffffff;
}

.faq h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 60px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 30px;
  padding: 30px;
  background-color: var(--light-gray);
  border-radius: 12px;
}

.faq-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-color);
}

.faq-item p {
  color: var(--secondary-color);
  line-height: 1.6;
}

/* Footer */
.footer {
  padding: 40px 0;
  background-color: var(--text-color);
  color: white;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-name {
    font-size: 24px;
  }

  .service-tagline {
    font-size: 12px;
  }

  .logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    text-align: center;
    order: 2;
  }

  .hero-image {
    order: 1;
    margin-bottom: 30px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
    margin-left: auto;
    margin-right: auto;
  }

  .comparison {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .after {
    transform: scale(1);
  }

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

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

  .cta-button {
    font-size: 16px;
    padding: 14px 28px;
  }

  .cta-button.large {
    font-size: 18px;
    padding: 18px 36px;
  }

  h2 {
    font-size: 28px !important;
  }

  .benefit {
    flex-direction: column;
  }

  .benefit-icon {
    margin-bottom: 15px;
  }

  .concept-points {
    grid-template-columns: 1fr;
  }

  .concept-item {
    margin-bottom: 20px;
  }
}
