:root {
  --bg: #f5f1e8;
  --surface: #fffaf3;
  --surface-strong: #f1e3cb;
  --text: #18212b;
  --muted: #55616d;
  --brand: #0c6b58;
  --brand-strong: #084f42;
  --accent: #e29a2d;
  --line: rgba(24, 33, 43, 0.08);
  --shadow: 0 22px 50px rgba(24, 33, 43, 0.12);
  --radius: 24px;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(226, 154, 45, 0.16), transparent 28%),
    linear-gradient(180deg, #f8f4ec 0%, #f4eee4 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: #fff;
  border-radius: 999px;
}

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

.demo-banner {
  color: white;
  background: var(--brand-strong);
}

.demo-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 52px;
  padding: 0.7rem 0;
}

.demo-banner p {
  margin: 0;
  font-weight: 700;
}

.demo-banner a {
  flex: 0 0 auto;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: var(--text);
  background: white;
  font-weight: 800;
}

@media (max-width: 640px) {
  .demo-banner-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(248, 244, 236, 0.84);
  border-bottom: 1px solid rgba(24, 33, 43, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
}

.brand-mark {
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(12, 107, 88, 0.18);
}

.brand-text {
  display: grid;
  gap: 0.1rem;
}

.brand-text strong,
h1,
h2,
h3 {
  font-family: "Outfit", sans-serif;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.95rem;
}

.header-call {
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  background: var(--text);
  color: white;
  font-weight: 700;
}

@media (max-width: 699px) {
  .header-inner {
    justify-content: flex-start;
  }

  .brand {
    min-width: 0;
  }

  .brand-text strong {
    line-height: 1.05;
  }

  .brand-text span {
    font-size: 0.9rem;
  }

  .header-call {
    display: none;
  }
}

.hero {
  padding: 1.25rem 0 1.5rem;
}

.hero-grid,
.feature-grid,
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  align-items: center;
}

.hero-copy,
.hero-visual,
.feature-visual,
.quote-form,
.contact-copy {
  position: relative;
}

.hero-copy {
  padding: 1rem 0 0.5rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--brand);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.45rem, 6vw, 4.9rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: none;
}

.hero-subheadline {
  margin: 1rem 0 0;
  max-width: 34rem;
  font-size: 1.18rem;
  line-height: 1.45;
  color: var(--muted);
}

.hero-visual {
  align-self: stretch;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.cta-actions .button {
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.9rem 1.35rem;
  border: none;
  border-radius: 18px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.button:hover,
.button:focus-visible,
.header-call:hover,
.header-call:focus-visible,
.sticky-call:hover,
.sticky-call:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--brand) 0%, #118c73 100%);
  color: white;
  box-shadow: 0 12px 30px rgba(12, 107, 88, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  border: 1px solid rgba(24, 33, 43, 0.1);
}

.hero-callout {
  display: grid;
  gap: 0.25rem;
  width: fit-content;
  max-width: 100%;
  margin-top: 1.15rem;
  padding: 1rem 1.15rem;
  border-radius: 20px;
  background: rgba(12, 107, 88, 0.1);
  border: 1px solid rgba(12, 107, 88, 0.18);
  box-shadow: 0 14px 30px rgba(12, 107, 88, 0.08);
}

.hero-callout-label,
.cta-note {
  color: var(--accent);
  font-weight: 800;
}

.hero-callout strong {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 7vw, 3rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-callout span:last-child {
  color: var(--brand-strong);
  font-weight: 800;
}

.hero-points {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
  color: var(--text);
}

.hero-points li::before,
.check-list li::before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  margin-right: 0.7rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(226, 154, 45, 0.14);
}

.hero-visual img,
.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-visual img {
  max-height: 640px;
  object-position: center top;
}

.hero-visual::before,
.feature-visual::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(226, 154, 45, 0.24), rgba(12, 107, 88, 0.12));
  z-index: -1;
}

.trust-bar {
  padding: 0.65rem 0 0;
}

.trust-items {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.9);
  border: 1px solid rgba(24, 33, 43, 0.06);
  box-shadow: 0 10px 30px rgba(24, 33, 43, 0.05);
  text-align: center;
  font-weight: 700;
}

.trust-highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.trust-stars {
  color: var(--accent);
  letter-spacing: 0.08em;
  font-size: 0.9em;
}

.section {
  padding: 4rem 0;
}

.section-heading {
  margin-bottom: 1.5rem;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.services-grid,
.service-area-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.service-area-grid div,
.quote-form,
.contact-copy,
.cta-inner {
  background: rgba(255, 250, 243, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 15px 40px rgba(24, 33, 43, 0.05);
}

.service-card {
  padding: 1.4rem;
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
}

.service-card p,
.contact-note,
.contact-details,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.why-choose-us {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 250, 243, 0.55));
}

.feature-grid {
  align-items: center;
}

.check-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 1.1rem;
  font-weight: 600;
}

.cta-band {
  padding-top: 1rem;
}

.cta-inner {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #24384a 0%, #31536a 100%);
  color: white;
}

.cta-inner .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.cta-note {
  margin: 0.8rem 0 0;
  color: #f7c56f;
}

.cta-inner .button-primary {
  background: linear-gradient(135deg, #ef9f22 0%, #f4b34f 100%);
  color: #17202a;
  box-shadow: 0 12px 28px rgba(239, 159, 34, 0.25);
}

.cta-inner .button-secondary {
  background: rgba(255, 255, 255, 0.92);
}

.service-area-grid div {
  padding: 1rem 1.15rem;
  font-weight: 700;
}

.contact-grid {
  align-items: start;
}

.contact-copy,
.quote-form {
  padding: 1.5rem;
}

.contact-copy {
  display: grid;
  gap: 0.75rem;
}

.contact-phone {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  margin-top: 0.15rem;
  line-height: 1;
}

.contact-phone-number {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.contact-phone-hint {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(12, 107, 88, 0.1);
  color: var(--brand);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.contact-note {
  margin-top: 0.65rem;
  max-width: 26rem;
  font-size: 1rem;
  line-height: 1.4;
}

.contact-details {
  display: grid;
  gap: 0.12rem;
  margin-top: 0.8rem;
  line-height: 1.2;
}

.contact-details p {
  margin: 0;
}

.contact-media {
  display: none;
  overflow: hidden;
  margin-top: 0.25rem;
  border-radius: 22px;
}

.contact-media img {
  width: 100%;
  height: 100%;
  max-height: 200px;
  object-fit: cover;
  object-position: center 18%;
}

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

.quote-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(24, 33, 43, 0.12);
  border-radius: 16px;
  background: white;
  color: var(--text);
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 2px solid rgba(12, 107, 88, 0.18);
  border-color: var(--brand);
}

.site-footer {
  padding: 0 0 6rem;
}

.footer-grid {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(24, 33, 43, 0.08);
}

.site-footer strong {
  display: inline-block;
  margin-bottom: 0.3rem;
}

.site-footer p,
.site-footer a {
  overflow-wrap: anywhere;
}

.sticky-call {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.75rem;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #de8f1b 0%, #efad4b 100%);
  color: #1d1508;
  font-weight: 800;
  box-shadow: 0 14px 35px rgba(29, 21, 8, 0.2);
}

.demo-modal[hidden] {
  display: none;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.demo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 33, 43, 0.62);
}

.demo-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid rgba(24, 33, 43, 0.1);
  border-radius: 24px;
  background: #fffaf3;
  box-shadow: var(--shadow);
}

.demo-modal-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.demo-modal-panel p:not(.eyebrow) {
  margin: 1rem 0 1.4rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.5;
}

.demo-modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  color: var(--text);
  background: rgba(24, 33, 43, 0.08);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

@media (min-width: 700px) {
  .trust-items,
  .services-grid,
  .service-area-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions,
  .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-visual img {
    object-position: 72% 32%;
  }
}

@media (min-width: 900px) {
  h1 {
    font-size: clamp(2.8rem, 5vw, 4.4rem);
  }

  .hero-subheadline {
    font-size: 1.08rem;
  }

  .hero-points {
    gap: 0.6rem;
  }

  .hero-visual img {
    max-height: 600px;
    object-position: center center;
  }

  .hero-grid,
  .feature-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
  }

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

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

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

  .cta-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 1.5rem;
  }

  .cta-actions {
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.75rem;
  }

  .cta-actions .button {
    min-height: 3.2rem;
    padding: 0.85rem 1.05rem;
  }

  .sticky-call {
    display: none;
  }

  .contact-copy,
  .quote-form,
  .cta-inner {
    padding: 2rem;
  }

  .contact-media {
    display: block;
  }
}

@media (min-width: 1200px) {
  .hero {
    padding-top: 2.5rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
