:root {
  --bg: #f6fbf9;
  --bg-soft: #edf7f3;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --text: #123233;
  --muted: #4e6766;
  --line: rgba(18, 50, 51, 0.1);
  --primary: #0f3d3e;
  --primary-2: #14585a;
  --accent: #5ca88c;
  --accent-soft: #dff1e8;
  --shadow: 0 18px 45px rgba(12, 44, 43, 0.12);
  --radius: 24px;
  --max: 1180px;
  --section-gap: clamp(4rem, 7vw, 6rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(92, 168, 140, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(15, 61, 62, 0.14), transparent 22%),
    linear-gradient(180deg, #f9fcfb 0%, #eef8f4 100%);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.section {
  padding: var(--section-gap) 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(223, 241, 232, 0.34));
  border-top: 1px solid rgba(18, 50, 51, 0.05);
  border-bottom: 1px solid rgba(18, 50, 51, 0.05);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  background: rgba(223, 241, 232, 0.9);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid rgba(92, 168, 140, 0.26);
}

.eyebrow::before {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #7fd4b4);
}

.eyebrow-light {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.eyebrow-light::before {
  background: #ffffff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.why-copy h2,
.contact-copy h2,
.cta-copy h2 {
  margin: 0.9rem 0 0.85rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.section-heading p,
.hero-copy p,
.why-copy p,
.contact-copy p,
.cta-copy p,
.card p,
.mini-card p,
.step p,
.stat span,
.pricing-note {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(246, 251, 249, 0.8);
  border-bottom: 1px solid rgba(18, 50, 51, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-icon,
.footer-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav {
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.82rem 1rem;
  color: var(--muted);
  font-weight: 600;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(15, 61, 62, 0.06);
  color: var(--primary);
  outline: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.35rem;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 34px rgba(15, 61, 62, 0.22);
}

.button-secondary {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 61, 62, 0.12);
  box-shadow: 0 10px 24px rgba(15, 61, 62, 0.08);
}

.button-light {
  color: var(--primary);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(15, 61, 62, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--primary);
  border-radius: 999px;
}

.hero {
  padding-top: clamp(3.5rem, 7vw, 6rem);
}

.hero-grid,
.why-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  max-width: 11ch;
}

.hero-copy p {
  margin: 0;
  max-width: 640px;
  font-size: clamp(1.04rem, 2vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.hero-points span,
.contact-point {
  padding: 0.76rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(18, 50, 51, 0.08);
  color: var(--muted);
  font-weight: 600;
}

.hero-card,
.card,
.step,
.contact-card,
.why-panel,
.pricing-note {
  background: var(--surface);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.35rem;
}

.hero-logo {
  width: 100%;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
}

.hero-card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.mini-card,
.stat {
  padding: 1rem 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 50, 51, 0.08);
  border-radius: 18px;
}

.mini-card strong,
.card h3,
.step h3,
.stat strong {
  display: block;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}

.grid {
  display: grid;
  gap: 1.2rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.step,
.contact-card,
.why-panel {
  padding: 1.35rem;
}

.service-card {
  min-height: 100%;
}

.pricing-note {
  margin-top: 1.2rem;
  padding: 1rem 1.15rem;
  font-size: 0.96rem;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 0.9rem;
  border-radius: 16px;
  background: rgba(223, 241, 232, 0.95);
  color: var(--primary);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.why-list {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.why-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
  font-weight: 600;
}

.why-list li::before {
  content: "";
  position: absolute;
  top: 0.48rem;
  left: 0;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #7fd4b4);
}

.why-panel {
  display: grid;
  gap: 1rem;
}

.why-icon {
  width: min(260px, 100%);
  margin: 0 auto;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stat strong {
  font-size: 1.15rem;
  color: var(--primary);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 32px;
  background:
    radial-gradient(circle at 20% 20%, rgba(127, 212, 180, 0.16), transparent 20%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(135deg, var(--primary), #123f40 40%, #1f6a61 100%);
  color: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 61, 62, 0.28);
}

.cta-copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
}

.contact-copy p {
  max-width: 560px;
}

.contact-points {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
  color: var(--primary);
}

input,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(18, 50, 51, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: #7b9190;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(20, 88, 90, 0.55);
  box-shadow: 0 0 0 4px rgba(92, 168, 140, 0.15);
}

textarea {
  min-height: 144px;
  resize: vertical;
}

.success-message {
  display: none;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(223, 241, 232, 0.88);
  color: var(--primary);
  border: 1px solid rgba(92, 168, 140, 0.28);
  font-weight: 600;
}

.site-footer {
  padding: 1.4rem 0 2rem;
  color: var(--muted);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(18, 50, 51, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .mobile-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    left: auto;
    width: min(320px, calc(100vw - 2rem));
    padding: 0.7rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 50, 51, 0.08);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(15, 61, 62, 0.12);
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 16px;
  }

  .form-row,
  .why-stats,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1.15rem), var(--max));
  }

  .nav-wrap {
    min-height: 72px;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-actions,
  .hero-points {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .cta-panel,
  .hero-card,
  .card,
  .step,
  .contact-card,
  .why-panel,
  .pricing-note {
    border-radius: 22px;
  }
}


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

.website-services-grid {
  align-items: stretch;
}

.offer-card {
  min-height: 100%;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(223, 241, 232, 0.9);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(92, 168, 140, 0.24);
}

.offer-badge-accent {
  background: rgba(15, 61, 62, 0.08);
}

.offer-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
  font-weight: 600;
}

.offer-list li::before {
  content: "";
  position: absolute;
  top: 0.48rem;
  left: 0;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #7fd4b4);
}

.offer-button {
  margin-top: 1.15rem;
}

.business-info {
  padding: 0 0 0.6rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.business-info p {
  margin: 0;
  text-align: center;
}

select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(18, 50, 51, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

select:focus {
  outline: none;
  border-color: rgba(20, 88, 90, 0.55);
  box-shadow: 0 0 0 4px rgba(92, 168, 140, 0.15);
}

.chat-launcher {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 58px;
  padding: 0.95rem 1.2rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(15, 61, 62, 0.26);
  cursor: pointer;
}

.chat-launcher-icon {
  display: inline-grid;
  place-items: center;
}

.chat-widget[hidden] {
  display: none !important;
}

.chat-widget {
  position: fixed;
  right: 1.25rem;
  bottom: 5.9rem;
  z-index: 1200;
  width: min(390px, calc(100vw - 1.2rem));
  height: min(720px, calc(100vh - 5rem));
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(18, 50, 51, 0.08);
  border-radius: 26px;
  box-shadow: 0 28px 64px rgba(15, 61, 62, 0.22);
  overflow: hidden;
}

.chat-widget__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 0.9rem;
  border-bottom: 1px solid rgba(18, 50, 51, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,249,0.96));
}

.chat-widget__brand {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.8rem;
  align-items: center;
}

.chat-widget__brand strong {
  display: block;
  color: var(--primary);
}

.chat-widget__brand span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.chat-widget__icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.chat-widget__close {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(18, 50, 51, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.chat-widget__body {
  min-height: 0;
  display: grid;
  grid-template-rows: 1fr auto;
}

.chat-messages {
  padding: 1rem;
  overflow-y: auto;
  display: grid;
  gap: 0.85rem;
  background: linear-gradient(180deg, rgba(248,250,249,0.6), rgba(255,255,255,0.8));
}

.chat-message {
  display: flex;
}

.chat-message--assistant {
  justify-content: flex-start;
}

.chat-message--user {
  justify-content: flex-end;
}

.chat-message__bubble {
  max-width: 85%;
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  white-space: pre-wrap;
  line-height: 1.5;
}

.chat-message--assistant .chat-message__bubble {
  background: rgba(239, 246, 242, 0.95);
  color: var(--text);
  border: 1px solid rgba(92, 168, 140, 0.15);
}

.chat-message--user .chat-message__bubble {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #ffffff;
}

.chat-starters {
  display: flex;
  gap: 0.4rem;
  padding: 0 0.7rem 0.35rem;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: thin;
}

.chat-starters--compact {
  padding-bottom: 0.15rem;
  opacity: 0.85;
}

.chat-chip {
  flex: 0 0 auto;
  border: 1px solid rgba(18, 50, 51, 0.1);
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary);
  border-radius: 999px;
  padding: 0.34rem 0.58rem;
  font: inherit;
  font-size: 0.70rem;
  font-weight: 600;
  cursor: pointer;
}

.chat-widget__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: end;
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid rgba(18, 50, 51, 0.08);
  background: #ffffff;
}

.chat-widget__input {
  width: 100%;
  min-height: 52px;
  max-height: 132px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(18, 50, 51, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  resize: none;
}

.chat-widget__submit {
  min-width: 88px;
}

.booking-page {
  min-height: calc(100vh - 180px);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.booking-copy h1 {
  margin: 0.9rem 0 0.9rem;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.booking-note {
  margin-top: 1.5rem;
  padding: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-note strong {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1100px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .form-row,
  .why-stats,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .chat-launcher {
    right: 0.7rem;
    bottom: 0.7rem;
    padding: 0.9rem 1rem;
  }

  .chat-widget {
    right: 0.55rem;
    left: 0.55rem;
    bottom: 5.2rem;
    width: auto;
    height: min(76vh, 700px);
  }

  .chat-widget__form {
    grid-template-columns: 1fr;
  }

  .chat-widget__submit {
    width: 100%;
  }
}
