* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}
.hero,
.problem-card-image {
  align-items: center;
  position: relative;
  overflow: hidden;
}
.bg-orange,
.hero {
  color: #fff;
}
.card::before,
.hero::before,
.problem-card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.card,
.card h4,
.card p,
.container,
.hero,
.problem-card,
.section h2 {
  position: relative;
}
.card,
.hero,
.section h2,
.stat-card {
  text-align: center;
}
.card,
.comparison-table,
.faq-answer,
.faq-item,
.hero,
.problem-card {
  overflow: hidden;
}

.hero {
  background: linear-gradient(
        135deg,
        rgba(245, 158, 11, 0.95),
        rgba(217, 119, 6, 0.9)
      )
      fixed,
    url("../../images/house10.webp") center/cover fixed;
  padding: clamp(60px, 10vh, 100px) 0;
  min-height: 80vh;
  display: flex;
}
.hero::before {
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 0,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(15px, 3vw, 20px);
  z-index: 2;
  width: 100%;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.02em;
}
.hero .subtitle {
  font-size: clamp(1.2rem, 3vw, 2rem);
  margin-bottom: 15px;
  font-weight: 300;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
}
.hero .tagline {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  opacity: 0.95;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.phone-cta {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin: 30px 0;
  animation: 2s ease-in-out infinite alternate glow;
  background: rgba(255, 255, 255, 0.15);
  padding: clamp(10px, 2vw, 15px) clamp(20px, 4vw, 30px);
  border-radius: 20px;
  display: inline-block;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.cta-primary,
.section h2,
.stat-label,
.stat-number,
.step-number {
  font-weight: 700;
}
@keyframes glow {
  from {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  }
  to {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
  }
}
.cta-primary {
  display: inline-block;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #fff;
  padding: clamp(18px, 3vw, 22px) clamp(30px, 5vw, 45px);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  text-decoration: none;
  border-radius: 60px;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
  transition: 0.3s;
  border: 3px solid rgba(255, 255, 255, 0.2);
}
.card,
.problem-card,
.stat-card {
  border-radius: 20px;
  transition: 0.3s;
}
.problem-grid,
.stats-grid {
  display: grid;
  gap: clamp(20px, 4vw, 30px);
}
.cta-primary:hover {
  background: linear-gradient(135deg, #b91c1c, #dc2626);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.5);
  border-color: rgba(255, 255, 255, 0.4);
}
.breadcrumb {
  padding: clamp(15px, 3vw, 20px) 0;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.breadcrumb a {
  color: #d97706;
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb a:hover {
  color: #92400e;
}
.section {
  padding: clamp(40px, 8vh, 80px) 0;
}
.section h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 30px;
  color: #d97706;
}
.section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 2px;
}
.section h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 20px;
  color: #d97706;
}
.bg-gray {
  background: linear-gradient(135deg, #f8fafc 0, #e2e8f0 100%);
}
.bg-orange,
.comparison-table th {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}
.problem-card,
.stat-card {
  background: #fff;
}
.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  margin: 40px 0;
}
.stat-card {
  padding: clamp(25px, 4vw, 30px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border-top: 4px solid #f59e0b;
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #f59e0b;
  line-height: 1.1;
}
.stat-label {
  color: #d97706;
  margin-top: 10px;
  font-size: clamp(0.9rem, 2vw, 1rem);
}
.problem-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  margin: 40px 0;
}
.grid,
.showcase-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}
.problem-card {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.card,
.comparison-table,
.showcase-content {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}
.problem-card-image {
  width: 100%;
  background: linear-gradient(135deg, #fed7aa, #fb923c);
  display: flex;
  justify-content: center;
}
.problem-card-image::before {
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(245, 158, 11, 0.1) 0,
    rgba(217, 119, 6, 0.1) 100%
  );
}
.problem-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.problem-card-content {
  padding: clamp(20px, 4vw, 30px);
}
.problem-card h4 {
  color: #d97706;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.3;
}
.problem-card p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.6;
  color: #64748b;
}
.grid {
  display: grid;
  gap: clamp(25px, 4vw, 40px);
  margin: 50px 0;
}
.card {
  background: #fff;
  padding: clamp(30px, 5vw, 40px) clamp(25px, 4vw, 30px);
  border: 1px solid rgba(217, 119, 6, 0.1);
}
.card::before {
  height: 100%;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.02), transparent);
  z-index: 0;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.card h4 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-bottom: 15px;
  color: #d97706;
  z-index: 1;
}
.card p {
  z-index: 1;
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.6;
}
.step-number {
  background: #f59e0b;
  color: #fff;
  width: clamp(45px, 8vw, 50px);
  height: clamp(45px, 8vw, 50px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}
.comparison-table th,
.faq-question,
.showcase-list,
.testimonial p {
  font-size: clamp(1rem, 2.2vw, 1.1rem);
}
.damage-showcase {
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
  padding: clamp(40px, 8vh, 60px) 0;
}
.showcase-content {
  background: #fff;
  padding: clamp(30px, 5vw, 40px);
  border-radius: 20px;
}
.showcase-grid {
  display: grid;
  gap: clamp(30px, 6vw, 50px);
  align-items: start;
}
.showcase-list {
  line-height: 1.8;
}
.showcase-list li {
  margin-bottom: 10px;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  background: #fff;
  border-radius: 15px;
  font-size: clamp(0.9rem, 2vw, 1rem);
}
.check,
.x {
  font-size: 1.2rem;
  font-weight: 700;
}
.comparison-table td,
.comparison-table th {
  padding: clamp(15px, 3vw, 20px) clamp(10px, 2vw, 15px);
  text-align: center;
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}
.comparison-table th {
  color: #fff;
  font-weight: 700;
}
.check {
  color: #10b981;
}
.x {
  color: #dc2626;
}
.testimonial {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  padding: clamp(25px, 4vw, 30px);
  margin: 20px 0;
  border-left: 5px solid #10b981;
  transition: 0.3s;
}
.testimonial:hover {
  transform: translateX(5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.testimonial p {
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.7;
}
.faq-item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  margin: 25px 0;
  transition: 0.3s;
  cursor: pointer;
}
.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
.faq-question {
  background: linear-gradient(135deg, #fed7aa, #fb923c);
  padding: clamp(20px, 4vw, 25px);
  font-weight: 700;
  color: #7c2d12;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-question::after {
  content: "+";
  font-size: 1.5em;
  font-weight: 700;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 15px;
}
.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  transition: max-height 0.3s;
  padding: 0 clamp(20px, 4vw, 25px);
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: clamp(20px, 4vw, 25px);
}
.faq-answer p {
  line-height: 1.8;
  font-size: clamp(0.95rem, 2vw, 1rem);
}
.form-container {
  max-width: 650px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.98);
  padding: clamp(35px, 6vw, 50px) clamp(30px, 5vw, 40px);
  border-radius: 25px;
  color: #333;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.form-input,
.form-select-multiple {
  width: 100%;
  padding: clamp(15px, 3vw, 18px);
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  text-align: left;
  font-size: clamp(0.9rem, 2vw, 1rem);
}
.form-input {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: clamp(14px, 2.5vw, 16px);
  transition: 0.3s;
}
.form-input:focus {
  outline: 0;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 20px;
}
@media (max-width: 480px) {
  .hero {
    background-attachment: scroll;
    min-height: 85vh;
  }
  .cta-primary {
    display: block;
    margin: 10px auto;
    width: 100%;
    max-width: 300px;
  }
  .problem-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .comparison-table {
    font-size: 0.85rem;
  }
  .comparison-table td,
  .comparison-table th {
    padding: 12px 8px;
  }
}
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .faq-question {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .faq-question::after {
    align-self: flex-end;
    margin-left: 0;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  ::after,
  ::before {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
  }
  .hero {
    background-attachment: scroll;
  }
}
:focus {
  outline: #f59e0b solid 2px;
  outline-offset: 2px;
}
.cta-primary:focus {
  outline: #fed7aa solid 3px;
  outline-offset: 2px;
}
.problem-description {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.final-problem-description,
.problem-form-subtitle,
.problem-intro {
  line-height: 1.6;
  text-align: center;
}
.problem-intro {
  margin-bottom: 40px;
  font-size: clamp(1rem, 2.2vw, 1.1rem);
}
.damage-showcase h2 {
  color: #92400e;
  text-align: center;
  margin-bottom: 30px;
}
.showcase-content h3 {
  color: #d97706;
  margin-bottom: 20px;
}
.comparison-overflow {
  overflow-x: auto;
}
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}
.bg-orange {
  background: linear-gradient(135deg, #ea580c 0, #dc2626 100%);
  color: #fff;
}
.problem-form-title {
  color: #fff !important;
  margin-bottom: 20px;
}
.problem-form-subtitle {
  color: #fff;
  margin-bottom: 40px;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
}
.problem-form-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #666;
}
.problem-phone-link {
  color: #d97706;
  font-weight: 700;
}
.final-problem-description {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  margin-bottom: 30px;
}
.problem-nav-links {
  margin-top: 30px;
  text-align: center;
}
.cta-primary,
.form-button {
  display: flex;
  place-content: center;
  margin: 0 auto;
}
.problem-nav-link {
  color: #d97706;
  text-decoration: none;
}
.form-button {
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
.cta-primary {
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
}
.form-select-multiple {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: clamp(14px, 2.5vw, 16px);
  transition: 0.3s;
  height: auto;
}
