/* ===== Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* ===== Reset / base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --teal: #15607d;
  --teal-dark: #0d536c;
  --red: #b8403d;
  --red-grad-top: #c25450;
  --red-grad-bottom: #a73c39;
  --text: #2f3331;
  --text-soft: #4a4f4d;
  --hero-bg: #efefef;
  --faq-bg: #ecebf7;
  --step-bg: #f7f7f7;
  --border: #e6e6e6;
  --side: max(15px, calc((100vw - 1140px) / 2));
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}
.hero-benefits {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.teal {
  color: var(--teal);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, var(--red-grad-top) 0%, var(--red-grad-bottom) 100%);
  border-radius: 32px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.28);
  text-align: center;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.btn:hover {
  filter: brightness(1.05);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.32);
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.28);
}

.btn-lg {
  font-size: 22px;
  padding: 17px 42px;
}

.phone-link {
  font-weight: 700;
  text-decoration: underline;
  color: inherit;
  white-space: nowrap;
}

/* ===== Header ===== */
.site-header {
  background: #fff;
  border-bottom: 1px solid #efefef;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
}

.site-header .logo {
  height: 120px;
  max-width: 280px;
  width: auto;
  padding: 12px 16px;
}

.header-call {
  font-size: 16px;
  font-weight: 700;
  color: #1d1f1e;
}

.header-call a {
  color: var(--teal);
  text-decoration: underline;
  margin-left: 4px;
}

/* ===== Hero ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-left {
  background: var(--hero-bg);
  padding: 44px 48px 50px var(--side);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right {
  background-image: url('../assets/worker_2.webp');
  background-size: cover;
  background-position: center;
  min-height: 540px;
}

.hero-location {
  font-size: 24px;
  font-weight: 700;
  color: #232624;
  margin-bottom: 2px;
}

.hero-title {
  font-size: 54px;
  line-height: 1.02;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.hero-sub {
  font-size: 22px;
  color: #232624;
  margin-bottom: 8px;
}

.hero-call {
  font-size: 18px;
  color: #232624;
  margin-bottom: 20px;
}

.hero-call .phone-link {
  color: #111;
}

.hero-stars {
  display: block;
  width: 300px;
  text-align: center;
  margin: 18px 0 22px;
}

.hero-stars img {
  display: inline-block;
  height: 20px;
}

.hero-sameday {
  font-size: 18px;
  font-weight: 700;
  color: #1d1f1e;
  margin-bottom: 18px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 36px;
  max-width: 520px;
}

.feature-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: #2f3331;
}

.feature-check img {
  width: 26px;
  height: 26px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ===== Section heading ===== */
.section {
  padding: 64px 0;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  color: #1d1f1e;
  margin-bottom: 4px;
}

/* ===== How it works ===== */
.works-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 48px;
  align-items: start;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 26px;
}

.step {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--step-bg);
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 18px 22px;
}

.step-num {
  font-size: 46px;
  font-weight: 400;
  color: var(--red);
  width: 64px;
  flex-shrink: 0;
  line-height: 1;
}

.step-text {
  font-size: 15px;
  color: #3a3f3d;
  line-height: 1.55;
}

.step-text a {
  color: #111;
}

/* FAQ column */
.faq-col {
  display: flex;
  flex-direction: column;
}

.faq {
  margin-bottom: 22px;
}

.faq-q {
  background: var(--faq-bg);
  border-radius: 24px;
  padding: 13px 22px;
  font-size: 16px;
  font-weight: 700;
  color: #1d1f1e;
  margin-bottom: 12px;
}

.faq-a {
  font-size: 15px;
  color: #3a3f3d;
  line-height: 1.6;
  padding: 0 6px;
}

.faq-a a {
  color: #111;
}

.cta-block {
  text-align: center;
  margin-top: 10px;
}

.cta-block .btn {
  display: block;
  width: 100%;
}

.cta-call {
  font-size: 18px;
  margin-top: 16px;
  color: #232624;
}

.cta-call .phone-link {
  color: #111;
}

/* ===== Why call ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 6px;
}

.why-intro {
  font-size: 16px;
  color: #3a3f3d;
  line-height: 1.7;
  margin: 16px 0 30px;
  max-width: 600px;
}

.feature-list {
  display: flex;
  flex-direction: column;
}

.feature-item {
  position: relative;
  padding-left: 42px;
  padding-bottom: 26px;
}

.feature-item:last-child {
  padding-bottom: 0;
}

.feature-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid var(--red);
  background: #fff;
  z-index: 2;
}

.feature-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 8px;
  top: 22px;
  bottom: 0;
  border-left: 2px dotted #c98c8a;
  z-index: 1;
}

.feature-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1d1f1e;
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 15px;
  color: #4a4f4d;
  line-height: 1.6;
}

/* right column */
.why-aside {
  display: flex;
  flex-direction: column;
}

.house-img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 22px;
}

.connected-box {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 22px 24px 26px;
}

.connected-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.connected-top img {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
}

.connected-top p {
  font-size: 16px;
  color: #2f3331;
  line-height: 1.5;
}

.connected-top .count {
  color: var(--red);
  font-weight: 700;
}

.connected-box .btn {
  display: block;
  width: 100%;
}

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 46px 0 40px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand .logo {
  height: 100px;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 14px;
  color: #555;
}

.footer-cols {
  display: flex;
  gap: 70px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1d1f1e;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 15px;
  color: #4a4f4d;
}

.footer-col a:hover {
  color: var(--teal);
  text-decoration: underline;
}

/* ===== Disclaimer ===== */
.disclaimer {
  border-top: 1px solid var(--border);
  padding: 30px 0;
}

.disclaimer p {
  font-size: 12px;
  color: #8a8a8a;
  line-height: 1.7;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding: 40px 22px 44px;
    order: 2;
  }

  .hero-right {
    order: 1;
    min-height: 240px;
    margin: 16px;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);

  }

  .hero-title {
    font-size: 44px;
  }

  .works-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section-title {
    font-size: 32px;
  }

  .footer-grid {
    flex-direction: column;
  }

  .footer-cols {
    gap: 48px;
  }
}

@media (max-width: 560px) {
  @media (max-width: 560px) {

  .site-header .container {
    flex-direction: column;
    gap: 6px;
    min-height: 0;
    padding-top: 8px;
    padding-bottom: 10px;
  }

  .site-header .logo {
    height: 115px;
  }

}

  .header-call {
    font-size: 14px;
  }

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

  .hero-stars {
    width: 100%;
  }

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

  .btn-lg {
    font-size: 19px;
    padding: 15px 24px;
  }

  .section {
    padding: 44px 0;
  }
}
