/* =============================================================
   BASE & RESET
============================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --brand:       #F19885;
  --brand-dark:  #e07d6a;
  --brand-soft:  rgba(241, 152, 133, 0.12);
  --ink:         #1D1D1B;
  --ink-mid:     #5A5A58;
  --ink-light:   #8C8C8A;
  --bg:          #FDFAF9;
  --bg-warm:     #F9F4F2;
  --white:       #FFFFFF;
  --border:      rgba(0,0,0,0.07);

  --font-head:   'Plus Jakarta Sans', sans-serif;
  --font-body:   'DM Sans', sans-serif;

  --radius:      8px;
  --radius-sm:   5px;

  /* Sticky bar height — used to pad body content on mobile */
  --sticky-h:    68px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* Space for the bottom-fixed sticky bar on mobile */
  padding-bottom: var(--sticky-h);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

address {
  font-style: normal;
}


/* =============================================================
   STICKY BAR
   Mobile: fixed bottom. Desktop: fixed top.
============================================================= */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--sticky-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: rgba(253, 250, 249, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
}

.sticky-bar__number {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}

.sticky-bar__label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.sticky-bar__phone {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.sticky-bar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.sticky-bar__chat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--brand);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 6px;
  border: 1.5px solid var(--brand);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.sticky-bar__chat:hover,
.sticky-bar__chat:focus-visible {
  background: var(--brand-soft);
}

.sticky-bar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(241, 152, 133, 0.30);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.sticky-bar__cta:hover,
.sticky-bar__cta:focus-visible {
  background: var(--brand-dark);
  box-shadow: 0 6px 18px rgba(241, 152, 133, 0.40);
}

@media (min-width: 768px) {
  .sticky-bar {
    top: 0;
    bottom: auto;
    border-top: none;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  }

  .sticky-bar__label {
    font-size: 11px;
  }

  .sticky-bar__phone {
    font-size: 18px;
  }

  body {
    padding-bottom: 0;
    padding-top: var(--sticky-h);
  }
}


/* =============================================================
   HERO
============================================================= */
.hero {
  padding: 36px 24px 48px;
  min-height: calc(100svh - var(--sticky-h));
  display: flex;
  flex-direction: column;
}

.hero__logo-wrap {
  margin-bottom: 32px;
}

.hero__logo {
  width: 140px;
  height: auto;
}

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 6vw, 38px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-light);
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}

.hero__phone {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(30px, 8vw, 44px);
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 28px;
  transition: color 0.15s ease;
}

.hero__phone:hover,
.hero__phone:focus-visible {
  color: var(--brand-dark);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-bottom: 14px;
}

.hero__actions .btn-primary,
.hero__actions .btn-chat {
  width: 100%;
}

.hero__reassurance {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-light);
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .hero {
    min-height: 0;
    max-width: 600px;
    margin: 0 auto;
    padding: 72px 24px 80px;
    align-items: center;
    text-align: center;
  }

  .hero__logo-wrap {
    margin-bottom: 48px;
  }

  .hero__logo {
    width: 180px;
  }

  .hero__content {
    width: 100%;
    align-items: center;
  }
}


/* =============================================================
   BUTTONS — primary (call) and secondary (chat)
============================================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  background: var(--brand);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(241, 152, 133, 0.28);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

.btn-primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 6px 20px rgba(241, 152, 133, 0.40);
}

.btn-primary:active {
  transform: translateY(1px);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.btn-chat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--brand);
  background: transparent;
  border: 1.5px solid var(--brand);
  border-radius: var(--radius);
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-chat:hover {
  background: var(--brand-soft);
}

.btn-chat:active {
  transform: translateY(1px);
}

.btn-chat:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}


/* =============================================================
   TRUST SECTION
============================================================= */
.trust {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
}

.trust__inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.trust__text p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-mid);
}

.trust__text a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border);
  transition: text-decoration-color 0.15s;
}

.trust__text a:hover {
  text-decoration-color: var(--brand);
}

.trust__cqc-logo {
  opacity: 0.85;
  transition: opacity 0.15s;
}

.trust__cqc a:hover .trust__cqc-logo {
  opacity: 1;
}

@media (min-width: 640px) {
  .trust__inner {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .trust__text {
    flex: 1;
  }
}


/* =============================================================
   WHAT WE OFFER
============================================================= */
.offer {
  padding: 64px 24px;
}

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

.offer__heading {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 40px;
  text-align: center;
}

.offer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.offer__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.offer__icon {
  flex-shrink: 0;
}

.offer__title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.offer__desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.65;
}

@media (min-width: 640px) {
  .offer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}


/* =============================================================
   REVIEWS / SOCIAL PROOF
============================================================= */
.reviews {
  background: var(--bg-warm);
  padding: 64px 24px;
}

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

.reviews__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
  text-align: center;
}

.reviews__stars {
  display: flex;
  gap: 4px;
}

.star {
  width: 22px;
  height: 22px;
}

.reviews__score {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.review {
  position: relative;
  padding: 32px 28px 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.review::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 22px;
  font-family: var(--font-head);
  font-size: 72px;
  line-height: 1;
  color: var(--brand);
  opacity: 0.18;
  pointer-events: none;
  user-select: none;
}

.review__quote {
  font-family: var(--font-body);
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink-mid);
  margin-bottom: 16px;
  padding-top: 8px;
}

.review__footer {
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.review__name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-light);
}

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


/* =============================================================
   SECOND CTA
============================================================= */
.cta2 {
  padding: 72px 24px 80px;
}

.cta2__inner {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta2__heading {
  font-family: var(--font-head);
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 8px;
}

.cta2__sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-light);
  margin-bottom: 28px;
}

.cta2__phone {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(30px, 8vw, 44px);
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.15s ease;
}

.cta2__phone:hover,
.cta2__phone:focus-visible {
  color: var(--brand-dark);
}

.cta2__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.cta2__actions .btn-primary,
.cta2__actions .btn-chat {
  width: 100%;
}


/* =============================================================
   FOOTER
============================================================= */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 40px 24px 48px;
}

.footer__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__logo {
  width: 110px;
  height: auto;
  opacity: 0.7;
}

.footer__address,
.footer__phone,
.footer__cqc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.7;
}

.footer__phone {
  display: inline-block;
  color: var(--ink-mid);
  transition: color 0.15s;
}

.footer__phone:hover {
  color: var(--brand);
}

.footer__cqc a {
  color: var(--ink-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__cqc-logo img {
  opacity: 0.6;
  transition: opacity 0.15s;
}

.footer__cqc-logo a:hover img {
  opacity: 0.9;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-light);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.footer__link {
  transition: color 0.15s;
}

.footer__link:hover {
  color: var(--ink);
}

.footer__sep {
  opacity: 0.4;
}

@media (min-width: 640px) {
  .footer__inner {
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px 48px;
  }

  .footer__legal {
    width: 100%;
    margin-top: 0;
  }
}


/* =============================================================
   FOCUS RING — accessible but not intrusive
============================================================= */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}
