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

:root {
  --orange: #ff6a00;
  --orange-dark: #e95800;
  --black: #0f0f12;
  --cream: #f7f7f4;
  --white: #ffffff;
  --text: #111111;
  --muted: #666666;
  --soft-border: rgba(0,0,0,0.08);
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.5;
}

img {
  max-width: 100%;
}

.container {
  width: min(1150px, 92%);
  margin: 0 auto;
}

.site-header {
  background: rgba(247, 247, 244, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo img {
  width: 220px;
  height: auto;
  display: block;
}

.header-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.header-nav a {
  color: #222;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
}

.header-nav a:hover {
  color: var(--orange);
}

.header-phone {
  color: #111;
  font-size: 0.98rem;
  font-weight: 900;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.14);
  background: #fff;
  transition: 0.2s ease;
  white-space: nowrap;
}

.header-phone:hover {
  background: #111;
  color: #fff;
}

.hero {
  padding: 78px 0 84px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,106,0,0.10), transparent 28%),
    linear-gradient(180deg, #f7f7f4 0%, #ffffff 100%);
}

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

.hero-badge,
.section-tag,
.section-label {
  display: inline-block;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.hero-badge {
  background: #111;
  color: #fff;
  padding: 9px 14px;
  border-radius: 999px;
  letter-spacing: 0.4px;
  text-transform: none;
}

.hero-content h1 {
  font-size: clamp(2.35rem, 5vw, 4.75rem);
  line-height: 0.92;
  letter-spacing: -3px;
  font-weight: 900;
  max-width: 740px;
}

.hero-content h1::after {
  content: "";
  display: block;
  width: 100px;
  height: 6px;
  background: var(--orange);
  border-radius: 999px;
  margin-top: 24px;
}

.hero-text {
  margin-top: 24px;
  max-width: 650px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.45;
  color: #333;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn-primary,
.btn-secondary,
.gallery-btn,
.why-btn,
.reviews-btn,
.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-primary,
.gallery-btn,
.why-btn,
.reviews-btn,
.footer-btn {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 30px rgba(255,106,0,0.25);
}

.btn-primary:hover,
.gallery-btn:hover,
.why-btn:hover,
.reviews-btn:hover,
.footer-btn:hover {
  transform: translateY(-2px);
  background: #ff7a1a;
  box-shadow: 0 18px 38px rgba(255,106,0,0.32);
}

.btn-secondary {
  background: #fff;
  color: #111;
  border: 1px solid rgba(0,0,0,0.14);
}

.btn-secondary:hover {
  background: #111;
  color: #fff;
}

.hero-proof {
  margin-top: 24px;
  display: grid;
  gap: 6px;
  font-size: 0.92rem;
  color: #333;
}

.hero-proof strong {
  color: #111;
  font-size: 1rem;
}

.hero-images {
  position: relative;
  display: grid;
  gap: 16px;
}

.hero-img {
  width: 100%;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  box-shadow: 0 25px 60px rgba(0,0,0,0.22);
  border: 1px solid rgba(0,0,0,0.08);
}

.main-img { height: 360px; }
.small-img { height: 235px; width: 82%; justify-self: end; }

.trust-strip {
  background: #111;
  color: #fff;
  padding: 28px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-grid div {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

.trust-grid strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 5px;
}

.trust-grid span {
  color: rgba(255,255,255,0.66);
  font-size: 0.9rem;
}

.intro-section,
.damage-timeline,
.process-section,
.seo-content-section,
.faq-section,
.nearby-section {
  padding: 100px 20px;
  background: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.intro-section h2,
.damage-timeline h2,
.process-section h2,
.local-card h2,
.why-us h2,
.reviews h2,
.seo-content h2,
.faq-section h2,
.nearby-section h2,
.quote-section h2 {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -1.4px;
  font-weight: 900;
}

.intro-copy p,
.seo-content p,
.local-card p {
  color: #555;
  line-height: 1.85;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.section-text {
  max-width: 760px;
  color: #666;
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 20px 0 50px;
}

.timeline-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.timeline-card,
.process-card,
.why-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
  transition: 0.25s ease;
}

.timeline-card:hover,
.process-card:hover,
.why-card:hover {
  transform: translateY(-5px);
}

.timeline-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 20px;
}

.timeline-card h3,
.process-card h3,
.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-weight: 900;
}

.timeline-card p,
.process-card p,
.why-card p {
  color: #666;
  line-height: 1.65;
  font-size: 0.96rem;
}

.timeline-card.danger {
  border: 2px solid var(--orange);
}

.timeline-card.danger h3 {
  color: var(--orange);
}

.comparison-section,
.reviews {
  padding: 110px 20px;
  background: var(--black);
  color: #fff;
}

.comparison-container,
.reviews-inner,
.why-container,
.work-gallery__inner,
.faq-container,
.nearby-inner {
  max-width: 1150px;
  margin: 0 auto;
}

.comparison-intro,
.reviews-sub,
.work-gallery__text,
.why-us .section-subtitle {
  max-width: 760px;
  color: rgba(255,255,255,0.72);
  font-size: 1.06rem;
  line-height: 1.75;
  margin: 18px 0 50px;
}

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

.compare-card {
  position: relative;
  border-radius: 26px;
  padding: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.compare-card.weak { opacity: 0.75; }
.compare-card.strong {
  border: 2px solid var(--orange);
  box-shadow: 0 0 45px rgba(255,106,0,0.18);
}

.best-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.compare-card h3 {
  font-size: 1.5rem;
  margin-bottom: 22px;
}

.compare-card ul,
.area-list ul {
  list-style: none;
}

.compare-card li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}

.compare-card.weak li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: #aaa;
  font-weight: 900;
}

.compare-card.strong li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

.local-seo-section {
  padding: 100px 20px;
  background: var(--cream);
}

.local-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: stretch;
}

.local-card,
.area-list {
  border-radius: 28px;
  padding: 38px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.local-card.dark {
  background: var(--black);
  color: #fff;
}

.local-card.dark p {
  color: rgba(255,255,255,0.72);
}

.area-list {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
}

.area-list h3 {
  font-size: 1.35rem;
  margin-bottom: 20px;
  font-weight: 900;
}

.area-list ul {
  columns: 2;
  column-gap: 24px;
}

.area-list li {
  break-inside: avoid;
  margin-bottom: 12px;
  color: #444;
  font-weight: 700;
}

.area-list li::before {
  content: "✓ ";
  color: var(--orange);
  font-weight: 900;
}

.process-section {
  background: #fff;
}

.process-card span,
.why-card span {
  display: inline-block;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.work-gallery {
  background: #000;
  color: #fff;
  padding: 100px 20px;
}

.work-gallery__inner,
.why-container,
.reviews-inner,
.faq-container,
.nearby-inner {
  text-align: center;
}

.work-gallery__text,
.why-us .section-subtitle,
.reviews-sub {
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 46px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 4 / 5;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.05) 45%, transparent);
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.photo-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  background: rgba(15,15,18,0.82);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
}

.why-us {
  background: var(--cream);
  color: #111;
  padding: 100px 20px;
}

.why-us .section-subtitle {
  color: #666;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0 auto 40px;
}

.why-card {
  text-align: left;
}

.reviews-counter {
  color: var(--orange);
  font-weight: 900;
  margin: 14px 0;
}

.reviews-grid {
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-shot {
  background: #fff;
  border-radius: 22px;
  padding: 8px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.review-shot img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.seo-content-section {
  background: #fff;
}

.seo-content {
  max-width: 920px;
}

.seo-content h2 {
  margin-bottom: 24px;
}

.faq-section {
  background: var(--cream);
}

.faq-section h2 {
  max-width: 850px;
  margin: 0 auto 42px;
}

.faq-grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
  text-align: left;
}

details {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.045);
}

summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 1rem;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--orange);
  font-size: 1.25rem;
}

details[open] summary::after {
  content: "–";
}

details p {
  color: #666;
  line-height: 1.7;
  margin-top: 12px;
}

.quote-section {
  background: #fff;
  color: #111;
  padding: 100px 20px;
}

.quote-container {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
}

.quote-text {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 20px 0 28px;
}

.quote-points {
  display: grid;
  gap: 12px;
}

.quote-points span {
  font-weight: 900;
  color: #222;
}

.quote-form {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 26px;
  padding: 34px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.12);
  background: #f9f9f7;
  border-radius: 14px;
  padding: 17px 18px;
  margin-bottom: 14px;
  font-size: 1rem;
  font-family: inherit;
  color: #111;
  outline: none;
}

.quote-form textarea {
  resize: vertical;
  min-height: 130px;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,106,0,0.12);
}

.quote-form button {
  width: 100%;
  height: 58px;
  background: var(--orange);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(255,106,0,0.25);
  transition: all .2s ease;
}

.quote-form button:hover {
  transform: translateY(-2px);
  background: #ff7a1a;
}

.form-note {
  margin-top: 14px;
  text-align: center;
  color: #777;
  font-size: 0.9rem;
}

.nearby-section {
  background: var(--cream);
}

.nearby-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.nearby-links a {
  text-decoration: none;
  color: #111;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 900;
}

.nearby-links a:hover {
  color: #fff;
  background: #111;
}

.footer {
  background: var(--black);
  color: #fff;
  padding: 70px 20px 26px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  max-width: 1150px;
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 50px;
  align-items: start;
}

.footer-brand img {
  width: 190px;
  margin-bottom: 18px;
}

.footer-brand p,
.footer-column p {
  color: rgba(255,255,255,0.72);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 360px;
}

.footer-column h3 {
  color: var(--orange);
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.footer-column a {
  text-decoration: none;
  color: rgba(255,255,255,0.72);
}

.footer-column a:hover {
  color: #fff;
}

.footer-phone {
  display: inline-block;
  color: #fff !important;
  font-size: 1.05rem;
  font-weight: 900;
  text-decoration: none;
  margin-bottom: 18px;
}

.footer-btn {
  min-width: 240px;
}

.footer-bottom {
  max-width: 1150px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
}

@media (max-width: 980px) {
  .header-nav { display: none; }

  .hero-grid,
  .intro-grid,
  .local-grid,
  .quote-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .timeline-grid,
  .process-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-cta {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .container { width: min(100% - 32px, 1150px); }

  .header-inner {
    min-height: 66px;
  }

  .logo img {
    width: 132px;
  }

  .header-phone {
    font-size: 0.78rem;
    padding: 10px 11px;
  }

  .hero {
    padding: 44px 0 60px;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-content h1 {
    font-size: clamp(2.15rem, 12vw, 3.2rem);
    letter-spacing: -2px;
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .hero-actions,
  .nearby-links {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary,
  .gallery-btn,
  .why-btn,
  .reviews-btn,
  .footer-btn {
    width: 100%;
  }

  .main-img,
  .small-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .intro-section,
  .damage-timeline,
  .process-section,
  .seo-content-section,
  .faq-section,
  .nearby-section,
  .local-seo-section,
  .work-gallery,
  .why-us,
  .reviews,
  .quote-section,
  .comparison-section {
    padding: 70px 16px;
  }

  .timeline-grid,
  .process-grid,
  .why-grid,
  .comparison-grid,
  .reviews-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .gallery-item {
    border-radius: 16px;
    aspect-ratio: 1 / 1.12;
  }

  .photo-tag {
    left: 9px;
    bottom: 9px;
    font-size: 0.62rem;
    padding: 5px 8px;
  }

  .area-list ul {
    columns: 1;
  }

  .local-card,
  .area-list,
  .quote-form,
  .compare-card {
    padding: 24px;
    border-radius: 22px;
  }

  .footer {
    text-align: center;
    padding: 60px 16px 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-cta {
    grid-column: auto;
  }

  .footer-brand img {
    width: 120px;
  }

  .footer-brand p,
  .footer-column p {
    max-width: 100%;
    margin: 0 auto;
  }
}
