:root {
  --cream: #f7f5ef;
  --ink: #17202a;
  --slate: #2f3c4a;
  --teal: #0d8f8c;
  --teal-deep: #0b6f6d;
  --mint: #6dd8c7;
  --sun: #f3c34f;
  --card: #ffffff;
  --max: 1120px;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(12, 39, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 90% 10%, #dff5ef 0%, transparent 42%),
    radial-gradient(circle at 10% 20%, #f8eecf 0%, transparent 35%), var(--cream);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

.bg-mesh {
  position: fixed;
  inset: -20% -20% auto;
  height: 640px;
  background: linear-gradient(130deg, rgba(13, 143, 140, 0.14), rgba(243, 195, 79, 0.14));
  filter: blur(42px);
  z-index: -1;
  pointer-events: none;
}

.site-header {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  backdrop-filter: blur(6px);
  z-index: 10;
}

.brand {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--teal), var(--mint));
  color: #fff;
  font-weight: 700;
  font-family: "Sora", sans-serif;
}

.brand-text {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.header-phone {
  margin-left: auto;
  margin-right: 0.75rem;
  text-decoration: none;
  color: var(--teal-deep);
  font-weight: 700;
  border: 1px solid rgba(13, 143, 140, 0.36);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  background: rgba(255, 255, 255, 0.85);
}

.header-phone:hover,
.header-phone:focus-visible {
  background: #fff;
  border-color: rgba(13, 143, 140, 0.6);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a {
  color: var(--slate);
  text-decoration: none;
  font-weight: 500;
}

.site-nav a.btn {
  color: #fff;
}

.menu-toggle {
  display: none;
}

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

.hero {
  padding: 4.6rem 0 2.6rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--teal-deep);
  font-weight: 700;
  font-size: 0.82rem;
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  margin: 0;
  line-height: 1.1;
}

h1 {
  margin-top: 0.8rem;
  font-size: clamp(2.2rem, 6vw, 5rem);
  max-width: 14ch;
}

h1 span {
  color: var(--teal);
  position: relative;
}

h1 span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.1em;
  height: 0.24em;
  background: rgba(243, 195, 79, 0.54);
  z-index: -1;
}

.hero-copy {
  max-width: 57ch;
  margin-top: 1.2rem;
  color: var(--slate);
  font-size: 1.1rem;
}

.hero-subtitle {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--teal-deep);
  max-width: 58ch;
}

.pricing-anchor {
  margin-top: 0.9rem;
  color: var(--slate);
}

.pricing-anchor strong {
  color: var(--teal-deep);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-family: "Sora", sans-serif;
  padding: 0.86rem 1.25rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(11, 111, 109, 0.3);
}

.btn-small {
  padding: 0.6rem 1rem;
  font-size: 0.93rem;
}

.btn-ghost {
  background: transparent;
  border: 2px solid rgba(13, 143, 140, 0.36);
  color: var(--teal-deep);
  box-shadow: none;
}

.hero-points {
  margin-top: 2rem;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
  color: var(--slate);
}

.section-head {
  display: grid;
  gap: 0.7rem;
}

section {
  padding: 1.8rem 0;
}

.services {
  padding-top: 0;
}

.services h2,
.process h2,
.contact h2 {
  max-width: 16ch;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
}

.card-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  background: var(--card);
  padding: 1.3rem;
  border-radius: var(--radius);
  border: 1px solid rgba(23, 32, 42, 0.08);
  box-shadow: var(--shadow);
}

.service-card h3 {
  font-size: 1.1rem;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: rgba(13, 143, 140, 0.1);
  margin-bottom: 0.7rem;
}

.service-card p {
  color: var(--slate);
  margin: 0.8rem 0 0;
}

.timeline {
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.timeline li {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.3rem;
  border-top: 6px solid var(--sun);
  box-shadow: var(--shadow);
}

.timeline p {
  margin: 0.7rem 0 0;
  color: var(--slate);
}

.faq-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--teal);
}

.faq-item p {
  margin: 0.7rem 0 0;
  color: var(--slate);
}

.results-grid,
.testimonial-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.result-card,
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.result-card {
  max-width: 360px;
  width: 100%;
}

.result-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.result-image {
  margin: 0;
  width: 100%;
  height: 115px;
  border-radius: 12px;
  display: block;
  position: relative;
  overflow: hidden;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.result-image img {
  display: block;
  width: 100%;
  height: 115px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.results .result-pair .result-image {
  height: 250px !important;
  min-height: 250px !important;
  max-height: 250px !important;
}

.results .result-pair .result-image img {
  width: 100% !important;
  height: 250px !important;
  min-height: 250px !important;
  max-height: 250px !important;
  object-fit: cover !important;
}

.result-card:hover .result-image img,
.result-card:focus-within .result-image img {
  transform: scale(1.04);
}

.image-badge {
  position: absolute;
  left: 0.55rem;
  top: 0.55rem;
  margin: 0;
  background: rgba(23, 32, 42, 0.78);
  color: #fff;
  border-radius: 999px;
  padding: 0.22rem 0.6rem;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.result-image.before {
  background: #e9eef0;
  color: #4b5a66;
}

.result-image.after {
  background: linear-gradient(135deg, #dbf7f1, #eefde8);
  color: #17584f;
}

.result-card h3,
.testimonial-card h3 {
  margin-top: 0.9rem;
  font-size: 1.02rem;
}

.result-card p,
.testimonial-card p {
  margin: 0.55rem 0 0;
  color: var(--slate);
}

.testimonial-card {
  border-left: 5px solid var(--sun);
}

.contact {
  margin: 1rem 0 3rem;
  padding: 2rem;
  border-radius: 24px;
  background: linear-gradient(125deg, #f0fbf9 0%, #fff9e8 100%);
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1.1fr 1fr;
  align-items: start;
}

.contact p {
  color: var(--slate);
}

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.85rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--slate);
}

input,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(47, 60, 74, 0.3);
  padding: 0.7rem;
  font: inherit;
  background: #fcfdfd;
}

.site-footer {
  padding: 1.4rem 0 2.6rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--slate);
  border-top: 1px solid rgba(23, 32, 42, 0.15);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--teal-deep);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
}

.reveal.in-view {
  animation: reveal-up 700ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .card-grid,
  .timeline,
  .faq-grid,
  .results-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .header-phone {
    margin-left: 0;
    margin-right: auto;
    order: 2;
  }

  .menu-toggle {
    display: inline-flex;
    border: 1px solid rgba(47, 60, 74, 0.2);
    background: #fff;
    border-radius: 10px;
    padding: 0.45rem 0.75rem;
    font: inherit;
    font-weight: 600;
    order: 3;
  }

  .site-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(23, 32, 42, 0.08);
    border-radius: 12px;
    padding: 0.8rem;
  }

  .site-nav.open {
    display: flex;
  }

  .card-grid,
  .timeline,
  .faq-grid,
  .results-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.7rem;
  }
}
