@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Poiret+One&display=swap");

:root {
  --bg: #f7f1e8;
  --bg-soft: #efe6d8;
  --sand: #d9c7a8;

  --ocean: #58bfc0;
  --ocean-light: #83d4d2;
  --deep-ocean: #158c95;
  --deep-text: #08777a;
  --text: #171717;
  --muted: #3a3a3a;
  --line: rgba(47, 94, 91, 0.12);

  --font-title: "Poiret One", sans-serif;
  --font-body: "Montserrat", sans-serif;

  --container: 1240px;
  --transition: 0.35s ease;
  --shadow-soft: 0 20px 60px rgba(47, 94, 91, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(210, 180, 140, 0.28),
      transparent 45%
    ),
    radial-gradient(
      circle at 90% 10%,
      rgba(99, 201, 207, 0.12),
      transparent 40%
    ),
    linear-gradient(180deg, #f8f2e8 0%, #f4ede3 100%);
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

main {
  overflow-x: hidden;
}

.applications {
  overflow: hidden;
}

.applications-card {
  position: relative;
  margin-top: 60px;
}

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

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

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: 30px;
}

.header {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: none;
  border: none;
}

.header__inner {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  padding: 10px 30px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
}

.logo img {
  width: 60px;
}

.logo__text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-title);
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}

.logo__text span {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.16em;
  margin-top: 7px;
  color: var(--muted);
}

.burger {
  width: 48px;
  height: 48px;
  position: relative;
  display: none;
  background-color: transparent;
  border: 0;
}

.burger span {
  position: absolute;
  right: 0;
  height: 1px;
  background: var(--deep-ocean);
  transition: 0.35s;
}

.burger span:nth-child(1) {
  top: 16px;
  width: 22px;
}

.burger span:nth-child(2) {
  top: 24px;
  width: 16px;
}

.burger span:nth-child(3) {
  top: 32px;
  width: 28px;
}

.burger.is-active span:nth-child(1) {
  width: 24px;
  top: 24px;
  transform: rotate(45deg);
}

.burger.is-active span:nth-child(2) {
  opacity: 0;
}

.burger.is-active span:nth-child(3) {
  width: 24px;
  top: 24px;
  transform: rotate(-45deg);
}

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

.nav__link {
  position: relative;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--deep-ocean);
  transition: var(--transition);
}

.nav__link:hover::after {
  width: 100%;
}

.btn {
  appearance: none;
  -webkit-appearance: none;

  min-height: 46px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: max-content;
  min-width: 200px;
  max-width: 400px;

  background: var(--deep-ocean);
  color: #fff;

  font-family: inherit;
  font-size: 14px;
  font-weight: inherit;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  text-decoration: none;
  text-align: center;

  box-sizing: border-box;
  cursor: pointer;

  transition: var(--transition);
  box-shadow: 0 12px 32px rgba(47, 94, 91, 0.18);
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--ocean);
}

.btn--light {
  background: rgba(255, 255, 255, 0.38);
  color: var(--deep-ocean);
  border-color: rgba(47, 94, 91, 0.22);
  backdrop-filter: blur(18px);
}

.btn--mobile {
  display: none;
}

.hero {
  position: relative;

  padding: 160px 0 60px;

  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(212, 183, 138, 0.45),
      transparent 42%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(232, 210, 175, 0.55),
      transparent 45%
    ),
    linear-gradient(180deg, #f1e6d4 0%, #e8d8c0 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--deep-ocean);
  opacity: 0.55;
}

.hero__title {
  margin: 0 0 24px;
  max-width: 760px;
  font-family: var(--font-title);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #1f2928;
}

.hero__text {
  max-width: 620px;
  margin: 0 0 32px;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__media {
  position: relative;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.86 / 1;
  border-radius: 60px 20px 90px 20px;
  background: var(--sand);
  box-shadow: var(--shadow-soft);
}

.photo-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: inherit;
  pointer-events: none;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fade-up,
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease;
}

.fade-in {
  transform: scale(0.96);
}

.fade-up.is-visible,
.fade-in.is-visible {
  opacity: 1;
  transform: none;
}

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

  .nav {
    position: fixed;
    top: 86px;
    right: 24px;
    width: min(360px, calc(100vw - 48px));
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 250, 246, 0.96);
    border: 1px solid var(--line);
    box-shadow: 0 25px 60px rgba(35, 30, 26, 0.12);
    backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: var(--transition);
  }

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

  .header__cta {
    display: none;
  }

  .btn--mobile {
    display: inline-flex;
    width: 100%;
  }

  .burger {
    display: inline-flex;
  }

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

  .hero__media {
    order: -1;
    max-width: 560px;
    margin-inline: auto;
  }

  .photo-frame {
    max-width: 700px;
    margin: auto;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .header {
    width: 98%;
    left: 1%;
  }

  .container {
    padding-inline: 20px;
  }

  .header__inner {
    min-height: 78px;
    padding-left: 10px;
  }

  .logo__text {
    font-size: 18px;
  }

  .logo__text span {
    font-size: 9px;
  }

  .hero {
    padding: 120px 0 40px;
  }

  .hero__title {
    font-size: clamp(34px, 10vw, 52px);
  }

  .logo img {
    width: 60px;
  }
  .eyebrow {
    font-size: 14px;
    margin-bottom: 3px;
  }
  .eyebrow::before {
    width: 15px;
  }
}

@media (max-width: 520px) {
  .btn,
  .hero__actions {
    width: 100%;
  }

  .nav {
    right: 10px;
    width: calc(100vw - 30px);
  }
}
.applications-card {
  position: relative;
}

.applications-watermark {
  position: absolute;
  top: -50px;
  right: -12%;
  width: 359px;
  opacity: 0.25;
  z-index: 1;
}

.applications-watermark img {
  width: 100%;
}

.head,
.applications-grid,
.applications-actions {
  position: relative;
  z-index: 2;
}

.head {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.title {
  margin: 0;
  max-width: 940px;
  font-family: var(--font-title);
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #1f2928;
  text-align: center;
}

.applications-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.8fr;
}

.application-item {
  padding: 0 30px;
  border-right: 1px solid rgba(47, 94, 91, 0.09);
}

.application-item:first-child {
  padding-left: 0;
}

.application-item:last-child {
  padding-right: 0;
  border-right: none;
}

.application-number {
  display: block;
  margin-bottom: 20px;
  font-family: var(--font-title);
  font-size: 40px;
  line-height: 0.85;
  color: rgba(67, 147, 156, 0.42);
}

.application-item h3 {
  margin-bottom: 20px;
  font-family: var(--font-title);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.1;
  color: #1f2928;
}

.application-item p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.applications-actions {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

.applications-actions .btn {
  gap: 24px;
  min-width: 340px;
  justify-content: start;
  position: relative;
}

.btn-arrow {
  position: absolute;
  right: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--deep-ocean);
  font-size: 22px;
  line-height: 1;
}

@media (max-width: 900px) {
  .applications {
    overflow-x: hidden;
  }
  .applications-card {
    padding: 40px 20px 0;
    margin-top: 0;
  }

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

  .application-item {
    min-height: auto;
    padding: 30px 0;
    border-right: none;
    border-bottom: 1px solid rgba(47, 94, 91, 0.09);
  }

  .application-item:first-child {
    padding-top: 0;
  }

  .application-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .applications-actions {
    margin-top: 25px;
  }

  .applications-watermark {
    display: none;
  }
}

@media (max-width: 520px) {
  .applications {
    padding: 40px 0;
  }

  .applications-card {
    border-radius: 30px;
  }

  .head {
    margin-bottom: 30px;
  }

  .title {
    font-size: 30px;
  }

  .application-item h3 {
    font-size: 28px;
  }

  .applications-actions .btn {
    min-width: 0;
    width: 100%;
  }
  .hero-stat {
    align-items: center;
    justify-content: center;
    width: 45%;
  }
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat strong {
  font-family: var(--font-title);
  font-size: 28px;
  line-height: 1;
  color: var(--deep-ocean);
  font-weight: 400;
}

.hero-stat span {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

.method-work {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(205, 174, 132, 0.35),
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(240, 224, 200, 0.55),
      transparent 45%
    ),
    linear-gradient(180deg, #f5ede1 0%, #ede1cf 100%);
}

.method-work__head {
  max-width: 1000px;
  margin: 0 auto 30px;
  text-align: center;
}

.method-work__head .eyebrow {
  justify-content: center;
}

.method-work__subtitle {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--muted);
}

.method-work__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: stretch;
}

.method-info {
  display: grid;
  gap: 18px;
}

.method-info-card {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 22px;
  align-items: center;
  padding: 20px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 60px rgba(47, 94, 91, 0.08);
  transition: var(--transition);
}

.method-info-card:hover {
  transform: translateY(-4px);
}

.method-info-card__icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.method-info-card__icon svg {
  width: 44px;
  height: 50px;
  stroke: var(--deep-ocean);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.method-info-card h3 {
  margin-bottom: 10px;
  margin-top: 0;
  font-family: var(--font-title);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.1;
  color: #1f2928;
}

.method-info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.method-work__bottom {
  max-width: 760px;
  margin: 42px auto 0;
  text-align: center;
  color: var(--deep-ocean);
}

.method-work .title {
  margin: auto;
  max-width: 1000px;
  margin-bottom: 30px;
}

.method-chain-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;

  margin: 0 auto 30px;

  padding: 30px;
}

.method-chain-step {
  font-family: var(--font-title);
  font-size: 28px;
  line-height: 1;
  text-align: center;
  color: #1f2928;
  white-space: nowrap;
}

.method-chain-step.active {
  color: var(--deep-text);
}

.method-chain-line {
  flex: 1;
  max-width: 60px;
  height: 1px;

  background: rgba(67, 147, 156, 0.35);

  position: relative;
}

.method-chain-line::after {
  content: "";

  position: absolute;

  right: -2px;
  top: 50%;

  width: 8px;
  height: 8px;

  border-right: 1px solid rgba(67, 147, 156, 0.55);
  border-bottom: 1px solid rgba(67, 147, 156, 0.55);

  transform: translateY(-50%) rotate(-45deg);
}

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

  .method-visual {
    min-height: 620px;
  }

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

@media (max-width: 768px) {
  .method-work {
    padding: 40px 0;
  }

  .method-work__head {
    margin-bottom: 10px;
  }

  .method-visual {
    min-height: 640px;
    border-radius: 36px;
  }

  .method-chain-card {
    left: 20px;
    right: 20px;
    top: auto;
    bottom: 20px;
    width: auto;
    transform: none;
    padding: 26px;
    border-radius: 30px;
  }

  .method-chain-step {
    font-size: 25px;
  }

  .method-info {
    grid-template-columns: 1fr;
  }

  .method-info-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 32px 22px;

    border-radius: 32px;
  }

  .method-info-card__icon {
    width: 54px;
    height: 54px;
    position: absolute;
    left: 10px;
    top: 20px;
  }

  .method-info-card__icon svg {
    width: 50px;
    height: 45px;
  }

  .method-info-card h3 {
    font-size: 28px;
    padding-left: 40px;
    margin-bottom: 20px;
  }

  .method-info-card p {
    font-size: 15px;
  }

  .method-work__bottom {
    margin-top: 32px;
    text-align: center;
  }
  .method-chain-card {
    flex-direction: column;
  }
  .method-chain-line {
    width: 1px;
    height: 34px;
    margin: 10px 0;

    background: rgba(67, 147, 156, 0.35);

    position: relative;
  }

  .method-chain-line::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -2px;

    width: 10px;
    height: 10px;

    border-right: 1px solid rgba(67, 147, 156, 0.65);
    border-bottom: 1px solid rgba(67, 147, 156, 0.65);

    transform: translateX(-50%) rotate(45deg);
  }
  .method-chain-card {
    gap: 10px;
  }
}

@media (max-width: 520px) {
  .method-visual {
    min-height: 600px;
  }

  .method-chain-card {
    padding: 22px;
  }

  .method-chain-step {
    font-size: 23px;
  }

  .method-chain-line {
    height: 20px;
  }
}
.story {
  position: relative;
  padding: 60px 0;
  overflow: hidden;

  background:
    linear-gradient(rgb(77 142 142 / 82%), rgb(112 180 180)),
    url(img/method-bg.jpg);

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.story-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 42px;
}

.story-brand img {
  width: 200px;
  filter: brightness(0) invert(1);
}

.story-brand span {
  font-family: var(--font-title);
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}

.story__head {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.story__head .eyebrow {
  justify-content: center;
  color: rgba(255, 255, 255, 0.78);
}

.story__head .eyebrow::before {
  background: rgba(255, 255, 255, 0.72);
}

.story .title {
  color: #fff;
  margin: auto;
  max-width: 1000px;
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 40px;
  align-items: stretch;
}

.story-photo {
  overflow: hidden;
  border-radius: 40px;

  background: rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.2);

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card p {
  margin: 0 0 20px;
  color: #2d3333;
}

.story .photo-frame {
  aspect-ratio: unset;
  max-height: 420px;
}

.story-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .story {
    padding: 80px 0;
  }

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

  .story-photo {
    order: -1;
    min-height: 450px;
  }
}

@media (max-width: 520px) {
  .story {
    padding: 40px 0;
  }

  .story-brand img {
    width: 120px;
  }

  .story-brand span {
    font-size: 26px;
  }

  .story__head {
    margin-bottom: 38px;
  }

  .story .photo-frame {
    order: 1;
  }

  .story-card {
    order: 2;
  }
}

.services {
  padding: 60px 0;
  position: relative;
}

.services__head {
  max-width: 1000px;
  margin-bottom: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.services__nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 24px;
}

.services-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(47, 94, 91, 0.18);
  background: rgba(255, 255, 255, 0.55);
  color: var(--deep-ocean);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.services-arrow:hover {
  background: var(--deep-ocean);
  color: #fff;
}

.services-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 18px;
}

.services-slider::-webkit-scrollbar {
  height: 0;
}

.service-card {
  flex: 0 0 calc((100% - 80px) / 5);
  min-height: 260px;
  scroll-snap-align: start;
  padding: 28px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  display: flex;
  flex-direction: column;
}

.service-card span {
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;

  font-family: var(--font-title);

  font-size: 40px;
  line-height: 0.85;

  color: rgba(67, 147, 156, 0.42);
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  color: #1f2928;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 20px;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
}

.service-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.service-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 35, 35, 0.55);
  backdrop-filter: blur(10px);
}

.service-modal__content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 32px));
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  margin: 40px auto;
  padding: 30px;
  border-radius: 40px;
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(205, 174, 132, 0.35),
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(240, 224, 200, 0.55),
      transparent 45%
    ),
    linear-gradient(180deg, #f5ede1 0%, #ede1cf 100%);
  backdrop-filter: blur(24px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.16);
}

.service-modal__close {
  position: sticky;
  top: 0;
  margin-left: auto;
  display: block;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--deep-ocean);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.service-modal__body h3 {
  margin: 0 0 24px;
  font-family: var(--font-title);
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
  color: #1f2928;
}

.service-modal__body li strong {
  text-decoration: underline;
}

.service-modal__body p {
  color: var(--muted);
}

@media (max-width: 1100px) {
  .service-card {
    flex-basis: calc((100% - 40px) / 3);
  }
}

@media (max-width: 768px) {
  .services {
    padding: 40px 0;
  }

  .service-card {
    flex-basis: 100%;
    min-height: 330px;
  }

  .services__nav {
    justify-content: flex-start;
  }

  .service-modal__content {
    padding: 28px;
    border-radius: 28px;
  }

  .service-modal__body h3 {
    font-size: 36px;
  }
}

.service-card {
  flex: 30%;
  scroll-snap-align: start;
  padding: 20px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 60px rgba(47, 94, 91, 0.08);
}

.services__nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  margin-bottom: 0;
}

.services-arrow {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(47, 94, 91, 0.22);
  background: var(--deep-ocean);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.services-arrow:hover {
  transform: translateY(-2px);
  background: var(--ocean);
}

.service-more {
  appearance: none;
  -webkit-appearance: none;
  min-height: 46px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-width: 200px;
  max-width: 400px;
  background: var(--deep-ocean);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: inherit;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 12px 32px rgba(47, 94, 91, 0.18);
}

.service-more:hover {
  transform: translateY(-2px);
  background: var(--ocean);
}

@media (max-width: 1100px) {
  .service-card {
    flex-basis: calc((100% - 20px) / 2);
  }
}

@media (max-width: 768px) {
  .service-card {
    flex-basis: 85%;
    min-height: 340px;
    padding: 32px 24px;
    border-radius: 32px;
  }

  .services__nav {
    justify-content: center;
    margin-top: 22px;
  }

  .service-card span {
    font-size: 36px;
    margin-bottom: 10px;
  }
}

.discover {
  padding: 90px 0;
  position: relative;
}

.discover__head {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 80px;
}

.discover__head .eyebrow {
  justify-content: center;
}

.discover .title {
  margin: 0 auto 24px;
}

.discover__intro {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
}

.discover-grid {
  display: grid;
  grid-template-columns: 1fr 420px 1fr;
  gap: 50px;
  align-items: center;
}

.discover-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.discover-item {
  padding: 28px;

  border-radius: 40px;

  background: rgba(255, 255, 255, 0.55);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.5);

  transition: 0.35s;
}

.discover-item:hover {
  transform: translateY(-5px);
}

.discover-item span {
  display: block;

  margin-bottom: 14px;

  font-family: var(--font-title);

  font-size: 64px;

  line-height: 0.8;

  color: rgba(67, 147, 156, 0.35);
}

.discover-item h3 {
  margin: 0 0 12px;

  font-family: var(--font-title);

  font-size: 30px;

  font-weight: 400;
}

.discover-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.discover-center {
  text-align: center;
  position: relative;
}

.discover-center::before {
  content: "";

  position: absolute;

  inset: 50% auto auto 50%;

  width: 340px;
  height: 340px;

  border-radius: 50%;

  background: rgba(67, 147, 156, 0.12);

  filter: blur(60px);

  transform: translate(-50%, -50%);
}

.discover-center .photo-frame {
  margin: 0 auto 30px;
}

.discover-quote {
  position: relative;
  z-index: 2;

  font-family: var(--font-title);

  font-size: 34px;

  line-height: 1.15;

  color: var(--deep-text);
}
@media (max-width: 768px) {
  .discover {
    padding: 40px 0;
  }

  .discover__head {
    margin-bottom: 40px;
  }

  .discover-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .discover-center {
    order: -1;
    margin-bottom: 16px;
  }

  .discover-center::before {
    width: 180px;
    height: 180px;
    filter: blur(40px);
  }

  .discover-center img {
    margin-bottom: 20px;
  }

  .discover-quote {
    font-size: 24px;
    line-height: 1.2;
  }

  .discover-column {
    gap: 16px;
    width: 100%;
  }

  .discover-item {
    padding: 22px;
    border-radius: 32px;

    display: flex;
    flex-direction: column;
  }

  .discover-item span {
    font-size: 56px;
    margin-bottom: 10px;
  }

  .discover-item h3 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .discover-item p {
    font-size: 15px;
    line-height: 1.55;
  }
}

.discover-toggle {
  display: none;
}

.discover-hidden {
  display: contents;
}

.discover-toggle {
  display: none;
}
@media (max-width: 768px) {
  .discover-hidden {
    display: none;
  }

  .discover-hidden.is-open {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 14px;
  }

  .discover-toggle {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 52px;

    margin-top: 14px;

    border: none;
    border-radius: 999px;

    background: var(--deep-ocean);
    color: #fff;

    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    cursor: pointer;
  }
}
.business {
  position: relative;
  overflow: hidden;
  padding: 60px 0;

  background:
    linear-gradient(rgba(20, 35, 35, 0.72), rgba(20, 35, 35, 0.72)),
    url("img/business-bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.business::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -120px;
  width: 520px;
  height: 520px;
  transform: translateY(-50%);
  background: url("img/logo.png") center/contain no-repeat;
  opacity: 0.04;
  filter: brightness(0) invert(1);
  pointer-events: none;
}

.business .container {
  position: relative;
  z-index: 2;
}

.business-brand {
  margin-bottom: 42px;
}

.business-brand img {
  width: 160px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.business__head {
  max-width: 950px;
  margin: 0 auto 60px;
  text-align: center;
}

.business__head .eyebrow {
  justify-content: center;
  color: rgba(255, 255, 255, 0.78);
}

.business__head .eyebrow::before {
  background: rgba(255, 255, 255, 0.72);
}

.business .title {
  color: #fff;
  margin: 0 auto 24px;
  max-width: 1000px;
}

.business__text {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
}

.business-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.business-card {
  padding: 30px;
  border-radius: 40px;

  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 60px rgba(47, 94, 91, 0.08);

  display: flex;
  flex-direction: column;
}

.business-card h3 {
  margin-bottom: 20px;
  font-family: var(--font-title);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.1;
  color: #1f2928;
  margin-top: 0;
}

.business-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.business__actions {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.business__nav {
  display: none;
}

@media (max-width: 768px) {
  .business {
    padding: 40px 0;
  }

  .business-brand img {
    width: 120px;
  }

  .business__head {
    margin-bottom: 38px;
  }

  .business-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 18px;
  }

  .business-slider::-webkit-scrollbar {
    height: 0;
  }

  .business-card {
    flex: 0 0 85%;
    min-height: 280px;
    padding: 20px;
    border-radius: 30px;
    scroll-snap-align: start;
  }

  .business-card h3 {
    font-size: 32px;
  }

  .business__nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
  }

  .business__actions {
    margin-top: 28px;
  }

  .business__actions .btn {
    width: 100%;
  }
}

.btn-blur {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
}

.story__actions {
  display: flex;
  margin-top: 40px;
}

.about-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
}

.about-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.about-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 35, 35, 0.62);
  backdrop-filter: blur(10px);
}

.about-modal__content {
  position: relative;
  z-index: 200;
  width: min(820px, calc(100% - 32px));
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  margin: 120px auto 40px;
  padding: 30px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.18);
}

.about-modal__close {
  position: sticky;
  top: 0;
  margin-left: auto;
  display: block;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--deep-ocean);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.about-modal__body h3 {
  margin: 0 0 26px;
  font-family: var(--font-title);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  color: #1f2928;
}

.about-modal__body p {
  margin: 0 0 18px;
  color: var(--muted);
}

@media (max-width: 520px) {
  .about-modal__content {
    padding: 28px;
    border-radius: 28px;
  }

  .about-modal__body h3 {
    font-size: 36px;
  }
}

.faq {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background:
    linear-gradient(rgb(77 142 142 / 82%), rgb(112 180 180)),
    url(img/method-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.faq .eyebrow,
.faq .title {
  color: #fff;
}

.faq .eyebrow::before {
  background: #fff;
}

.faq__head {
  max-width: 1000px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid rgba(229, 229, 229, 0.48);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-question {
  width: 100%;
  padding: 30px 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  text-align: left;
  color: #fff;
}

.faq-question span {
  font-family: var(--font-title);
  font-size: 34px;
  line-height: 1.05;
  color: #fff;
}

.faq-question i {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.faq-question i::before,
.faq-question i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  transition: var(--transition);
}

.faq-question i::before {
  width: 26px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.faq-question i::after {
  width: 1px;
  height: 26px;
  transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-question i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.faq-answer p {
  max-width: 760px;
  margin: 0 0 30px;
  color: var(--muted);
}

@media (max-width: 768px) {
  .faq {
    padding: 40px 0 40px;
  }

  .faq__head {
    margin-bottom: 30px;
  }

  .faq-question {
    padding: 15px 0;
  }

  .faq-question span {
    font-size: 24px;
  }
}

.service-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 20px;
  padding: 4px 5px;
  border-radius: 999px;
  background: rgba(67, 147, 156, 0.12);
  border: 1px solid rgba(67, 147, 156, 0.18);
  color: var(--deep-ocean);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: absolute;
  top: 7px;
  right: 10px;
}

.ticker {
  position: relative;

  overflow: hidden;

  padding: 24px 0;

  background: var(--deep-ocean);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 34px;

  width: max-content;

  animation: tickerMove 35s linear infinite;
}

.ticker-track span {
  flex-shrink: 0;

  color: #fff;

  font-size: 14px;
  font-weight: 500;

  letter-spacing: 0.22em;

  text-transform: uppercase;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.speed-reading {
  padding: 60px 0;
  background: linear-gradient(180deg, #f8f2e8 0%, #f4ede3 100%);
}

.speed-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  padding: 30px;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 70px rgba(47, 94, 91, 0.12);
  margin-top: 60px;
}

.speed-card .title {
  text-align: left;
}
.speed-text {
  max-width: 650px;
  margin: 24px 0 34px;
  color: var(--muted);
}

.speed-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.speed-price {
  min-height: 280px;
  border-radius: 42px;
  background: linear-gradient(160deg, var(--deep-ocean), var(--ocean));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.speed-price span {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.speed-price strong {
  font-family: var(--font-title);
  font-size: 110px;
  font-weight: 400;
  line-height: 1;
}

.speed-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.speed-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.speed-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 30, 0.45);
  backdrop-filter: blur(8px);
}

.speed-modal__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  max-height: 86vh;
  overflow-y: auto;
  margin: 7vh auto;
  padding: 46px;
  border-radius: 36px;
  background: #fffaf4;
}

.speed-modal__close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: 0;
  background: none;
  font-size: 36px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .speed-card {
    grid-template-columns: 1fr;
    padding: 32px 22px;
    border-radius: 32px;
  }

  .speed-price {
    min-height: 220px;
  }

  .speed-reading {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .method-info {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
  }

  .method-info::-webkit-scrollbar {
    height: 0;
  }

  .method-info-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    box-shadow: none;
  }

  .method-info__nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 8px;
  }
}

@media (min-width: 769px) {
  .method-info__nav {
    display: none;
  }
}

.photo-guide {
  padding: 60px 0;
  position: relative;
}

.photo-guide__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.photo-guide__card > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.photo-guide__text {
  max-width: 620px;
  margin: 24px 0 30px;
  color: var(--muted);
  text-align: center;
}

.photo-guide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.photo-guide__actions .service-more {
  width: auto;
  margin-top: 0;
}

.photo-guide__visual {
  display: block;
  font-family: var(--font-title);
  font-size: 70px;
  line-height: 1;
  color: var(--deep-ocean);
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.photo-guide__visual span {
  font-family: var(--font-title);
  font-size: 130px;
  line-height: 0.9;
}

.photo-guide__visual p {
  margin: 16px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
}

@media (max-width: 768px) {
  .photo-guide {
    padding: 0;
  }

  .photo-guide__card {
    padding: 40px 20px;
  }
  .photo-guide__text {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .photo-guide__visual {
    min-height: 220px;
  }

  .photo-guide__actions,
  .photo-guide__actions .service-more,
  .photo-guide__actions .btn {
    width: 100%;
  }
}

.footer {
  padding: 15px;

  border-top: 1px solid rgba(47, 94, 91, 0.1);

  background: rgba(255, 255, 255, 0.25);

  backdrop-filter: blur(12px);
}

.footer__logo img {
  width: 70px;
  opacity: 0.8;
}

.footer__text {
  margin: 0;

  font-size: 13px;
  text-align: center;
  letter-spacing: 0.08em;

  text-transform: uppercase;

  color: var(--muted);
}

@media (max-width: 768px) {
  .footer {
    padding-bottom: 15px;
  }
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__logo img {
    width: 55px;
  }

  .footer__text {
    font-size: 12px;
  }
}

.story-card {
  color: #fff;
}

.story-card p {
  color: rgba(255, 255, 255, 0.9);
}

.story-lead {
  margin-bottom: 30px;

  font-family: var(--font-title);

  font-size: clamp(25px, 3vw, 50px);

  line-height: 1;

  color: #fff !important;
}

.story-lead span {
  display: block;
  color: #fdfdfd;
}

.story-question {
  margin: 24px 0;

  font-size: 26px;

  font-weight: 500;

  line-height: 1.3;
}

.story-quote {
  margin: 32px 0;

  font-family: var(--font-title);

  font-size: 42px;

  line-height: 1;
}

.story-card strong {
  color: #fff;
  font-weight: 600;
}

.study {
  padding: 60px 0;
  position: relative;
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(212, 183, 138, 0.45),
      transparent 42%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(232, 210, 175, 0.55),
      transparent 45%
    ),
    linear-gradient(180deg, #f1e6d4 0%, #e8d8c0 100%);
}

.study__head {
  max-width: 1000px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.study__text {
  max-width: 900px;
  margin-top: 24px;
  color: var(--muted);
  text-align: center;
}

.study-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.study-card {
  padding: 30px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.study-card span {
  display: block;
  margin-bottom: 20px;
  font-family: var(--font-title);
  font-size: 40px;
  line-height: 0.85;
  color: rgba(67, 147, 156, 0.42);
}

.study-card h3 {
  margin-bottom: 20px;
  margin-top: 0;
  font-family: var(--font-title);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.1;
  color: #1f2928;
}

.study-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
}

.study__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .study {
    padding: 40px 0;
  }

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

  .study-card {
    padding: 20px;
    border-radius: 30px;
  }

  .study__actions {
    flex-direction: column;
  }

  .study__actions .service-more,
  .study__actions .btn {
    width: 100%;
    max-width: none;
  }
  .service-more {
    max-width: 100%;
    min-width: 100%;
  }
}

.final-cta {
  padding: 90px 0;
}

.final-cta__card {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 50px;

  align-items: center;

  padding: 50px;

  border-radius: 50px;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.75),
    rgba(255, 255, 255, 0.45)
  );

  backdrop-filter: blur(24px);

  border: 1px solid rgba(255, 255, 255, 0.65);

  box-shadow: 0 20px 60px rgba(47, 94, 91, 0.08);

  overflow: hidden;
}

.final-cta__content .title {
  max-width: 650px;
  margin-bottom: 24px;
  text-align: left;
}

.final-cta__text {
  max-width: 560px;
  margin-bottom: 36px;
  color: var(--muted);
}

.final-cta__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.final-cta__photo {
  overflow: hidden;

  border-radius: 40px 20px 60px 20px;

  aspect-ratio: 0.8 / 1;

  box-shadow: var(--shadow-soft);
}

.final-cta__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .final-cta {
    padding: 40px 0 0;
  }

  .final-cta__card {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 30px;
  }

  .final-cta__photo {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }

  .final-cta__actions {
    flex-direction: column;
  }

  .final-cta__actions .btn {
    width: 100%;
  }

  .photo-frame {
    border-radius: 60px 20px 60px 20px;
  }
}

.faq-hidden {
  display: none;
}

.faq-hidden.is-open {
  display: block;
}

.faq-toggle {
  margin: 30px auto 0;
}

.link {
  font-weight: bold;
  text-decoration: underline;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Desktop */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.services-grid .service-more {
  min-width: auto;
  padding: 10px 10px;
  min-height: auto;
}

.services-slider {
  display: none;
}

@media (max-width: 1040px) {
  .services-grid {
    flex-wrap: wrap;
  }
}

/* Mobile */
@media (max-width: 1024px) {
  .services-grid {
    display: none;
  }

  .services-slider {
    display: block;
  }
  .services__nav {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .services-slider-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transform: none !important;
  }

  .services-slider-btn,
  .services__nav {
    display: none;
  }
}

.study-grid--two {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.study-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
}

@media (max-width: 768px) {
  .study-grid--two {
    grid-template-columns: 1fr;
  }

  .study-card__actions,
  .study-card__actions .btn,
  .study-card__actions .service-more {
    width: 100%;
  }
}

.speed-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  margin-top: 50px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 60px rgba(47, 94, 91, 0.08);
}

.speed-bar__left h2 {
  margin: 6px 0 0;
  font-family: var(--font-title);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

.speed-bar__label {
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--deep-ocean);
}

.speed-bar__price {
  font-size: 18px;
  color: var(--muted);
}

.speed-bar__price strong {
  display: block;
  font-family: var(--font-title);
  font-size: 70px;
  line-height: 1;
  color: var(--deep-ocean);
  font-weight: 400;
}

.speed-bar .service-more {
  margin-top: 0;
}

@media (max-width: 768px) {
  .speed-bar {
    flex-direction: column;
    text-align: center;
    margin-top: 30px;
    gap: 15px;
  }

  .speed-bar .service-more {
    width: 100%;
  }

  .speed-bar__left h2 {
    font-size: 36px;
  }

  .speed-bar__price strong {
    font-size: 35px;
  }
  .speed-bar__label {
    font-size: 14px;
  }
}

.contact-price {
  padding: 60px 0;
}

.contact-price__box {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 30px;
  align-items: center;
}

.contact-price__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-price__links a {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--deep-ocean);
  border: 1px solid rgba(47, 94, 91, 0.16);
  transition: var(--transition);
  min-width: 200px;
}

.contact-price__links a:hover {
  transform: translateY(-2px);
  background: var(--ocean);
  color: #fff;
}

.contact-price__form {
  padding: 30px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-price__form h3 {
  margin: 0 0 8px;
  font-family: var(--font-title);
  font-size: 34px;
  font-weight: 400;
}

.contact-price__form input {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(47, 94, 91, 0.16);
  background: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
  outline: none;
}

.contact-price__form .btn {
  width: 100%;
  max-width: none;
}

.story__grid--compact {
  grid-template-columns: 1fr 440px;
}

.story__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.story__actions .btn,
.story__actions .service-more {
  width: max-content;
}

@media (max-width: 900px) {
  .story__grid--compact {
    grid-template-columns: 1fr;
  }

  .story__actions,
  .story__actions .btn {
    width: 100%;
  }
  .contact-price__box {
    grid-template-columns: 1fr;
  }
  .contact-price__info {
    text-align: center;
  }
  .reviews__head {
    margin-bottom: 30px;
  }
  .study__text {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .study__head {
    margin-bottom: 10px;
  }
  .contact-price__links {
    justify-content: center;
  }
  .contact-price {
    padding: 0 0 30px;
  }
}
.reviews {
  padding: 40px 0;
}

.reviews__head {
  text-align: center;
  margin-bottom: 44px;
}

.reviews-slider {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 30px 24px;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}

.review-phone {
  position: relative;
  flex: 0 0 270px;
  width: 320px;
  scroll-snap-align: center;
  background: rgba(255, 255, 255, 0.56);
  border-radius: 50px;
}

.review-phone__frame {
  position: relative;
  z-index: 2;
  width: 100%;
  pointer-events: none;
}

.review-phone__text {
  position: absolute;
  z-index: 1;
  top: 8%;
  left: 8%;
  right: 8%;
  bottom: 8%;
  padding: 15px 10px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
}

.review-phone__text p {
  margin: 0;
  min-height: 170px;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.63;
  font-style: italic;
  margin-bottom: 14px;
}

.review-phone__text p span {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 10px;
}

.review-more {
  min-width: 0;
  width: 100%;
  max-width: 220px;
  min-height: 32px;
  padding: 0 18px;
  font-size: 11px;
  letter-spacing: 0.08em;
  margin-top: 0;
}

.reviews__nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.reviews .title {
  text-align: center;
  margin: auto;
}

.contact-price__info .title,
.contact-price__info .study__text {
  text-align: left;
}

@media (max-width: 768px) {
  .review-phone {
    flex-basis: 250px;
    width: 280px;
  }

  .review-more {
    font-size: 10px;
    padding: 0 14px;
    width: 100%;
  }
  .contact-price__form h3 {
    font-size: 25px;
    text-align: center;
  }
  .contact-price__form {
    padding: 20px;
    border-radius: 30px;
  }
  .reviews__head {
    margin-bottom: 20px;
  }
  .reviews-slider {
    padding-bottom: 0;
  }
}

.services-slider {
  display: none;
}

@media (max-width: 768px) {
  .contact-price__info .title,
  .contact-price__info .study__text {
    text-align: center;
  }
  .reviews-slider {
    justify-content: flex-start;
  }
  .hero__content {
    text-align: center;
  }
  .hero__actions,
  .story__actions {
    justify-content: center;
  }
  .story-card {
    text-align: center;
  }
}

@media (max-width: 1048px) {
  .services-grid {
    display: none;
  }
  .method-work .title {
    margin-bottom: 10px;
  }
  .services-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 0;
  }

  .services-slider::-webkit-scrollbar {
    display: none;
  }

  .services-slider .service-card {
    flex: 0 0 85%;
    min-width: 85%;
    scroll-snap-align: start;
    box-shadow: none;
  }

  .services__nav {
    display: flex;
  }
  .services__head {
    margin-bottom: 30px;
  }
}

.back {
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(212, 183, 138, 0.45),
      transparent 42%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(232, 210, 175, 0.55),
      transparent 45%
    ),
    linear-gradient(180deg, #f1e6d4 0%, #e8d8c0 100%);
}

.contact-price__bottom {
  margin-top: 20px;
}

.contact-price__bottom p {
  margin-bottom: 15px;
}

.contact-price__bottom .btn {
  width: 100%;
}

.review-language {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  margin-bottom: 0;
  padding: 5px 10px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(47, 94, 91, 0.12);

  color: var(--deep-ocean);

  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
