:root {
  --bg: #f6edda;
  --text: #15120f;
  --muted: #6b6256;
  --yellow: #f0bf2e;
  --red: #d8372a;
  --green: #1f7f57;
  --white: #fffaf0;
  --border: rgba(21, 18, 15, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

.header {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 64px);
  max-width: 1280px;
  height: 72px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;

  background: #fff7e8;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #171a22;
  line-height: 1;
}

.logo-main {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
}

.logo-sub {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(23, 26, 34, 0.55);
}

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

.nav a {
  position: relative;
  text-decoration: none;
  color: rgba(23, 26, 34, 0.72);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav a:hover {
  color: #171a22;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: #c93b3b;
  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-btn {
  text-decoration: none;
  color: #fff;
  background: #171a22;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25 ease;
}

.header-btn:hover {
  transform: translateY(-2px);
  background: #c93b3b;
}

.hero {
  position: relative;
  overflow: hidden;
  width: min(100% - 32px, 1440px);
  min-height: 680px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 86px);
  border: 1px solid var(--border);
  border-radius: 38px;
  background:
    radial-gradient(circle at 82% 18%, rgba(240, 191, 46, 0.6), transparent 26%),
    radial-gradient(circle at 18% 82%, rgba(216, 55, 42, 0.22), transparent 30%),
    linear-gradient(135deg, #fff8e8, #f0dfbd);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21, 18, 15, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 18, 15, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow,
.section__label {
  margin: 0 0 18px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 800;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(44px, 5.2vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.hero__text {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.45;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}


.decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.decor--bee-img {
  right: 11%;
  top: 11%;
  width: 170px;
  max-width: 170px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.18));
}

.decor--bee {
  right: 15%;
  top: 12%;
  font-size: 110px;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.18));
}

.decor--beads {
  right: 4%;
  bottom: 15%;
  width: 430px;
  height: 130px;
  border: 5px solid rgba(21, 18, 15, 0.78);
  border-radius: 999px;
  transform: rotate(-18deg);
}

.decor--building {
  right: 22%;
  bottom: 8%;
  width: 210px;
  height: 430px;
  border: 2px solid rgba(21, 18, 15, 0.18);
  background:
    linear-gradient(90deg, transparent 32%, rgba(21, 18, 15, 0.12) 33%, transparent 34%),
    linear-gradient(rgba(21, 18, 15, 0.1) 1px, transparent 1px);
  background-size: 48px 100%, 100% 42px;
  transform: rotate(4deg);
}

.section {
  width: min(100% - 32px, 1240px);
  margin: 120px auto;
}

.section h2,
.contact h2 {
  max-width: 920px;
  margin: 0 0 36px;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

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

.card,
.case,
.step {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.42);
  padding: 28px;
}

.card h3,
.case h3,
.step h3 {
  margin: 0 0 14px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.card p,
.case p,
.step p,
.contact p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 17px;
}

.case {
  margin-bottom: 18px;
}

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

.step span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--red);
  font-weight: 900;
}

.contact {
  position: relative;
  width: min(100% - 32px, 1240px);
  margin: 40px auto 50px;
  padding: 64px;
  border-radius: 38px;
  border: 1px solid var(--border);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(240, 191, 46, 0.52), transparent 28%),
    radial-gradient(circle at 12% 86%, rgba(201, 59, 59, 0.10), transparent 28%),
    linear-gradient(135deg, #fff8e8, #efdcb8);
}

.contact::before {
  content: "GROOXO";
  position: absolute;
  right: -35px;
  top: 28px;
  color: rgba(23, 26, 34, 0.035);
  font-size: clamp(90px, 13vw, 180px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -8px;
  pointer-events: none;
}

.contact::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: 50px;
  width: 300px;
  height: 82px;
  border-radius: 999px;
  background: rgba(201, 59, 59, 0.10);
  transform: rotate(-14deg);
  filter: blur(3px);
  pointer-events: none;
}

.contact__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.contact h2 {
  max-width: 760px;
  margin: 0 0 26px;
  color: #171a22;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.92;
  letter-spacing: -5px;
  font-weight: 900;
}

.contact__text {
  max-width: 680px;
  margin: 0;
  color: rgba(23, 26, 34, 0.66);
  font-size: 20px;
  line-height: 1.5;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.contact__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.contact__btn--dark {
  color: #fff;
  background: #171a22;
  box-shadow: 0 16px 38px rgba(23, 26, 34, 0.16);
}

.contact__btn--dark:hover {
  transform: translateY(-3px);
  background: #c93b3b;
  box-shadow: 0 22px 50px rgba(201, 59, 59, 0.22);
}

.contact__btn--light {
  color: #171a22;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(23, 26, 34, 0.10);
}

.contact__btn--light:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.72);
}

.contact__note {
  position: absolute;
  right: 58px;
  bottom: 52px;
  z-index: 2;
  max-width: 310px;
  padding: 20px 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(23, 26, 34, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.contact__note span {
  display: block;
  margin-bottom: 10px;
  color: rgba(201, 59, 59, 0.9);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
}

.contact__note p {
  margin: 0;
  color: rgba(23, 26, 34, 0.62);
  font-size: 14px;
  line-height: 1.4;
}

/* ===== GROOXO HERO COLLAGE ===== */

.hero {
  position: relative;
  overflow: hidden;
  width: min(100% - 32px, 1440px);
  min-height: 760px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 86px);
  border: 1px solid var(--border);
  border-radius: 38px;
  background:
    linear-gradient(
      90deg,
      rgba(246, 237, 218, 0.92) 0%,
      rgba(246, 237, 218, 0.72) 34%,
      rgba(246, 237, 218, 0.28) 68%,
      rgba(246, 237, 218, 0.10) 100%
    ),
    url("assets/images/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 10;
  max-width: none;
  padding: 0;
}

.eyebrow {
  position: absolute;
  left: 510px;
  top: 300px;
  margin: 0;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 900;
  z-index: 12;
}

.hero__logo {
  position: absolute;
  left: 390px;
  top: 320px;
  margin: 0;
  font-size: clamp(70px, 11vw, 150px);
  line-height: 0.78;
  letter-spacing: -0.1em;
  font-weight: 950;
  z-index: 11;

  background:
    linear-gradient(
      115deg,
      #1d1b18 0%,
      #74706a 12%,
      #f8f0d8 24%,
      #24211d 38%,
      #c7bda6 54%,
      #ffffff 65%,
      #3a3732 78%,
      #0f0e0d 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  text-shadow:
    0 2px 0px rgba(255, 255, 255, 0.45),
    0 14px 24px rgba(0, 0, 0, 0.28),
    0 28px 44px rgba(0, 0, 0, 0.12);
}

.hero__subtitle {
  position: absolute;
  left: 480px;
  top: 455px;
  margin: 0;
  color: #c8322a;
  font-size: clamp(20px, 2.2vw, 34px);
  letter-spacing: 0.14em;
  font-weight: 900;
  z-index: 12;
}

.hero__text {
  position: absolute;
  text-align: center;
  left: 480px;
  top: 500px;
  max-width: 500px;
  margin: 0;
  font-size: 30px;
  line-height: 1.45;
  z-index: 99;

    background:
    linear-gradient(
      115deg,
      #ff0000 0%,
      #c40000 12%,
      #666665 24%,
      #24211d 38%,
      #3b3a36 54%,
      #3e3d3d 65%,
      #850000 78%,
      #740000 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

    text-shadow:
    0 2px 0px rgba(255, 255, 255, 0.45),
    0 14px 24px rgba(184, 0, 0, 0.28),
    0 28px 44px rgba(255, 0, 0, 0.12);
}



/* Все декоративные картинки */
.decor {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

/* Левая цепь */
.decor--chain-left {
  z-index: 7;
  left: -95px;
  top: 30px;
  width: clamp(460px, 36vw, 620px);
  opacity: 1;
  transform: rotate(-12deg);
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.24));
}

/* Правая цепь */
.decor--chain-right {
  z-index: 2;
  right: -200px;
  top: -22px;
  width: clamp(420px, 44vw, 790px);
  transform: rotate(30deg);
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.24));
}

/* Нижняя цепь */
.decor--chain-bottom {
  z-index: 7;
  left: 55%;
  bottom: -200px;
  width: clamp(660px, 66vw, 1060px);
  opacity: 0.95;
  transform: translateX(-20%) rotate(-200deg);
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.25));
}

/* Карточка GROOXO Studio */
.decor--brand-card {
  z-index: 9;
  left: 160px;
  top: 30px;
  width: clamp(270px, 26vw, 460px);
  transform: rotate(-10deg);
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.18));
}

/* Главная пчела */
.decor--bee-main {
  z-index: 4;
  left: 50%;
  top: 90px;
  width: clamp(240px, 25vw, 420px);
  transform: translateX(-50%);
  height: auto;
  filter: drop-shadow(0 22px 26px rgba(0, 0, 0, 0.26));
}

/* Маленькая пчела */
.decor--bee-small {
  z-index: 4;
  left: 80%;
  top: 650px;
  width: clamp(120px, 13vw, 180px);
  transform: rotate(0deg);
  filter: drop-shadow(0 22px 26px rgba(0, 0, 0, 0.26));
}

/* Скетч */
.decor--sketch {
  z-index: 4;
  left: 1%;
  top: 380px;
  width: clamp(160px, 17vw, 260px);
  transform: rotate(0deg);
  filter: drop-shadow(0 22px 26px rgba(0, 0, 0, 0.26));
}

/* Надпись Digital Coach */
.decor--text-digital-coach {
  z-index: 4;
  left: 57%;
  top: 70px;
  width: clamp(180px, 18vw, 290px);
  transform: rotate(-5deg);
}

/* Надпись Create the future */
.decor--text-create-future {
  z-index: 4;
  right: 900px;
  bottom: 10px;
  width: clamp(150px, 15vw, 240px);
  transform: rotate(20deg);
}

/* Надпись Create Inspire Digital Repeat */
.decor--text-create-inspire {
  z-index: 4;
  right: 1050px;
  top: 260px;
  width: clamp(96px, 9vw, 150px);
}

.services {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  background: 
   radial-gradient(circle at 85% 18%, rgba(201, 59, 59,0.10), transparent 28%),
   radial-gradient(circle at 8% 78%, rgba(218, 165, 32,0.12), transparent 26%),
   #f4f1ea;
}

.services::before {
  content: "GROOXO";
  position: absolute;
  right: 80px;
  top: 40px;
  z-index: 0;
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 900;
  letter-spacing: -12px;
  color: rgba(23, 26, 34, 0.035);
  line-height: 1;
  pointer-events: none;
}

.services::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: 80px;
  z-index: 0;
  width: 340px;
  height: 90px;
  background: rgba(201, 59, 59, 0.12);
  border-radius: 999px;
  transform: rotate(-12deg);
  filter: blur(2px);
  pointer-events: none;
}

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

.services__grid::before{
  content: "";
  position: absolute;
  inset: -40px;
  background-image: radial-gradient(rgba(23, 26, 34, 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.08;
  pointer-events: none;
}

.container {
  width: calc(100% - 96px);
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  margin: 0 0 26px;
  color: #b33a3a;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.services__title {
  max-width: 980px;
  margin: 0;
  color: #171a22;
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.95;
  letter-spacing: -4px;
  font-weight: 900;
}

.services__lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(23, 26, 34, 0.65);
  font-size: 21px;
  line-height: 1.45;
}

.services__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 58px;
}

.service-card {
  position: relative;
  min-height: 190px;
  padding: 34px 34px 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(23, 26, 34, 0.09);
  box-shadow: 0 22px 60px rgba(23, 26, 34, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 32px;
  width: 5px;
  height: 72px;
  background: #c93b3b;
  border-radius: 0 999px 999px 0;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 59, 59, 0.3);
  box-shadow: 0 28px 80px rgba(23, 26, 34, 0.12);
}

.service-card__num {
  display: block;
  margin-bottom: 24px;
  color: rgba(201, 59, 59, 0.8);
  font-size: 64px;
  line-height: 0.85;
  font-weight: 900;
  letter-spacing: -4px;
}

.service-card h3 {
  margin: 0 0 14px;
  color: #171a22;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1px;
}

.service-card p {
  margin: 0;
  max-width: 320px;
  color: rgba(23, 26, 34, 0.62);
  font-size: 17px;
  line-height: 1.45;
}

.cases {
  position: relative;
  padding: 115px 0;
  overflow: hidden;
}

.cases::before {
  content: "WORKS";
  position: absolute;
  right: 150px;
  top: 80px;
  z-index: 0;
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 900;
  letter-spacing: -12px;
  color: rgba(23, 26, 34, 0.035);
  line-height: 1;
  pointer-events: none;
}

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

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

.cases__title {
  max-width: 980px;
  margin: 0 auto;
  color: #171a22;
  font-size: clamp(48px, 6.6vw, 78px);
  line-height: 0.95;
  letter-spacing: -4px;
  font-weight: 900;
}

.cases__list {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.case-row {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 34px;
  align-items: stretch;
  min-height: 190px;
  padding: 34px 38px;
  border-radius: 34px;
  border: 1px solid rgba(23, 26, 34, 0.1);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.68),
      rgba(255, 255, 255, 0.32)
    );
  box-shadow: 0 22px 60px rgba(23, 26, 34, 0.055);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.case-row:nth-child(even) {
  margin-left: 90px;
}

.case-row:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 59, 59, 0.28);
  box-shadow: 0 30px 90px rgba(23, 26, 34, 0.12);
}

.case-row::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 50%;
  width: 220px;
  height: 70px;
  background: rgba(201, 59, 59, 0.08);
  border-radius: 999px;
  transform: translateY(-50%) rotate(-14deg);
  pointer-events: none;
}

.case-row__num {
  color: rgba(201, 59, 59, 0.25);
  font-size: 82px;
  line-height: 0.85;
  font-weight: 900;
  letter-spacing: -6px;
}

.case-row__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.case-row__tag {
  display: inline-flex;
  margin-bottom: 22px;
  color: #b33a3a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.case-row h3 {
  margin: 0 0 14px;
  color: #171a22;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -2px;
}

.case-row p {
  margin: 0;
  max-width: 690px;
  color: rgba(23, 26, 34, 0.64);
  font-size: 17px;
  line-height: 1.5;
}

.cases .section__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 26px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(201, 59, 59, 0.09);
  color: #b33a3a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.cases__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 15px 24px;
  border-radius: 999px;
  background: #171a22;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(23, 26, 34, 0.16);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.cases__btn:hover {
  transform: translateY(-3px);
  background: #c93b3b;
  box-shadow: 0 22px 50px rgba(201, 59, 59, 0.22);
}
.cases__btn span {
  margin-left: 10px;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.cases__btn:hover span {
  transform: translateX(4px);
}

/* =========================================
   PROCESS
   Блок "Как работаем"
========================================= */

.process {
  position: relative;
  padding: 90px 0 110px;
  overflow: hidden;
}

/* Лёгкий тёплый фон слева, не огромная хрень на весь экран */
.process::before {
  content: "";
  position: absolute;
  left: -160px;
  top: 180px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(218, 165, 32, 0.10);
  filter: blur(24px);
  pointer-events: none;
}

/* Красный декоративный мазок справа, аккуратный */
.process::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: 160px;
  width: 320px;
  height: 90px;
  border-radius: 999px;
  background: rgba(201, 59, 59, 0.08);
  transform: rotate(14deg);
  filter: blur(3px);
  pointer-events: none;
}

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

/* Верх блока: метка, заголовок, описание */
.process__head {
  display: grid;
  grid-template-columns: 150px minmax(360px, 520px) minmax(320px, 430px);
  gap: 34px;
  align-items: end;
  margin-bottom: 54px;
}

.process .section__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 0 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(201, 59, 59, 0.08);
  color: #b33a3a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.process__title {
  margin: 0;
  color: #171a22;
  font-size: clamp(52px, 5.4vw, 82px);
  line-height: 0.9;
  letter-spacing: -5px;
  font-weight: 900;
}

.process__side {
  position: relative;
  align-self: end;
}

/* Маленький декоративный маршрут, теперь не гигантский монстр */
.process__side::before {
  content: "01 → 02 → 03";
  position: absolute;
  right: 137px;
  top: -78px;
  z-index: -1;
  color: rgba(201, 59, 59, 0.045);
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -2px;
  white-space: nowrap;
  pointer-events: none;
}

.process__lead {
  margin: 0;
  color: rgba(23, 26, 34, 0.64);
  font-size: 17px;
  line-height: 1.5;
}

.process__mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.process__mini span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(23, 26, 34, 0.08);
  color: rgba(23, 26, 34, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* Таймлайн */
.process__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Вертикальная линия под цифрами */
.process__timeline::before {
  content: "";
  position: absolute;
  left: 67px;
  top: 42px;
  bottom: 42px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(201, 59, 59, 0.12),
    rgba(201, 59, 59, 0.48),
    rgba(201, 59, 59, 0.12)
  );
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 136px 1fr;
  gap: 28px;
  align-items: stretch;
}

/* Убираем сильный сдвиг, из-за него всё казалось уехавшим */
.process-step:nth-child(even) {
  margin-left: 70px;
}

.process-step__num {
  position: relative;
  z-index: 2;
  width: 136px;
  height: 136px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(201, 59, 59, 0.86);
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(23, 26, 34, 0.1);
  box-shadow: 0 18px 50px rgba(23, 26, 34, 0.07);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -3px;
}

.process-step__content {
  position: relative;
  min-height: 136px;
  padding: 30px 34px;
  border-radius: 30px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.72),
      rgba(255, 255, 255, 0.36)
    );
  border: 1px solid rgba(23, 26, 34, 0.1);
  box-shadow: 0 20px 54px rgba(23, 26, 34, 0.055);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.process-step__content::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 50%;
  width: 200px;
  height: 62px;
  border-radius: 999px;
  background: rgba(201, 59, 59, 0.065);
  transform: translateY(-50%) rotate(-14deg);
  pointer-events: none;
}

.process-step:hover .process-step__content {
  transform: translateY(-5px);
  border-color: rgba(201, 59, 59, 0.24);
  box-shadow: 0 26px 76px rgba(23, 26, 34, 0.1);
}

.process-step__content span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-bottom: 16px;
  color: #b33a3a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.process-step__content h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  color: #171a22;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -2px;
}

.process-step__content p {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0;
  color: rgba(23, 26, 34, 0.64);
  font-size: 16px;
  line-height: 1.5;
}

/* Мобильная версия */
@media (max-width: 768px) {
  .header{
    top: 14px;
    width: calc(100% - 28px);
    height: auto;
    padding: 16px 18px;
    border-radius: 22px;
  }
  .logo-main{
    font-size: 24px;
  }
  .logo-sub {
    font-size: 9px;
  }
  .nav {
    display: none;
  }
  .header-btn {
    padding: 11px 16px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 780px;
    padding: 0;
    background-position: center top;
  }

  .hero__content {
    position: absolute;
    inset: 0;
    z-index: 20;
    max-width: none;
    padding: 0;
    text-align: center;
  }

  .eyebrow {
    position: absolute;
    left: 50%;
    top: 250px;
    transform: translateX(-50%);
    width: calc(100% - 36px);
    margin: 0;
    font-size: 9px;
    line-height: 1.3;
    letter-spacing: 0.16em;
    text-align: center;
  }

  .hero__logo {
    position: absolute;
    left: 50%;
    top: 275px;
    transform: translateX(-50%);
    width: 100%;
    margin: 0;
    font-size: clamp(58px, 20vw, 82px);
    line-height: 0.82;
    letter-spacing: -0.09em;
    text-align: center;
  }

  .hero__subtitle {
    position: absolute;
    color: black;
    left: 50%;
    top: 345px;
    transform: translateX(-50%);
    width: calc(100% - 36px);
    margin: 0;
    font-size: 17px;
    line-height: 1.1;
    letter-spacing: 0.16em;
    text-align: center;
  }

  .hero__text {
    position: absolute;
    left: 50%;
    top: 382px;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 330px;
    margin: 0;
    font-size: 20px;
    line-height: 1.35;
    text-align: center;
  }

  .decor--bee-main {
    top: 170px;
    left: 50%;
    width: 120px;
    transform: translateX(-50%);
  }

  .decor--brand-card {
    display: none;
  }

  .decor--text-digital-coach,
  .decor--text-create-future,
  .decor--text-create-inspire {
    display: none;
  }

  .decor--chain-left {
    left: -95px;
    top: 80px;
    width: 260px;
    opacity: 0.75;
  }

  .decor--chain-right {
    right: -120px;
    top: -30px;
    width: 230px;
    opacity: 0.6;
  }

  .decor--chain-bottom {
    left: auto;
    right: -170px;
    bottom: -30px;
    width: 420px;
    opacity: 0.75;
  }
}

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

  .container {
    width: calc(100% - 36px);
  }

  .services__title {
    font-size: clamp(42px, 13vw, 64px);
    line-height: 0.96;
    letter-spacing: -2.5px;
  }

  .services__lead {
    margin-top: 22px;
    font-size: 18px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 38px;
  }

  .service-card {
    min-height: auto;
    padding: 28px 26px 26px;
    border-radius: 24px;
  }

  .service-card__num {
    margin-bottom: 24px;
  }

  .service-card h3 {
    font-size: 26px;
  }

  .service-card p {
    font-size: 16px;
  }
}

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

  .container {
    width: calc(100% - 36px);
  }

  .services__title {
    font-size: clamp(42px, 13vw, 64px);
    line-height: 0.96;
    letter-spacing: -2.5px;
  }

  .services__lead {
    margin-top: 22px;
    font-size: 18px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 38px;
  }

  .service-card {
    min-height: auto;
    padding: 28px 26px 26px;
    border-radius: 24px;
  }

  .service-card__num {
    margin-bottom: 24px;
  }

  .service-card h3 {
    font-size: 26px;
  }

  .service-card p {
    font-size: 16px;
  }
}

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

  .cases__head {
    display: block;
  }

  .cases__title {
    font-size: clamp(40px, 12vw, 62px);
    line-height: 0.96;
    letter-spacing: -2.5px;
  }

  .cases__list {
    margin-top: 42px;
    gap: 16px;
  }

  .case-row {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
    padding: 28px 26px;
    border-radius: 26px;
  }

  .case-row:nth-child(even) {
    margin-left: 0;
  }

  .case-row__num {
    font-size: 56px;
    letter-spacing: -4px;
  }

  .case-row__tag {
    margin-bottom: 18px;
  }

  .case-row h3 {
    font-size: 28px;
    letter-spacing: -1.5px;
  }

  .case-row p {
    font-size: 16px;
  }

  .cases::before {
    right: -80px;
    top: 70px;
    font-size: 110px;
    letter-spacing: -6px;
  }
}

@media (max-width: 768px) {
  .cases__btn {
    width: 100%;
    max-width: 320px;
    margin-top: 28px;
    padding: 14px 20px;
    font-size: 14px;
  }
}


/* =========================================
PORTFOLIO PAGE
Страница портфолио GROOXO
========================================= */

.portfolio-page {
position: relative;
padding: 190px 0 80px;
overflow: hidden;
}

.portfolio-page::before {
content: "PORTFOLIO";
position: absolute;
right: -90px;
top: 120px;
z-index: 0;
font-size: clamp(100px, 16vw, 230px);
font-weight: 900;
letter-spacing: -10px;
color: rgba(23, 26, 34, 0.035);
line-height: 1;
pointer-events: none;
}

.portfolio-page::after {
content: "";
position: absolute;
left: -120px;
bottom: 40px;
z-index: 0;
width: 380px;
height: 110px;
background: rgba(201, 59, 59, 0.09);
border-radius: 999px;
transform: rotate(-12deg);
filter: blur(4px);
pointer-events: none;
}

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

.portfolio-page__title {
max-width: 1050px;
margin: 0;
color: #171a22;
font-size: clamp(50px, 6vw, 92px);
line-height: 0.94;
letter-spacing: -5px;
font-weight: 900;
}

.portfolio-page__lead {
max-width: 760px;
margin: 28px 0 0;
color: rgba(23, 26, 34, 0.65);
font-size: 21px;
line-height: 1.45;
}


/* =========================================
PORTFOLIO CATEGORY
Разделы внутри портфолио
========================================= */

.portfolio-category {
position: relative;
padding: 72px 0;
}

.portfolio-category__head {
display: grid;
grid-template-columns: 120px 1.2fr 1fr;
gap: 34px;
align-items: end;
margin-bottom: 36px;
}

.portfolio-category__head span {
color: rgba(201, 59, 59, 0.28);
font-size: 72px;
line-height: 0.8;
font-weight: 900;
letter-spacing: -5px;
}

.portfolio-category__head h2 {
margin: 0;
color: #171a22;
font-size: clamp(34px, 4vw, 56px);
line-height: 0.98;
letter-spacing: -3px;
font-weight: 900;
}

.portfolio-category__head p {
margin: 0;
color: rgba(23, 26, 34, 0.62);
font-size: 17px;
line-height: 1.45;
}


/* =========================================
PORTFOLIO GRID
Сетки для карточек
========================================= */

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

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

.portfolio-grid--featured {
grid-template-columns: repeat(3, 1fr);
}


/* =========================================
PORTFOLIO WORK CARD
Карточка работы
========================================= */

.portfolio-work {
position: relative;
border-radius: 32px;
overflow: hidden;
background: rgba(255, 255, 255, 0.56);
border: 1px solid rgba(23, 26, 34, 0.1);
box-shadow: 0 22px 60px rgba(23, 26, 34, 0.06);
transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.portfolio-work:hover {
transform: translateY(-8px);
border-color: rgba(201, 59, 59, 0.28);
box-shadow: 0 30px 90px rgba(23, 26, 34, 0.12);
}

.portfolio-work--wide {
grid-column: span 2;
}

.portfolio-work__media {
position: relative;
height: 300px;
background:
radial-gradient(circle at 80% 20%, rgba(201, 59, 59, 0.11), transparent 30%),
#ede4d2;
overflow: hidden;
}

.portfolio-work--wide .portfolio-work__media {
height: 390px;
}

.portfolio-work--video .portfolio-work__media {
height: 420px;
}

.portfolio-work__media img,
.portfolio-work__media video {
width: 100%;
height: 100%;
display: block;
object-fit: cover;
}

.portfolio-work__media video {
background: #171a22;
}

.portfolio-work__media--logo {
display: flex;
align-items: center;
justify-content: center;
padding: 42px;
}

.portfolio-work__media--logo img {
width: 80%;
height: auto;
max-height: 220px;
object-fit: contain;
}

.portfolio-work__body {
padding: 26px;
}

.portfolio-work__body span {
display: inline-flex;
margin-bottom: 16px;
color: #b33a3a;
font-size: 12px;
font-weight: 900;
letter-spacing: 1.6px;
text-transform: uppercase;
}

.portfolio-work__body h3 {
margin: 0 0 12px;
color: #171a22;
font-size: 26px;
line-height: 1.04;
font-weight: 900;
letter-spacing: -1.5px;
}

.portfolio-work__body p {
margin: 0;
color: rgba(23, 26, 34, 0.64);
font-size: 16px;
line-height: 1.45;
}

.portfolio-work--site-only {
display: flex;
flex-direction: column;
min-height: 100%;
background:
radial-gradient(circle at 88% 14%, rgba(201, 59, 59, 0.16), transparent 34%),
linear-gradient(145deg, #f4eddf 0%, #fffaf1 100%);
}

.portfolio-work__site-only-mark {
display: flex;
align-items: flex-end;
min-height: 360px;
padding: 34px;
overflow: hidden;
color: #171a22;
font-size: clamp(46px, 6vw, 82px);
font-weight: 900;
line-height: 0.82;
letter-spacing: -5px;
word-break: break-word;
}

.portfolio-work--site-only .portfolio-work__body {
margin-top: auto;
}


/* =========================================
PORTFOLIO MOBILE
Адаптация портфолио
========================================= */

@media (max-width: 900px) {
.portfolio-page {
padding: 150px 0 60px;
}

.portfolio-page::before {
right: -80px;
top: 120px;
font-size: 90px;
letter-spacing: -5px;
}

.portfolio-page::after {
width: 240px;
height: 70px;
left: -120px;
bottom: 40px;
}

.portfolio-page__title {
font-size: clamp(42px, 12vw, 66px);
line-height: 0.96;
letter-spacing: -3px;
}

.portfolio-page__lead {
margin-top: 22px;
font-size: 18px;
}

.portfolio-category {
padding: 52px 0;
}

.portfolio-category__head {
display: block;
margin-bottom: 28px;
}

.portfolio-category__head span {
display: block;
margin-bottom: 18px;
font-size: 56px;
}

.portfolio-category__head h2 {
font-size: clamp(32px, 9vw, 46px);
letter-spacing: -2px;
}

.portfolio-category__head p {
margin-top: 16px;
font-size: 16px;
}

.portfolio-grid,
.portfolio-grid--two,
.portfolio-grid--featured {
grid-template-columns: 1fr;
}

.portfolio-work--wide {
grid-column: span 1;
}

.portfolio-work__media,
.portfolio-work--wide .portfolio-work__media {
height: 260px;
}

.portfolio-work--video .portfolio-work__media {
height: 520px;
}

.portfolio-work__body {
padding: 24px;
}

.portfolio-work__body h3 {
font-size: 24px;
}
}
/* =========================================
   MEDIA MODAL
   Открытие картинок и видео в полный экран
========================================= */

.portfolio-work__media {
  cursor: zoom-in;
}

.media-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.media-modal.is-open {
  display: flex;
}

.media-modal__content {
  position: relative;
  width: min(100%, 1200px);
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-modal__content img,
.media-modal__content video {
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 24px;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  background: #111;
}

.media-modal__content video {
  width: auto;
}

.media-modal__close {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 5100;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #171a22;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.media-modal__close:hover {
  transform: scale(1.06);
  background: #fff;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .media-modal {
    padding: 18px;
  }

  .media-modal__content {
    max-height: 82vh;
  }

  .media-modal__content img,
  .media-modal__content video {
    max-height: 82vh;
    border-radius: 18px;
  }

  .media-modal__close {
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    font-size: 30px;
  }
}

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

  .process__head {
    display: block;
    margin-bottom: 42px;
  }

  .process .section__label {
    margin-bottom: 20px;
  }

  .process__title {
    font-size: clamp(44px, 13vw, 68px);
    line-height: 0.92;
    letter-spacing: -3px;
  }

  .process__side {
    margin-top: 22px;
  }

  .process__side::before {
    display: none;
  }

  .process__lead {
    font-size: 17px;
  }

  .process__mini {
    margin-top: 18px;
  }

  .process__mini span {
    font-size: 11px;
    padding: 8px 11px;
  }

  .process__timeline {
    gap: 18px;
  }

  .process__timeline::before {
    left: 28px;
    top: 28px;
    bottom: 28px;
  }

  .process-step,
  .process-step:nth-child(even) {
    grid-template-columns: 56px 1fr;
    gap: 18px;
    margin-left: 0;
  }

  .process-step__num {
    width: 56px;
    height: 56px;
    font-size: 18px;
    letter-spacing: -1px;
  }

  .process-step__content {
    min-height: auto;
    padding: 24px;
    border-radius: 24px;
  }

  .process-step__content span {
    margin-bottom: 14px;
  }

  .process-step__content h3 {
    font-size: 27px;
    letter-spacing: -1.5px;
  }

  .process-step__content p {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .contact {
    margin: 30px auto 34px;
    padding: 38px 24px;
    border-radius: 30px;
  }

  .contact h2 {
    font-size: clamp(42px, 12vw, 62px);
    line-height: 0.95;
    letter-spacing: -3px;
  }

  .contact__text {
    font-size: 17px;
  }

  .contact__actions {
    margin-top: 26px;
  }

  .contact__btn {
    width: 100%;
  }

  .contact__note {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 28px;
    max-width: none;
  }

  .contact::before {
    right: -70px;
    top: 30px;
    font-size: 90px;
    letter-spacing: -5px;
  }
}

.portfolio-work--acsp {
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden;
}

.portfolio-work--acsp .portfolio-work__media--acsp {
  position: relative;
  width: 100%;
  min-height: 360px;
  padding: 76px 34px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-work--acsp .portfolio-work__acsp-images {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.portfolio-work--acsp .portfolio-work__acsp-logo {
  display: block;
  width: auto !important;
  max-width: 260px !important;
  height: auto !important;
  max-height: 150px !important;
  object-fit: contain !important;
}

.portfolio-work--acsp .portfolio-work__acsp-sticker {
  display: block;
  width: auto !important;
  max-width: 170px !important;
  height: auto !important;
  max-height: 230px !important;
  object-fit: contain !important;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(40, 45, 60, 0.14);
}

.portfolio-work--acsp .portfolio-work__body {
  width: 100%;
  padding: 26px 34px 34px;
}

.portfolio-work--acsp .portfolio-work__site-btn {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 5;

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

  padding: 10px 17px;
  border-radius: 999px;

  background: #ffffff;
  color: #6f7480;

  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;

  box-shadow: 0 12px 28px rgba(40, 45, 60, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-work--acsp .portfolio-work__site-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(40, 45, 60, 0.2);
}
@media (max-width: 768px) {
  .portfolio-work--acsp .portfolio-work__media--acsp {
    min-height: auto;
    padding: 66px 20px 28px;
  }

  .portfolio-work--acsp .portfolio-work__acsp-images {
    flex-direction: column;
    gap: 22px;
  }

  .portfolio-work--acsp .portfolio-work__acsp-logo {
    max-width: 230px !important;
    max-height: 130px !important;
  }

  .portfolio-work--acsp .portfolio-work__acsp-sticker {
    max-width: 200px !important;
    max-height: 260px !important;
  }

  .portfolio-work--acsp .portfolio-work__body {
    padding: 24px 24px 30px;
  }

  .portfolio-work--acsp .portfolio-work__site-btn {
    top: 14px;
    left: 14px;
    padding: 9px 14px;
    font-size: 12px;
  }

  .portfolio-work__site-only-mark {
    min-height: 260px;
    padding: 24px;
    font-size: clamp(48px, 17vw, 74px);
    letter-spacing: -4px;
  }
}
