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

:root {
  --cream: #f5f0e8;
  --cream-mid: #ede8dc;
  --cream-dark: #e5dfd2;
  --white: #fdfaf4;
  --green: #1e4a2e;
  --green-dark: #133020;
  --green-mid: #2d6641;
  --green-pale: rgba(30, 74, 46, 0.07);
  --orange: #c8714a;
  --orange-lt: #d4845f;
  --orange-pale: rgba(200, 113, 74, 0.1);
  --text: #2c2c2a;
  --text-2: #5a574f;
  --text-3: #8a8780;
  --border: rgba(90, 87, 79, 0.13);
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1)
}

.reveal-l {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1)
}

.reveal-r {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1)
}

.reveal.on,
.reveal-l.on,
.reveal-r.on {
  opacity: 1;
  transform: none
}

.d1 {
  transition-delay: .08s
}

.d2 {
  transition-delay: .18s
}

.d3 {
  transition-delay: .30s
}

.d4 {
  transition-delay: .42s
}

.d5 {
  transition-delay: .54s
}

.d6 {
  transition-delay: .66s
}

/* NAV */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 60px;
  height: 88px;
  position: sticky;
  top: 0;
  z-index: 300;
  transition: box-shadow .3s
}

nav.scrolled {
  box-shadow: 0 2px 28px rgba(30, 74, 46, .08)
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none
}

.nav-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0
}

.nav-wm {
  display: flex;
  flex-direction: column;
  gap: 1px
}

.bl {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-size: 13px;
  letter-spacing: .07em
}

.be {
  color: var(--text);
  font-weight: 400
}

.bb {
  color: var(--orange);
  font-weight: 700
}

.bs {
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: .04em
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px
}

.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  padding-bottom: 3px;
  transition: color .2s
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--orange);
  transition: width .28s cubic-bezier(.22, 1, .36, 1)
}

.nav-links a:hover {
  color: var(--text)
}

.nav-links a:hover::after {
  width: 100%
}

.nav-cta {
  background: var(--green) !important;
  color: #fff !important;
  padding: 6px 22px;
  border-radius: 50px;
  font-weight: 500 !important;
  transition: background .2s, transform .2s !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-cta:hover {
  background: var(--green-mid) !important;
  transform: translateY(-1px)
}

.nav-cta::after {
  display: none !important
}

/* HERO */
.hero-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--border)
}

.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 60px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}

.hero-tag {
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px
}

.hero-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--orange);
  flex-shrink: 0
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(50px, 5.5vw, 76px);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 28px
}

.hero-desc {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 48px
}

.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  padding: 17px 34px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(200, 113, 74, .28);
  transition: background .22s, transform .22s, box-shadow .22s
}

.btn-p svg {
  transition: transform .22s
}

.btn-p:hover {
  background: var(--orange-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 113, 74, .36)
}

.btn-p:hover svg {
  transform: translateX(4px)
}

.hero-visual {
  background: var(--cream);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 48px;
  gap: 18px
}

.hero-logo-svg {
  width: 130px;
  height: 130px;
  animation: float 5s ease-in-out infinite
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-9px)
  }
}

.hbn {
  font-size: 26px;
  letter-spacing: .06em;
  display: flex;
  align-items: baseline;
  gap: 7px
}

.hbs {
  font-size: 14px;
  color: var(--text-3);
  letter-spacing: .04em
}

/* STRIP */
.strip {
  background: var(--green);
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  overflow: hidden
}

.si {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  white-space: nowrap
}

.sd {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0
}

/* VISION */
.vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px
}

.vision-photo {
  overflow: hidden;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center
}

.vision-photo-inner {
  width: 100%;
  height: 100%;
  min-height: 560px;
  background: linear-gradient(160deg, #d9d3c4, #c8bfad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px
}

.vision-content {
  background: var(--cream);
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.eyebrow {
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px
}

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 900;
  color: var(--green);
  line-height: 1.05;
  margin-bottom: 32px
}

.body-text {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 22px
}

/* ESSENCIA */
.ess-wrap {
  background: var(--white);
  padding: 96px 0
}

.ess {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px
}

.ess-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  color: var(--green);
  line-height: 1.05;
  margin-bottom: 52px;
  max-width: 680px
}

.ess-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start
}

.ess-text {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 32px
}

.obj-lbl {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px
}

.obj-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.obj-list li {
  font-size: 15px;
  color: var(--text-2);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5
}

.ci {
  width: 18px;
  height: 18px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px
}

.ci svg {
  width: 10px;
  height: 10px
}

.ess-img-col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 8px
}

.ess-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream-dark), var(--cream-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  transition: transform .5s cubic-bezier(.22, 1, .36, 1)
}

.ess-circle:hover {
  transform: scale(1.04)
}

/* ── QUI SOM ── */
.qs-wrap {
  background: var(--cream);
  padding: 96px 60px
}

.qs-header {
  text-align: center;
  margin-bottom: 64px
}

.qs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto
}

.qs-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s
}

.qs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(30, 74, 46, .1)
}

.qs-avatar {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.qs-avatar-bg {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  border: 3px solid var(--white)
}

.qs-body {
  padding: 24px 28px 32px
}

.qs-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 4px
}

.qs-role {
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px
}

.qs-bio {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7
}

.qs-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-pale);
  color: var(--green);
  font-size: 11.5px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 50px;
  margin-top: 14px
}

.qs-badge svg {
  width: 12px;
  height: 12px
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 800px;
  margin: 56px auto 0;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 28px 20px;
  position: relative
}

.stat-item+.stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border)
}

.stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px
}

.stat-l {
  font-size: 13px;
  color: var(--text-3)
}

/* ── ONBOARDING MOTION ── */
.ob-wrap {
  background: var(--green);
  padding: 96px 60px;
  position: relative;
  overflow: hidden
}

.ob-wrap::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .03);
  pointer-events: none
}

.ob-wrap::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(200, 113, 74, .07);
  pointer-events: none
}

.ob-header {
  text-align: center;
  margin-bottom: 72px
}

.ob-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.05
}

.ob-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .65);
  max-width: 520px;
  margin: 0 auto
}

.ob-track {
  max-width: 1100px;
  margin: 0 auto;
  position: relative
}

.ob-line {
  position: absolute;
  top: 52px;
  left: calc(52px + (100% - 104px)/8);
  right: calc(52px + (100% - 104px)/8);
  height: 2px;
  background: rgba(255, 255, 255, .12);
  z-index: 0
}

.ob-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--orange);
  width: 0%;
  transition: width 1.4s cubic-bezier(.22, 1, .36, 1);
  border-radius: 2px
}

.ob-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1
}

.ob-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px
}

.ob-icon-wrap {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  transition: border-color .5s, background .5s;
  flex-shrink: 0
}

.ob-step.active .ob-icon-wrap {
  border-color: var(--orange);
  background: rgba(200, 113, 74, .18)
}

.ob-step-num {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-dark);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  transition: background .5s, color .5s, border-color .5s
}

.ob-step.active .ob-step-num {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange)
}

.ob-icon-svg {
  width: 44px;
  height: 44px;
  transition: transform .4s cubic-bezier(.22, 1, .36, 1)
}

.ob-step.active .ob-icon-svg {
  transform: scale(1.1)
}

.ob-step-label {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2
}

.ob-step-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.65;
  max-width: 200px
}

.ob-step.active .ob-step-desc {
  color: rgba(255, 255, 255, .8)
}

.ob-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 52px
}

.ob-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  border: none;
  cursor: pointer;
  transition: background .3s, transform .3s;
  padding: 0
}

.ob-dot.active {
  background: var(--orange);
  transform: scale(1.35)
}

/* ── SERVEIS ── */
.srv-wrap {
  background: var(--cream);
  padding: 96px 60px
}

.srv-header {
  text-align: center;
  margin-bottom: 64px
}

.srv-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 74px);
  font-weight: 900;
  color: var(--green);
  line-height: 1
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto
}

.card {
  background: var(--cream-mid);
  border-radius: 24px;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 52px rgba(30, 74, 46, .11)
}

.card-img {
  width: 100%;
  height: 240px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px
}

.card-body {
  padding: 28px 28px 36px;
  text-align: center
}

.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 14px;
  line-height: 1.2
}

.card-body p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.7
}

.btn-center {
  display: flex;
  justify-content: center;
  margin: 52px auto 0;
  max-width: 1180px
}

.btn-o {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  font-size: 14.5px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  background: transparent;
  transition: background .22s, color .22s, transform .22s
}

.btn-o:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px)
}

/* ── FAQ ── */
.faq-wrap {
  background: var(--white);
  padding: 96px 60px
}

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

.faq-header {
  text-align: center;
  margin-bottom: 56px
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0
}

.faq-item {
  border-bottom: 1px solid var(--border)
}

.faq-item:first-child {
  border-top: 1px solid var(--border)
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  transition: color .2s
}

.faq-q:hover {
  color: var(--green)
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .25s, background .25s, transform .35s cubic-bezier(.22, 1, .36, 1)
}

.faq-item.open .faq-icon {
  border-color: var(--green);
  background: var(--green);
  transform: rotate(45deg)
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  transition: stroke .25s
}

.faq-item.open .faq-icon svg {
  stroke: #fff
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.22, 1, .36, 1), padding .35s
}

.faq-a-inner {
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8
}

.faq-item.open .faq-a {
  max-height: 300px
}

/* CONTACT */
.contact-wrap {
  background: var(--cream);
  padding: 96px 60px
}

.contact-header {
  text-align: center;
  margin-bottom: 56px
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 6vw, 72px);
  font-weight: 900;
  color: var(--green);
  margin-bottom: 18px
}

.contact-desc {
  font-size: 16px;
  color: var(--text-2);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75
}

.contact-card {
  background: var(--cream-mid);
  border-radius: 28px;
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 60px;
  border: 1px solid var(--cream-dark)
}

.cc-title {
  font-size: 19px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 36px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.fg label {
  font-size: 13px;
  color: var(--text-2)
}

.fg label em {
  color: var(--orange);
  font-style: normal
}

.fg input,
.fg textarea {
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 14.5px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  outline: none;
  resize: none;
  transition: border-color .22s, box-shadow .22s
}

.fg input:focus,
.fg textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(30, 74, 46, .09)
}

.phone-row {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .22s, box-shadow .22s
}

.phone-row:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(30, 74, 46, .09)
}

.pflag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 13px 14px;
  border-right: 1.5px solid var(--cream-dark);
  color: var(--text-2);
  cursor: pointer
}

.phone-row input {
  border: none;
  background: none;
  box-shadow: none;
  border-radius: 0;
  flex: 1
}

.phone-row input:focus {
  box-shadow: none
}

.fg textarea {
  height: 130px
}

.form-submit {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px
}

.btn-submit {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 15px 40px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(30, 74, 46, .22);
  transition: background .22s, transform .22s, box-shadow .22s
}

.btn-submit:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 74, 46, .3)
}

/* FOOTER */
footer {
  background: var(--green-dark);
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none
}

.foot-icon {
  width: 36px;
  height: 36px
}

.foot-wm {
  display: flex;
  flex-direction: column;
  gap: 1px
}

.foot-bl {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 12px;
  letter-spacing: .07em
}

.foot-be {
  color: rgba(255, 255, 255, .7);
  font-weight: 400
}

.foot-bb {
  color: var(--orange);
  font-weight: 700
}

.foot-bs {
  font-size: 9.5px;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .04em
}

.foot-links {
  display: flex;
  gap: 28px
}

.foot-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: color .2s
}

.foot-links a:hover {
  color: rgba(255, 255, 255, .85)
}

.foot-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, .35)
}

@media(max-width:960px) {
  nav {
    display: flex;
    padding: 0 24px
  }

  .nav-links {
    display: none
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 56px 24px;
    gap: 40px
  }

  .hero-visual {
    padding: 40px 24px
  }

  .strip {
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 24px
  }

  .vision {
    grid-template-columns: 1fr
  }

  .vision-photo-inner {
    min-height: 300px
  }

  .vision-content {
    padding: 56px 32px
  }

  .ess {
    padding: 0 24px
  }

  .ess-body {
    grid-template-columns: 1fr
  }

  .ess-img-col {
    justify-content: center
  }

  .ess-circle {
    width: 260px;
    height: 260px
  }

  .qs-wrap,
  .srv-wrap,
  .faq-wrap,
  .contact-wrap,
  .ob-wrap {
    padding: 72px 24px
  }

  .qs-grid,
  .srv-grid {
    grid-template-columns: 1fr
  }

  .ob-steps {
    grid-template-columns: 1fr 1fr;
    gap: 36px
  }

  .ob-line {
    display: none
  }

  .contact-card {
    padding: 36px 24px
  }

  .form-row {
    grid-template-columns: 1fr
  }

  footer {
    flex-direction: column;
    gap: 20px;
    padding: 32px 24px;
    text-align: center
  }

  .foot-links {
    flex-wrap: wrap;
    justify-content: center
  }

  .stats-row {
    flex-direction: column
  }

  .stat-item+.stat-item::before {
    left: 20%;
    top: 0;
    height: 1px;
    width: 60%
  }
}