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

:root {
  --bg: #f9f5ef;
  --bg-alt: #efe6d8;
  --paper: #fffdf9;
  --ink: #1b2a28;
  --muted: #5f6f6c;
  --brand: #0d7a68;
  --brand-2: #ea6e2f;
  --line: #d4c7b6;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 14px 30px rgba(45, 35, 20, 0.08);
  --font-ui: 'Sora', 'Segoe UI', sans-serif;
  --font-title: 'Newsreader', Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--ink);
  background: radial-gradient(circle at 15% 10%, #fff8eb 0, transparent 36%),
    radial-gradient(circle at 88% 8%, #f2ece2 0, transparent 34%),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.4;
}

.bg-shape--one {
  width: 300px;
  height: 300px;
  top: -120px;
  right: -90px;
  background: #bce4dd;
}

.bg-shape--two {
  width: 280px;
  height: 280px;
  bottom: -90px;
  left: -80px;
  background: #ffd8c2;
}

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

.section {
  padding: 86px 0;
}

.section--tint {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(239, 230, 216, 0.55));
  border-top: 1px solid rgba(212, 199, 182, 0.7);
  border-bottom: 1px solid rgba(212, 199, 182, 0.7);
}

.section__head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section__label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
}

.section__title {
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  line-height: 1.12;
  color: var(--ink);
}

.grid {
  display: grid;
  gap: 18px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(249, 245, 239, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav.is-scrolled {
  border-bottom-color: rgba(212, 199, 182, 0.9);
  background: rgba(249, 245, 239, 0.95);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0;
}

.brand {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.brand span {
  color: var(--brand);
  margin-left: 3px;
}

.nav__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 8px 12px;
  border-radius: 10px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav__links a:hover {
  color: var(--ink);
  background: rgba(13, 122, 104, 0.08);
}

.nav__cta {
  background: var(--brand);
  color: #f6fffd !important;
}

.nav__cta:hover {
  background: #0a6456 !important;
}

.nav__tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.lang-btn {
  border: 0;
  background: transparent;
  padding: 7px 10px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
}

.lang-btn.is-active {
  background: var(--ink);
  color: #fff;
}

.nav__burger {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.nav__burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
}

.hero {
  padding: 82px 0 70px;
}

.hero__inner {
  max-width: 760px;
}

.hero__kicker {
  display: inline-block;
  background: rgba(13, 122, 104, 0.1);
  border: 1px solid rgba(13, 122, 104, 0.18);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 999px;
}

.hero__title {
  margin-top: 18px;
  font-family: var(--font-title);
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.05;
}

.hero__sub {
  margin-top: 18px;
  color: var(--muted);
  max-width: 640px;
  font-size: clamp(1rem, 2.1vw, 1.22rem);
}

.hero__actions {
  margin-top: 28px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero__chips {
  margin-top: 26px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero__chips span {
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px dashed rgba(95, 111, 108, 0.5);
  color: #44514f;
  background: rgba(255, 255, 255, 0.55);
}

.btn {
  text-decoration: none;
  border: 0;
  border-radius: 12px;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 12px 18px;
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand), #0f8a75);
  color: #fff;
}

.btn--primary:hover {
  filter: brightness(1.04);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn--ghost:hover {
  background: #fff;
}

.btn--full {
  width: 100%;
}

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

.service-card,
.win-card {
  padding: 24px;
}

.service-card__time {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--brand-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3,
.win-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card p,
.win-card p {
  color: var(--muted);
  font-size: 0.93rem;
}

.service-card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.service-card li {
  font-size: 0.86rem;
  color: #3f4f4c;
  padding-left: 17px;
  position: relative;
}

.service-card li::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  left: 0;
  top: 9px;
  border-radius: 999px;
  background: var(--brand);
}

.service-card--accent {
  border-color: rgba(234, 110, 47, 0.45);
  background: linear-gradient(170deg, #fff8f3, #fffdf9);
}

.about__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.about__text {
  padding-right: 20px;
}

.about__text p {
  margin-top: 12px;
  color: var(--muted);
}

.about__bullets {
  padding: 24px;
  display: grid;
  gap: 12px;
  align-content: center;
}

.about__bullets p {
  color: #34433f;
  font-size: 0.92rem;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(13, 122, 104, 0.06);
  border: 1px solid rgba(13, 122, 104, 0.14);
}

.lead-card {
  display: grid;
  gap: 28px;
  background: linear-gradient(170deg, #fffefb, #f7f0e6);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  padding: clamp(20px, 4vw, 36px);
}

.contact__sub {
  margin-top: 12px;
  max-width: 640px;
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form__row {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lead-form__row--single {
  grid-template-columns: 1fr;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid #cfc0ac;
  border-radius: 12px;
  background: #fff;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  color: var(--ink);
  padding: 11px 12px;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(13, 122, 104, 0.14);
}

.form-note {
  color: #6d6458;
  font-size: 0.8rem;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
}

.footer__inner p {
  color: var(--muted);
  font-size: 0.86rem;
}

.footer__links {
  display: flex;
  gap: 14px;
}

.footer__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.86rem;
}

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

.products__cta {
  margin-top: 28px;
  text-align: center;
}

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

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

@keyframes enterSoft {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__inner > * {
  animation: enterSoft 0.55s ease both;
}

.hero__inner > *:nth-child(2) {
  animation-delay: 0.08s;
}

.hero__inner > *:nth-child(3) {
  animation-delay: 0.14s;
}

.hero__inner > *:nth-child(4) {
  animation-delay: 0.2s;
}

@media (max-width: 980px) {
  .services__grid,
  .wins__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about__text {
    padding-right: 0;
  }
}

@media (max-width: 760px) {
  .nav__links {
    display: none;
    position: fixed;
    inset: 62px 1rem auto;
    background: #fffdf8;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 8px;
    box-shadow: var(--shadow-soft);
  }

  .nav__links.open {
    display: grid;
    gap: 4px;
  }

  .nav__links a {
    font-size: 1rem;
    padding: 10px;
  }

  .nav__burger {
    display: inline-block;
  }

  .hero {
    padding-top: 64px;
  }

  .services__grid,
  .wins__grid,
  .lead-form__row {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}
