@font-face {
  font-family: "HK Guise";
  src: url("../fonts/HK-Guise-Medium.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
    font-display: swap;
}

@font-face {
  font-family: "Nine";
  src: url("../fonts/NineByFiveNbp.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
    font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #141414;
  --bg-soft: #1b1b1b;
  --bg-deep: #101010;
  --bg-button: #313131;
  --text: #f3f3f3;
  --text-soft: rgba(243, 243, 243, 0.72);
  --text-muted: rgba(243, 243, 243, 0.5);
  --accent: #ff7a00;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --container: 1280px;
  --transition: 0.35s ease;
}

/* =========================
   RESET / NORMALIZE
========================= */

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

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
 
}

video::-webkit-media-controls {
    display: none !important;
}
video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

video {
  object-fit: cover;
}



a {
  color: inherit;
  text-decoration: none;
  transition:
    color var(--transition),
    opacity var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

button,
input,
textarea,
select {
  font: inherit;
}

ul,
ol {
  list-style: none;
}

/* =========================
   BASE
========================= */

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

.section {
  padding: 72px 0;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 50;
  padding-top: 20px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header--inner {
  /* background-color: var(--bg); */
}

.logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.9;
}

.logo-main {
  width: 170px;
}

.logo-sub {
  margin-top: 2px;
  font-family: "Nine", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.82rem;
  text-transform: lowercase;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.88);
}

.main-nav a:hover {
  color: var(--accent);
}

.nav-reel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  background: var(--accent);
  color: #121212;
  border-radius: 2px;
  font-weight: 700;
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #0f0f0f;
}


.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}




.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.25)),
    linear-gradient(to top, rgba(20, 20, 20, 0.72), rgba(20, 20, 20, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 32px;
}

.hero-brand h1 {
  font-family: "HK Guise", sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.08em;
  text-transform: lowercase;
}

.hero-brand p {
  margin-top: 5px;
  font-family: "Nine", sans-serif;
  font-size: 0.96rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.hero-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 8px;
  font-size: 0.82rem;
  text-transform: lowercase;
}

.hero-nav a:hover {
  color: var(--accent);
}

.hero-nav a.hero-reel:hover {
  color: white;
}

.main-nav a.nav-reel:hover {
  color: black;
}

.hero-reel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  background: var(--accent);
  color: #121212;
  border-radius: 2px;
  font-weight: 700;
}

/* =========================
  QUIZ
========================= */





/* =========================
   INTRO
========================= */

.intro {
  background: var(--bg);
}

.intro-inner {
  display: flex;
  justify-content: center;
}

.intro-text {
  width: min(100%, 860px);
}

.intro-text p {
  font-size: 2.2rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #f0f0f0;
}

.intro-text p + p {
  margin-top: 28px;
}

/* =========================
   PROJECTS FLEX LAYOUT
========================= */

.projects {
  background: var(--bg);
  padding-top: 8px;
}

.projects-layout {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.projects-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 34px;
  min-width: 0;
}

.projects-col-left {
  width: 58%;
}

.projects-col-right {
  width: 42%;
  padding-top: 6px;
}

.project-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.project-card--top-offset {
  margin-top: 0;
}

.project-card--large-gap {
  margin-top: 18px;
}

.pull-up {
  margin-top: -18px;
  width: 100%;
}

.project-media {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: var(--bg-deep);
}


.project-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0));
  pointer-events: none;
  z-index: 1;
}

.project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.025);
  pointer-events: none;
  z-index: 2;
}

.project-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s ease;
}



.project-card:hover .project-media video {
  transform: scale(1.04);
}

.project-video.video1{
   transform: scale(1.1);
} 
.project-card:hover .project-media video.video1 {
   transform: scale(1.5);
}

.media-30 {
  height: 40vh;
  min-height: 220px;
}

.media-45 {
  height: 45vh;
  min-height: 320px;
}

.media-60 {
  height: 60vh;
  min-height: 460px;
}

.media-75 {
  height: 75vh;
  min-height: 620px;
}

.project-info {
  padding-top: 10px;
}

.project-info h3 {
  font-family: "HK Guise", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.project-info h3 span {
  color: var(--accent);
}

.project-info p {
  margin-top: 3px;
  font-size: 0.88rem;
  line-height: 1.2;
  color: var(--text-soft);
}

.projects-action {
  display: flex;
  justify-content: center;
  padding-top: 58px;
}

/* BUTTON */

.btn-bloom {
  --btn-bg: var(--bg-button);
  --btn-text: var(--text);
  --btn-fill: var(--accent);
  --x: 50%;
  --y: 50%;
  --scale-soft: 0;
  --scale-main: 0;

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 340px;
  height: 58px;

  padding: 0 38px;
  overflow: hidden;
  background: var(--btn-bg);
  color: var(--btn-text);
  text-decoration: none;
  border: none;
  isolation: isolate;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: box-shadow 0.45s ease, transform 0.25s ease;
}

.btn-bloom.small {
  min-width: 100px;
  height: 34px;
  padding: 0 20px;
  font-size: 0.75rem;
}

.btn-bloom__text {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-arrow {
  width: 32px;
  height: 10px;
  transition: transform .35s ease;
}

.btn-bloom:hover .btn-arrow {
  transform: translateX(6px);
}

.btn-bloom__fill {
  position: absolute;
  left: var(--x);
  top: var(--y);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(var(--scale));
  pointer-events: none;
}

.btn-bloom__fill--soft {
  --scale: var(--scale-soft);
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.42) 0%, rgba(255, 122, 0, 0.16) 38%, rgba(255, 122, 0, 0) 72%);
  filter: blur(22px);
  z-index: 1;
  transition:
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.8s ease;
}

.btn-bloom__fill--main {
  --scale: var(--scale-main);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.98) 0%, rgba(255, 122, 0, 0.92) 32%, rgba(255, 122, 0, 0.72) 52%, rgba(255, 122, 0, 0) 74%);
  filter: blur(8px);
  z-index: 2;
  transition:
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.75s ease;
}

.btn-bloom:hover {
  box-shadow: 0 12px 36px rgba(255, 122, 0, 0.14);
}

.btn-bloom:active {
  transform: translateY(1px);
}
@media(max-width: 767px) {
  .btn-bloom {
   font-size: 14px;
  }
}

/* =========================
   SHOWCASE
========================= */

.showcase {
  padding: 84px 0 0;
}

.showcase-media {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
  aspect-ratio: 16 / 7;
}

.showcase-media video {
  width: 100%;
  height: 100%;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: #171717;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1fr 0.7fr;
  gap: 32px;
  align-items: start;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.95rem;
  color: var(--text-soft);
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-cta h2 {
  margin-bottom: 20px;
  font-family: "HK Guise", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: lowercase;
}

.talk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 48px;
  padding: 0 24px;
  background: var(--accent);
  color: #111;
  font-weight: 700;
}

.talk-btn:hover {
  opacity: 0.88;
}
.footer-info a{
  display: block;
}
.footer-info a:hover {
  color: var(--accent);
}

.footer-info p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.footer-mark {
  color: var(--accent);
  font-size: 2.2rem;
  line-height: 1;
}

/* .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.social-links a:hover {
  color: var(--accent);
  border-color: var(--accent);
} */

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1025px) {
  .projects-layout {
    gap: 22px;
  }

  .projects-col {
    gap: 28px;
  }

  .pull-up {
    margin-top: -24px;
    width: 100%;
  }
 

  .media-30 {
    height: 26vh;
    min-height: 200px;
  }

  .media-45 {
    height: 36vh;
    min-height: 280px;
  }

  .media-60 {
    height: 46vh;
    min-height: 360px;
  }

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

@media (max-width: 991px) {
  .main-nav {
    display: none;
  }

  .hero-content {
    padding-bottom: 26px;
  }

  .projects-layout {
    gap: 18px;
  }

  .projects-col {
    gap: 24px;
  }

  .projects-col-left,
  .projects-col-right {
    width: 50%;
  }

  .pull-up {
    width: 100%;
    margin-top: 0;
  }

  .project-card--large-gap {
    margin-top: 0;
  }

  .media-30 {
    height: 24vh;
    min-height: 180px;
  }

  .media-45 {
    height: 30vh;
    min-height: 240px;
  }

  .media-60 {
    height: 38vh;
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 44px 0;
  }

  .site-header {
    padding-top: 14px;
  }

  .logo-main {
    font-size: 2.7rem;
  }

  .logo-sub {
    font-size: 0.72rem;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    min-height: 95vh;
    padding-bottom: 22px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .hero-brand h1 {
    font-size: 3rem;
  }

  .hero-brand p {
    font-size: 0.84rem;
    letter-spacing: 0.24em;
  }

  .intro-text p {
    font-size: 1.45rem;
    line-height: 1.12;
  }

  .projects-layout {
    flex-direction: column;
    gap: 24px;
  }

  .projects-col {
    width: 100%;
    gap: 24px;
  }

  .projects-col-left,
  .projects-col-right {
    width: 100%;
  }

  .pull-up,
  .project-card--large-gap,
  .project-card--top-offset {
    width: 100%;
    margin-top: 0;
  }

  .media-30,
  .media-45,
  .media-60,
  .media-75 {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .project-info h3 {
    font-size: 1.45rem;
  }

  .showcase {
    padding-top: 44px;
  }

  .showcase-media {
    /* aspect-ratio: 4 / 5; */
     aspect-ratio: auto;
    height: auto;
  }
   .showcase-media video {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-cta {
    order: 1;
  }

  .footer-nav {
    order: 2;
  }

  .footer-info {
    order: 3;
  }

  .footer-social {
    order: 4;
  }
}



/* Як ми працюємо */
/* workflow */

/* =========================
   WORKFLOW / LUXURY NO OBJECT
========================= */

.workflow {
  position: relative;
  padding: 120px 0;
  background: #141414;
  overflow: clip;
  isolation: isolate;
}
.workflow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('https://3205production.com/wp-content/themes/filmproduction3205/assets/images/noise.png');
  opacity: 0.04;
  pointer-events: none;
}


.workflow-head {
  position: relative;
  z-index: 3;
  margin-bottom: 42px;
}

.workflow-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-family: "HK Guise", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.workflow-kicker__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff7a00;
  box-shadow: 0 0 8px rgba(255, 122, 0, 0.42);
}

.workflow-kicker__trail {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 122, 0, 0.72), rgba(255, 122, 0, 0));
}

.workflow-title {
  font-weight: 400;
  max-width: 560px;
  font-family: "HK Guise", sans-serif;
  font-size: 3.8rem;
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: #f4f4f4;
}

.workflow-title .line {
  display: block;
}

.workflow-layout {
  position: relative;
}

.workflow-steps {
  position: relative;
  z-index: 2;
}

.workflow-step {
  position: relative;
  padding: 24px 0 44px;
}

.workflow-step:last-child {
  padding-bottom: 8px;
}

.workflow-step__bg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(78vw, 1240px);
  height: 220px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(ellipse at center,
      rgba(255, 122, 0, 0.12) 0%,
      rgba(255, 122, 0, 0.05) 18%,
      rgba(255, 122, 0, 0.018) 36%,
      transparent 72%);
  filter: blur(44px);
  transition:
    opacity 0.75s ease,
    transform 0.9s cubic-bezier(.22,.61,.36,1);
}

.workflow-step__line {
  position: relative;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
  overflow: hidden;
}

.workflow-step__line-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 122, 0, 0.65) 0%,
    rgba(255, 142, 51, 0.96) 45%,
    rgba(255, 122, 0, 0.72) 100%
  );
  transition: width 0.8s cubic-bezier(.22,.61,.36,1);
}

.workflow-step__line-glow {
  position: absolute;
  top: 50%;
  left: -16%;
  width: 18%;
  height: 14px;
  transform: translateY(-50%);
  background: radial-gradient(
    ellipse at center,
    rgba(255, 160, 76, 0.55) 0%,
    rgba(255, 122, 0, 0.14) 42%,
    transparent 74%
  );
  filter: blur(9px);
  opacity: 0;
}

.workflow-step__grid {
  display: grid;
  grid-template-columns:
    minmax(260px, 420px)
    minmax(240px, 1fr)
    minmax(260px, 360px);
  gap: 28px;
  align-items: center;
  padding-top: 26px;
  min-height: 170px;
}

.workflow-step__left {
  display: flex;
  align-items: center;
  gap: 26px;
}

.workflow-step__num {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "HK Guise", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.01);
  transition:
    color 0.45s ease,
    border-color 0.45s ease,
    background-color 0.45s ease,
    box-shadow 0.45s ease,
    transform 0.45s ease;
}

.workflow-step__title h3 {
  margin: 10px 0 0;
  font-family: "HK Guise", sans-serif;
  font-size: 3.2rem;
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.22);
  transition:
    color 0.45s ease,
    transform 0.55s cubic-bezier(.22,.61,.36,1),
    letter-spacing 0.45s ease;
}

.workflow-step__spacer {
  min-height: 1px;
}

.workflow-step__right p {
  margin: 0;
  max-width: 360px;
  font-size: 1.02rem;
  line-height: 1.38;
  color: rgba(255, 255, 255, 0.28);
  transform: translateY(6px);
  opacity: 0.68;
  transition:
    color 0.45s ease,
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(.22,.61,.36,1);
}

/* inactive fade */
.workflow-step:not(.is-active) .workflow-step__bg {
  opacity: 0;
}

/* active */
.workflow-step.is-active .workflow-step__bg {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.02);
}

.workflow-step.is-active .workflow-step__line {
  background: rgba(255, 122, 0, 0.16);
}

.workflow-step.is-active .workflow-step__line-fill {
  width: 100%;
}

.workflow-step.is-active .workflow-step__num {
  color: #ffffff;
  border-color: rgba(255, 132, 36, 0.88);
  background: rgba(255, 122, 0, 0.08);
  box-shadow:
    0 0 22px rgba(255, 122, 0, 0.08),
    inset 0 0 18px rgba(255, 122, 0, 0.04);
  transform: scale(1.02);
}

.workflow-step.is-active .workflow-step__title h3 {
  color: #ffffff;
  transform: translateX(0);
  letter-spacing: -0.052em;
}

.workflow-step.is-active .workflow-step__right p {
  color: rgba(255, 255, 255, 0.82);
  opacity: 1;
  transform: translateY(0);
}

/* sweep animation only when step becomes active */
.workflow-step.is-animating .workflow-step__line-glow {
  animation: workflowLineSweep 0.95s cubic-bezier(.22,.61,.36,1) forwards;
}

@keyframes workflowLineSweep {
  0% {
    left: -18%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  65% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@media (max-width: 1280px) {
  .workflow-title {
    font-size: 4.8rem;
  }

  .workflow-step__title h3 {
    font-size: 2.8rem;
  }
}

@media (max-width: 1024px) {
  .workflow {
    padding: 100px 0;
  }

  .workflow-title {
    font-size: 4rem;
  }

  .workflow-step__grid {
    grid-template-columns:
      minmax(220px, 1fr)
      minmax(140px, 180px)
      minmax(220px, 320px);
    gap: 20px;
    min-height: 150px;
  }

  .workflow-step__bg {
    width: min(86vw, 980px);
    height: 190px;
  }

  .workflow-step__title h3 {
    font-size: 2.5rem;
  }
}

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

  .workflow-head {
    margin-bottom: 28px;
  }

  .workflow-title {
    font-size: 2.7rem;
    line-height: 0.98;
    max-width: 92%;
  }

  .workflow-step {
    padding: 26px 0 42px;
  }

  .workflow-step__bg {
    width: calc(100% + 40px);
    height: 180px;
  }

  .workflow-step__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: auto;
    padding-top: 18px;
  }

  .workflow-step__left {
    align-items: center;
    gap: 16px;
  }

  .workflow-step__num {
    width: 48px;
    height: 48px;
    font-size: 0.95rem;
  }

  .workflow-step__title h3 {
    font-size: 2rem;
  }

  .workflow-step__right p {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .workflow-step__spacer {
    display: none;
  }
}

@media (max-width: 480px) {
  .workflow-title {
    font-size: 2.35rem;
  }

  .workflow-step__title h3 {
    font-size: 1.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .workflow-step__bg,
  .workflow-step__line-fill,
  .workflow-step__line-glow,
  .workflow-step__num,
  .workflow-step__title h3,
  .workflow-step__right p {
    transition: none;
    animation: none;
  }
}

/* З ким мы працюємо партненрство */

.partners {
  background: #141414;
  padding: 160px 0;
}

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

.partners-title {
font-weight: 400;
    max-width: 520px;
    font-family: "HK Guise", sans-serif;
    font-size: 3.8rem;
    line-height: 0.95;
    letter-spacing: -0.06em;
    color: #f4f4f4;
}

.partners-cards {
  display: flex;
  gap: 32px;
}


.partners-card {
  position: relative;
  max-width: 450px;
  flex: 1;
  padding: 48px 22px;
  border-radius: 20px;
  overflow: hidden;

  background:
    radial-gradient(circle at 18% 10%, rgba(255, 122, 0, 0.16), transparent 34%),
    radial-gradient(circle at 78% 88%, rgba(255, 122, 0, 0.06), transparent 36%),
    linear-gradient(90deg, rgba(70, 36, 12, 0.82) 0%, rgba(36, 24, 18, 0.94) 42%, rgba(24, 24, 24, 0.98) 100%);

  border: 1px solid rgba(255, 122, 0, 0.45);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    inset 0 0 36px rgba(255, 122, 0, 0.035),
    0 18px 28px rgba(0, 0, 0, 0.18);

  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.partners-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 18%),
    radial-gradient(circle at top left, rgba(255, 122, 0, 0.10), transparent 30%);
}

.partners-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    0 0 0 1px rgba(255, 122, 0, 0.08),
    0 0 22px rgba(255, 122, 0, 0.06);
}

.partners-card:hover {
  transform: translateY(-6px) scale(1.01);

  border-color: #ff8d24;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 0 60px rgba(255, 122, 0, 0.08),

    /* основной glow */
    0 0 35px rgba(255, 122, 0, 0.25),

    /* дальний мягкий glow */
    0 0 80px rgba(255, 122, 0, 0.12),

    /* глубина */
    0 25px 50px rgba(0, 0, 0, 0.4);
}

.partners-card:hover::after {
  box-shadow:
    0 0 0 1px rgba(255, 122, 0, 0.15),
    0 0 30px rgba(255, 122, 0, 0.25),
    0 0 80px rgba(255, 122, 0, 0.12);
}

.partners-card:hover .partners-card-title {
  color: #ff8d24;
}

.partners-card:hover .partners-list li::before {
  box-shadow: 0 0 14px rgba(255, 122, 0, 0.7);
}
.partners-card.is-active {
  transform: translateY(-4px);

  border-color: #ff8d24;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 0 60px rgba(255, 122, 0, 0.06),
    0 0 30px rgba(255, 122, 0, 0.18),
    0 0 70px rgba(255, 122, 0, 0.08),
    0 20px 40px rgba(0, 0, 0, 0.35);
}

.partners-card.is-active::after {
  box-shadow:
    0 0 0 1px rgba(255, 122, 0, 0.12),
    0 0 25px rgba(255, 122, 0, 0.2),
    0 0 70px rgba(255, 122, 0, 0.08);
}

.partners-card {
  opacity: 0;
  transform: translateY(20px);
}

.partners-card.is-active {
  opacity: 1;
  transform: translateY(-4px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    box-shadow 0.4s ease;
}
.partners-card.is-visible {
  animation: cardGlowIn 1.2s cubic-bezier(.22,.61,.36,1) forwards;
}
@keyframes cardGlowIn {
  0% {
    box-shadow:
      0 0 0 rgba(255, 122, 0, 0),
      0 0 0 rgba(255, 122, 0, 0);
    border-color: rgba(255, 122, 0, 0.3);
    transform: translateY(6px);
  }

  50% {
    box-shadow:
      0 0 40px rgba(255, 122, 0, 0.35),
      0 0 80px rgba(255, 122, 0, 0.18);
    border-color: rgba(255, 122, 0, 0.8);
  }

  100% {
    box-shadow:
      0 0 22px rgba(255, 122, 0, 0.2),
      0 0 50px rgba(255, 122, 0, 0.1);
    border-color: rgba(255, 122, 0, 0.55);
    transform: translateY(0);
  }
}

.partners-card-title {
  font-size: 20px;
  margin-bottom: 40px;
  color: #ff7a00;
}

.partners-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 16px;
  color: #e6e6e6;
}
.partners-list li {
  position: relative;
  padding-left: 18px; /* место под кружок */
}

/* кружок */
.partners-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;

  width: 6px;
  height: 6px;
  border-radius: 50%;

  background: var(--accent); /* тёплый жёлтый */
  box-shadow: 0 0 8px rgba(255, 180, 0, 0.6);
}

.partners-card.is-active li {
  opacity: 1;
  transform: translateY(0);
}

.partners-text {
  font-size: 16px;
  line-height: 1.6;
  max-width: 300px;
  color: #e6e6e6;
}

@media(max-width:1025px){
   .partners-title{
    font-size: 70px;
  }
   .workflow-title{
   font-size: 70px;
    margin-bottom: 30px;
  }
}

@media (max-width: 900px) {
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
   .partners-title{
    font-size: 40px;
    margin-bottom: 30px;
  }
  .workflow-title{
   font-size: 40px;
    margin-bottom: 30px;
  }

  .partners-cards {
    flex-direction: column;
  }

  .partners-card {
    padding: 36px;
  }
  .partners{
    padding-top: 100px;
  }
}

/* =========================
   COMMUNITY / SERVICES HERO
   desktop first
========================= */

/* heder down */

.hero-nav.services{
  background-color: transparent;
  display: none;
}


.hero.hero-community {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding-top: 112px;
  padding-left: 160px;
  padding-right: 0;
  padding-bottom: 0;
  min-height: 930px;
  height: 100vh;
  display: flex;
  align-items: center;
}

/* title */

.hero.hero-community h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 656px;
  font-family: "HK Guise", sans-serif;
  font-size: 90px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #f3f3f3;
}

.hero.hero-community h1 span {
  color: var(--accent);
}

/* scene */

.hero.hero-community .social {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1256px;
  height: 100%;
  z-index: 1;
}

/* bubble base */

.hero.hero-community .social > div {
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 122, 0, 0.55);
  background:
    radial-gradient(
      circle at 35% 30%,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.02) 42%,
      rgba(255,255,255,0.01) 68%,
      rgba(255,255,255,0.02) 100%
    );
  box-shadow:
    inset 0 0 34px rgba(255,255,255,0.05),
    0 0 24px rgba(255,122,0,0.10),
    0 0 50px rgba(255,122,0,0.05);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;

  animation:
    bubbleReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    bubbleGlow 2.8s ease-in-out infinite alternate;
}

@keyframes bubbleGlow {
  0% {
    border-color: rgba(255, 122, 0, 0.38);
    box-shadow:
      inset 0 0 26px rgba(255,255,255,0.03),
      0 0 16px rgba(255,122,0,0.08),
      0 0 34px rgba(255,122,0,0.03);
  }

  100% {
    border-color: rgba(255, 122, 0, 0.95);
    box-shadow:
      inset 0 0 52px rgba(255,255,255,0.10),
      0 0 46px rgba(255,122,0,0.28),
      0 0 110px rgba(255,122,0,0.16);
  }
}


.hero.hero-community .social > div:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 122, 0, 0.6);
  box-shadow:
    inset 0 0 36px rgba(255,255,255,0.03),
    0 0 24px rgba(255,122,0,0.08);
}

.hero.hero-community .social > div > a {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}

.hero.hero-community .social > div > a > span {
  display: block;
  max-width: 78%;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #f3f3f3;
}

/* desktop positions */

.hero.hero-community .social > div:nth-child(1) {
  width: 259px;
  height: 259px;
  right: 788px;
  bottom: 420px;
  animation-delay: 0.05s, 0.2s;
  animation-duration: 0.9s, 2.4s;
}

.hero.hero-community .social > div:nth-child(2) {
  width: 400px;
  height: 400px;
  right: 396px;
  bottom: 416px;
  animation-delay: 0.12s, 0.8s;
  animation-duration: 0.9s, 3.1s;
}

.hero.hero-community .social > div:nth-child(3) {
  width: 273px;
  height: 273px;
  right: 131px;
  bottom: 544px;
  animation-delay: 0.18s, 1.4s;
  animation-duration: 0.9s, 2.7s;
}

.hero.hero-community .social > div:nth-child(4) {
  width: 210px;
  height: 210px;
  right: 964px;
  bottom: 267px;
  animation-delay: 0.24s, 2s;
  animation-duration: 0.9s, 3.4s;
}

.hero.hero-community .social > div:nth-child(5) {
  width: 453px;
  height: 453px;
  right: 542px;
  bottom: 0;
  animation-delay: 0.3s, 2.6s;
  animation-duration: 0.9s, 2.9s;
}

.hero.hero-community .social > div:nth-child(6) {
  width: 545px;
  height: 545px;
  right: 0;
  bottom: 0;
  animation-delay: 0.36s, 3.2s;
  animation-duration: 0.9s, 3.8s;
}

.hero.hero-community .social > div:nth-child(7) {
  width: 273px;
  height: 273px;
  right: 983px;
  bottom: 0;
  animation-delay: 0.42s, 3.8s;
  animation-duration: 0.9s, 2.5s;
}

.hero.hero-community .social > div:nth-child(2) > a > span,
.hero.hero-community .social > div:nth-child(5) > a > span,
.hero.hero-community .social > div:nth-child(6) > a > span {
  max-width: 68%;
}

.hero.hero-community .social > div:nth-child(3) > a > span {
  font-size: 27px;
}

.hero.hero-community .social > div:nth-child(4) > a > span,
.hero.hero-community .social > div:nth-child(7) > a > span {
  font-size: 26px;
}


/* desktop tuning */

@media (max-width: 1440px) {
  .hero.hero-community .social {
    transform: scale(0.73);
    transform-origin: right center;
  }

  .hero.hero-community h1 {
	  top:-150px;
    max-width: 512px;
    font-size: 76px;
  }
}

@media (max-width: 1280px) {
  .hero.hero-community .social {
    transform: scale(0.72);
    transform-origin: right center;
  }

  .hero.hero-community h1 {
	  top:0;
    max-width: 416px;
    font-size: 64px;
  }
}

/* tablet: оставляем твою удачную версию */

@media (max-width: 1024px) {
  .hero.hero-community {
    padding-top: 160px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 530px;
    min-height: auto;
    height: auto;
    display: block;
  }

  .hero.hero-community h1 {
    margin-top: 50px;
    max-width: 400px;
    font-size: 56px;
    line-height: 1;
  }

  .hero.hero-community .social {
    transform: scale(0.8);
    transform-origin: right bottom;
    width: 760px;
    height: 558px;
    right: 0px;
    bottom: 0;
  }

  .hero.hero-community .social > div > a {
    padding: 14px;
  }

  .hero.hero-community .social > div > a > span {
    font-size: 15.5px;
    line-height: 1.15;
    max-width: 80%;
  }

  .hero.hero-community .social > div:nth-child(1) {
    width: 186px;
    height: 186px;
    right: 562px;
    bottom: 302px;
  }

  .hero.hero-community .social > div:nth-child(2) {
    width: 274px;
    height: 274px;
    right: 290px;
    bottom: 298px;
  }

  .hero.hero-community .social > div:nth-child(3) {
    width: 186px;
    height: 186px;
    right: 110px;
    bottom: 390px;
  }

  .hero.hero-community .social > div:nth-child(4) {
    width: 196px;
    height: 196px;
    right: 704px;
    bottom: 0;
  }

  .hero.hero-community .social > div:nth-child(5) {
    width: 324px;
    height: 324px;
    right: 388px;
    bottom: 0;
  }

  .hero.hero-community .social > div:nth-child(6) {
    width: 390px;
    height: 390px;
    right: 0;
    bottom: 0;
  }

  .hero.hero-community .social > div:nth-child(7) {
    width: 151px;
    height: 151px;
    right: 690px;
    bottom: 191px;
  }

  .hero.hero-community .social > div:nth-child(2) > a > span,
  .hero.hero-community .social > div:nth-child(5) > a > span,
  .hero.hero-community .social > div:nth-child(6) > a > span {
    max-width: 72%;
  }
}

/* mobile */

@media (max-width: 767px) {
     .hero.hero-community .social {
        transform: scale(0.46);
        transform-origin: right bottom;
        right: 0;
        margin-bottom: 30px;
    }
    .hero-nav.services{
      display: flex;
    justify-content: flex-end;
    }
        .hero.hero-community {
          padding-bottom: 370px;
          padding-top: 140px;
        }
     .hero.hero-community h1 {
     width: 300px;
     }
     .hero.hero-community .social > div:nth-child(3) > a > span {
font-size: 24px;
     }
     .hero.hero-community .social > div > a > span {
      font-size: 20px;
     }
     .hero.hero-community .social > div:nth-child(7) > a > span {
      font-size: 20px;
     }
}

@media (max-width: 390px) {
  .hero.hero-community .social {
   transform: scale(0.38);
        right: 0px;
  }
}
@media (max-width: 330px) {
  .hero.hero-community .social {
   transform: scale(0.35);
        right: 0px;
  }
}
.social > div {
  opacity: 0;
  filter: blur(10px);
  will-change: opacity, filter;
  animation: bubbleReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* stagger (задержки появления) */
.social > div:nth-child(1) { animation-delay: 0.05s; }
.social > div:nth-child(2) { animation-delay: 0.12s; }
.social > div:nth-child(3) { animation-delay: 0.18s; }
.social > div:nth-child(4) { animation-delay: 0.24s; }
.social > div:nth-child(5) { animation-delay: 0.3s; }
.social > div:nth-child(6) { animation-delay: 0.36s; }
.social > div:nth-child(7) { animation-delay: 0.42s; }

/* сама анимация */
@keyframes bubbleReveal {
  0% {
    opacity: 0;
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
  }
}


/* ========= WHY ========= */

.why-services {
  padding-top: 120px;
  padding-bottom: 120px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.why-services__grid {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.why-services__lead {
  max-width: 900px;
  font-family: "Montserrat", sans-serif;
 font-size: 2.2rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: rgb(240, 240, 240);
}

.why-services__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 34px;
  margin-top: 56px;
}

.why-item {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.why-item h3 {
  margin-bottom: 10px;
  font-family: "HK Guise", sans-serif;
  font-size: 1.28rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}

.why-item p {
  max-width: 420px;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--text-soft);
}

/* ========= SERVICES GRID ========= */

.services-showcase {
  padding-top: 130px;
  padding-bottom: 130px;
  background: var(--bg);
}

.services-showcase__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 56px;
  align-items: start;
}

.services-showcase__intro {
  position: sticky;
  top: 92px;
}

.services-showcase__title {
  font-weight: 400;
  max-width: 520px;
  font-family: "HK Guise", sans-serif;
  font-size: 3.8rem;
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: #f4f4f4;
}

.services-showcase__text {
  max-width: 420px;
  margin-top: 24px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.services-cards-wrap {
  min-width: 0;
}

.services-cards-slider {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 290px;
  padding: 28px 26px 30px;
  border: 1px solid rgba(255, 122, 0, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 122, 0, 0.05), rgba(255, 122, 0, 0.015)),
    rgba(255, 255, 255, 0.01);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 122, 0, 0.12), transparent 42%);
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(255, 122, 0, 0.44);
  box-shadow:
    0 0 22px rgba(255, 122, 0, 0.11),
    0 0 52px rgba(255, 122, 0, 0.06);
}

.service-card__topline {
  width: 100%;
  height: 1px;
  margin-bottom: 22px;
  background: linear-gradient(to right, rgba(255, 122, 0, 0.85), rgba(255, 122, 0, 0));
}

.service-card__index {
  margin-bottom: 14px;
  font-family: "HK Guise", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.service-card__title {
  max-width: 320px;
  margin-bottom: 16px;
  font-family: "HK Guise", sans-serif;
  font-size: 1.95rem;
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: #fff;
}

.service-card__desc {
  max-width: 340px;
  font-size: 0.96rem;
  line-height: 1.58;
  color: var(--text-soft);
}

@media(max-width:1024px){
  .why-services__lead{
    font-size: 1.6rem;
  }
}

/* MANIFEST */
.services-manifest {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  /* background:
    radial-gradient(circle at 78% 28%, rgba(255,122,0,0.14), transparent 24%),
    radial-gradient(circle at 18% 78%, rgba(255,140,40,0.08), transparent 22%),
    #141414; */
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.services-manifest__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.services-manifest__bg::before,
.services-manifest__bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.7;
}

.services-manifest__bg::before {
  width: 560px;
  height: 560px;
  right: -120px;
  top: 10%;
  background: radial-gradient(
    circle,
    rgba(255,122,0,0.16),
    rgba(255,122,0,0.05) 45%,
    transparent 72%
  );
}

.services-manifest__bg::after {
  width: 460px;
  height: 460px;
  left: -140px;
  bottom: -120px;
  background: radial-gradient(
    circle,
    rgba(255,160,60,0.10),
    rgba(255,122,0,0.025) 42%,
    transparent 72%
  );
}

.services-manifest__inner {
  position: relative;
  min-height: 860px;
}

.services-manifest__kicker {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 42px;
}

.services-manifest .workflow-kicker__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 0 14px rgba(255,122,0,0.36),
    0 0 30px rgba(255,122,0,0.18);
}

.services-manifest .workflow-kicker__text {
  color: rgba(255,255,255,0.68);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services-manifest__center {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 3;
  width: min(760px, 100%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.services-manifest__title {
  margin: 0;
  /* font-family: "HK Guise", sans-serif; */

  font-weight: 400;
  font-size: 42px;
  line-height: 0.94;
  letter-spacing: -0.06em;
  color: #f3f3f3;
}

.services-manifest__title span {
  display: block;
  color: var(--accent);
}

.services-manifest__subtitle {
  max-width: 620px;
  margin: 26px auto 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.64);
}

.services-orbs {
  position: relative;
  min-height: 860px;
  z-index: 2;
}

.services-orb {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(255,122,0,0.40);
  background:
    radial-gradient(
      circle at 32% 28%,
      rgba(255,180,110,0.14),
      rgba(255,122,0,0.06) 34%,
      rgba(255,255,255,0.018) 56%,
      rgba(255,122,0,0.035) 78%,
      rgba(255,122,0,0.07) 100%
    ),
    rgba(255,255,255,0.02);
  box-shadow:
    inset 0 0 46px rgba(255,170,90,0.08),
    0 0 36px rgba(255,122,0,0.10),
    0 0 80px rgba(255,122,0,0.06);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(36px) scale(0.9);
  filter: blur(10px);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.services-orb::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 30%,
    rgba(255,180,100,0.16),
    rgba(255,122,0,0.04) 38%,
    transparent 72%
  );
  opacity: 0.95;
  pointer-events: none;
}

.services-orb__label {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 72%;
  font-family: "HK Guise", sans-serif;
  font-size: 1rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.services-orb:hover {
  transform: translateY(-6px) scale(1.025);
  border-color: rgba(255,140,40,0.72);
  box-shadow:
    inset 0 0 56px rgba(255,180,110,0.10),
    0 0 52px rgba(255,122,0,0.18),
    0 0 120px rgba(255,122,0,0.10);
}

.services-orb--1 {
  width: 220px;
  height: 220px;
  top: 48px;
  left: 60px;
}

.services-orb--2 {
  width: 270px;
  height: 270px;
  top: 10px;
  right: 180px;
}

.services-orb--3 {
  width: 190px;
  height: 190px;
  top: 350px;
  left: 0;
}

.services-orb--4 {
  width: 240px;
  height: 240px;
  top: 525px;
  left: 140px;
}

.services-orb--5 {
  width: 220px;
  height: 220px;
  top: 560px;
  right: 70px;
}

.services-orb--6 {
  width: 180px;
  height: 180px;
  top: 305px;
  right: 10px;
}

.services-orb--7 {
  width: 160px;
  height: 160px;
  top: 210px;
  left: 260px;
}

.services-manifest.is-visible .services-manifest__kicker {
  animation: manifestFadeUp 0.8s cubic-bezier(.22,.61,.36,1) forwards;
}

.services-manifest__center {
  opacity: 0;
}

.services-manifest.is-visible .services-manifest__center {
  animation: manifestFadeUpSoft 1s cubic-bezier(.22,.61,.36,1) 0.1s forwards;
}

.services-manifest.is-visible .services-orb--1 {
  animation:
    orbReveal 0.95s cubic-bezier(.22,.61,.36,1) 0.14s forwards,
    orbFloatStrongA 6.2s ease-in-out 1.3s infinite;
}

.services-manifest.is-visible .services-orb--2 {
  animation:
    orbReveal 0.95s cubic-bezier(.22,.61,.36,1) 0.24s forwards,
    orbFloatStrongB 7s ease-in-out 1.5s infinite;
}

.services-manifest.is-visible .services-orb--3 {
  animation:
    orbReveal 0.95s cubic-bezier(.22,.61,.36,1) 0.44s forwards,
    orbFloatStrongC 5.8s ease-in-out 1.7s infinite;
}

.services-manifest.is-visible .services-orb--4 {
  animation:
    orbReveal 0.95s cubic-bezier(.22,.61,.36,1) 0.64s forwards,
    orbFloatStrongB 7.8s ease-in-out 1.9s infinite;
}

.services-manifest.is-visible .services-orb--5 {
  animation:
    orbReveal 0.95s cubic-bezier(.22,.61,.36,1) 0.74s forwards,
    orbFloatStrongA 6.8s ease-in-out 2.1s infinite;
}

.services-manifest.is-visible .services-orb--6 {
  animation:
    orbReveal 0.95s cubic-bezier(.22,.61,.36,1) 0.54s forwards,
    orbFloatStrongD 5.6s ease-in-out 1.8s infinite;
}

.services-manifest.is-visible .services-orb--7 {
  animation:
    orbReveal 0.95s cubic-bezier(.22,.61,.36,1) 0.34s forwards,
    orbFloatStrongC 6.6s ease-in-out 1.6s infinite;
}

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

@keyframes manifestFadeUpSoft {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 22px));
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes orbReveal {
  from {
    opacity: 0;
    transform: translateY(36px) scale(0.9);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes orbFloatStrongA {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  25% { transform: translate3d(10px, -14px, 0) scale(1.015); }
  50% { transform: translate3d(-6px, -24px, 0) scale(1.02); }
  75% { transform: translate3d(-12px, -10px, 0) scale(1.01); }
}

@keyframes orbFloatStrongB {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  25% { transform: translate3d(16px, -8px, 0) scale(1.012); }
  50% { transform: translate3d(24px, 10px, 0) scale(1.018); }
  75% { transform: translate3d(8px, 18px, 0) scale(1.01); }
}

@keyframes orbFloatStrongC {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  25% { transform: translate3d(-10px, 14px, 0) scale(1.012); }
  50% { transform: translate3d(-22px, 6px, 0) scale(1.018); }
  75% { transform: translate3d(-8px, -16px, 0) scale(1.01); }
}

@keyframes orbFloatStrongD {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  20% { transform: translate3d(12px, -8px, 0) scale(1.01); }
  45% { transform: translate3d(6px, -20px, 0) scale(1.02); }
  70% { transform: translate3d(-14px, -6px, 0) scale(1.015); }
}

@media (max-width: 1200px) {
  .services-manifest__inner,
  .services-orbs {
    min-height: 760px;
  }

  .services-orb--1 { width: 190px; height: 190px; left: 30px; }
  .services-orb--2 { width: 230px; height: 230px; right: 40px; }
  .services-orb--3 { width: 160px; height: 160px; }
  .services-orb--4 { width: 200px; height: 200px; left: 90px; top: 520px; }
  .services-orb--5 { width: 190px; height: 190px; right: 40px; top: 540px; }
  .services-orb--6 { width: 160px; height: 160px; right: 150px; }
  .services-orb--7 { width: 140px; height: 140px; left: 210px; }
}

@media (max-width: 991px) {
  .services-manifest {
    padding: 100px 0 80px;
  }

  .services-manifest__inner,
  .services-orbs {
    min-height: 980px;
  }

  .services-manifest__center {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
    text-align: left;
    margin-bottom: 38px;
    opacity: 1;
  }

  .services-manifest.is-visible .services-manifest__center {
    animation: none;
  }

  .services-manifest__title {
    font-size: clamp(2.8rem, 7vw, 4.8rem);
    line-height: 0.96;
  }

  .services-manifest__subtitle {
    margin-left: 0;
    margin-right: 0;
    max-width: 560px;
  }

  .services-orbs {
    position: relative;
  }

  .services-orb {
    position: absolute;
  }

  .services-orb--1 {
    width: 180px;
    height: 180px;
    top: 40px;
    left: -10px;
  }

  .services-orb--2 {
    width: 220px;
    height: 220px;
    top: 120px;
    right: -20px;
  }

  .services-orb--3 {
    width: 150px;
    height: 150px;
    top: 430px;
    left: -30px;
  }

  .services-orb--4 {
    width: 200px;
    height: 200px;
    top: 680px;
    left: 20px;
  }

  .services-orb--5 {
    width: 180px;
    height: 180px;
    top: 720px;
    right: -10px;
  }

  .services-orb--6 {
    width: 150px;
    height: 150px;
    top: 380px;
    right: 40px;
  }

  .services-orb--7 {
    width: 130px;
    height: 130px;
    top: 240px;
    left: 160px;
  }

  .services-orb__label {
    font-size: 0.92rem;
    max-width: 74%;
  }
}

@media (max-width: 767px) {
  .services-manifest {
    padding: 76px 0;
  }

  .services-manifest__inner {
    min-height: 760px;
  }

  .services-manifest__kicker {
    margin-bottom: 24px;
  }

  .services-manifest__title {
    font-size: 2.6rem;
    line-height: 0.98;
  }

  .services-manifest__subtitle {
    margin-top: 16px;
    font-size: 0.94rem;
    line-height: 1.6;
    max-width: 100%;
  }

  .services-orbs {
    min-height: 560px;
    margin-top: 20px;
  }

  .services-orb {
    opacity: 0;
  }

  .services-orb--1 {
    width: 126px;
    height: 126px;
    top: 8px;
    left: -18px;
  }

  .services-orb--2 {
    width: 158px;
    height: 158px;
    top: 46px;
    right: -24px;
  }

  .services-orb--3 {
    width: 118px;
    height: 118px;
    top: 210px;
    left: -34px;
  }

  .services-orb--4 {
    width: 148px;
    height: 148px;
    top: 392px;
    left: 6px;
  }

  .services-orb--5 {
    width: 144px;
    height: 144px;
    top: 408px;
    right: -16px;
  }

  .services-orb--6 {
    width: 108px;
    height: 108px;
    top: 232px;
    right: 80px;
  }

  .services-orb--7 {
    width: 98px;
    height: 98px;
    top: 150px;
    left: 108px;
  }

  .services-orb__label {
    max-width: 78%;
    font-size: 0.82rem;
    line-height: 1.02;
  }

  .services-manifest.is-visible .services-orb--1 {
    animation:
      orbRevealMobileA 1.1s cubic-bezier(.22,.61,.36,1) 0.12s forwards,
      orbDriftMobileA 7s ease-in-out 1.4s infinite;
  }

  .services-manifest.is-visible .services-orb--2 {
    animation:
      orbRevealMobileB 1.1s cubic-bezier(.22,.61,.36,1) 0.26s forwards,
      orbDriftMobileB 8s ease-in-out 1.6s infinite;
  }

  .services-manifest.is-visible .services-orb--3 {
    animation:
      orbRevealMobileC 1.05s cubic-bezier(.22,.61,.36,1) 0.46s forwards,
      orbDriftMobileC 7.6s ease-in-out 1.9s infinite;
  }

  .services-manifest.is-visible .services-orb--4 {
    animation:
      orbRevealMobileA 1.05s cubic-bezier(.22,.61,.36,1) 0.66s forwards,
      orbDriftMobileD 8.2s ease-in-out 2.1s infinite;
  }

  .services-manifest.is-visible .services-orb--5 {
    animation:
      orbRevealMobileB 1.05s cubic-bezier(.22,.61,.36,1) 0.82s forwards,
      orbDriftMobileB 8.6s ease-in-out 2.3s infinite;
  }

  .services-manifest.is-visible .services-orb--6 {
    animation:
      orbRevealMobileC 1s cubic-bezier(.22,.61,.36,1) 0.54s forwards,
      orbDriftMobileC 6.8s ease-in-out 1.8s infinite;
  }

  .services-manifest.is-visible .services-orb--7 {
    animation:
      orbRevealMobileA 1s cubic-bezier(.22,.61,.36,1) 0.34s forwards,
      orbDriftMobileA 7.4s ease-in-out 1.7s infinite;
  }
}

@keyframes orbRevealMobileA {
  from {
    opacity: 0;
    transform: translate3d(-40px, 24px, 0) scale(0.82);
    filter: blur(12px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes orbRevealMobileB {
  from {
    opacity: 0;
    transform: translate3d(42px, -18px, 0) scale(0.82);
    filter: blur(12px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes orbRevealMobileC {
  from {
    opacity: 0;
    transform: translate3d(0, 42px, 0) scale(0.8);
    filter: blur(12px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes orbDriftMobileA {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  30% { transform: translate3d(12px, -10px, 0) scale(1.02); }
  60% { transform: translate3d(-8px, -22px, 0) scale(1.03); }
}

@keyframes orbDriftMobileB {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  35% { transform: translate3d(-14px, 8px, 0) scale(1.015); }
  65% { transform: translate3d(-24px, -10px, 0) scale(1.025); }
}

@keyframes orbDriftMobileC {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  25% { transform: translate3d(8px, 16px, 0) scale(1.018); }
  70% { transform: translate3d(18px, -8px, 0) scale(1.022); }
}

@keyframes orbDriftMobileD {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  20% { transform: translate3d(-10px, -8px, 0) scale(1.015); }
  50% { transform: translate3d(-20px, -22px, 0) scale(1.03); }
  75% { transform: translate3d(10px, -12px, 0) scale(1.018); }
}








@media (max-width: 1024px) {
  .services-showcase__title {
    font-size: 3.2rem;
  }


}

@media (max-width: 991px) {
  .services-hero__grid,
  .why-services__grid,
  .services-showcase__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .services-showcase__intro {
    position: static;
  }

  .why-services__list {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {



  .services-hero {
    padding-top: 96px;
  }

  .services-hero__title {
    font-size: 4.8rem;
  }

  .services-hero__text {
    margin-top: 22px;
    font-size: 0.96rem;
  }

  .services-dots {
    gap: 10px;
  }

  .service-dot {
    min-height: 52px;
    padding: 10px 12px;
  }

  .service-dot__label {
    font-size: 0.86rem;
  }

  .why-services,
  .services-showcase {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .why-services__lead {
    font-size: 2rem;
    line-height: 1.02;
  }

  .services-showcase__title {
    font-size: 3rem;
  }

  .services-cards-wrap {
    overflow: hidden;
  }

  .services-cards-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

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

  .service-card {
    flex: 0 0 84%;
    min-height: 260px;
    scroll-snap-align: start;
    padding: 24px 22px 26px;
  }

  .service-card__title {
    font-size: 1.7rem;
  }

  .service-card__desc {
    font-size: 0.94rem;
  }
}

@media (max-width: 767px) {
  .why-services__lead {
    font-size: 1.5rem;
    line-height: 1.02;
  }


  .why-item h3 {
    font-size: 1.2rem;
  }
}
/* =========================
   NEWS PAGE
========================= */

.news-page {
  background: var(--bg);
}


/* =========================
   NEWS HERO ANGLED
========================= */

.news-hero-angled {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 72px;
  /* background:
    radial-gradient(circle at 8% 42%, rgba(255, 122, 0, 0.11), transparent 25%),
    linear-gradient(180deg, #0d0d0f 0%, #111111 100%); */
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.04); */
  isolation: isolate;
}

/* мягко прячет возможный стык под хедером */
.news-hero-angled::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* background:
    linear-gradient(
      to bottom,
      rgba(13, 13, 15, 1) 0px,
      rgba(13, 13, 15, 1) 88px,
      rgba(13, 13, 15, 0.92) 120px,
      rgba(13, 13, 15, 0) 210px
    ); */
}

.news-hero-angled__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* glow */

.news-hero-angled__glow {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform, opacity;
}

.news-hero-angled__glow--one {
  width: 34rem;
  height: 34rem;
  left: -12rem;
  top: 12rem;
  background: radial-gradient(
    circle,
    rgba(255, 122, 0, 0.16) 0%,
    rgba(255, 122, 0, 0.09) 34%,
    rgba(255, 122, 0, 0.04) 50%,
    rgba(255, 122, 0, 0) 74%
  );
  opacity: 0.9;
  animation: newsHeroGlowOne 9s ease-in-out infinite;
}

.news-hero-angled__glow--two {
  width: 24rem;
  height: 24rem;
  right: -7rem;
  bottom: 1rem;
  background: radial-gradient(
    circle,
    rgba(255, 122, 0, 0.12) 0%,
    rgba(255, 122, 0, 0.06) 34%,
    rgba(255, 122, 0, 0.03) 50%,
    rgba(255, 122, 0, 0) 74%
  );
  opacity: 0.75;
  animation: newsHeroGlowTwo 7s ease-in-out infinite;
}

/* сетка */

.news-hero-angled__grid {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background:
    repeating-linear-gradient(
      to right,
      rgba(255, 255, 255, 0.06) 0px,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 120px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.04) 0px,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 80px
    );
}

/* диагональные фоновые линии */

.news-hero-angled__bg::before,
.news-hero-angled__bg::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 122, 0, 0.08);
  transform: rotate(45deg);
  pointer-events: none;
}

.news-hero-angled__bg::before {
  width: min(42vw, 620px);
  height: min(42vw, 620px);
  left: -9%;
  top: 25%;
  opacity: 0.55;
}

.news-hero-angled__bg::after {
  width: min(30vw, 430px);
  height: min(30vw, 430px);
  left: 30%;
  top: 18%;
  opacity: 0.35;
}

/* layout */

.news-hero-angled__inner {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 192px);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px 36px;
  align-items: center;
}

/* LEFT DIAMOND */

.news-hero-angled__media-wrap {
  position: relative;
  align-self: center;
  justify-self: start;
  padding-left: 10px;
  z-index: 1;
}

.news-hero-angled__media {
  position: relative;
  width: min(32vw, 470px);
  aspect-ratio: 1 / 1;
  transform: rotate(45deg);
  overflow: hidden;

  opacity: 0.2; /* сначала почти нет */
  animation: diamondFadeIn 0.8s ease forwards;
  animation-delay: 0.2s;
}

/* картинка */
.news-hero-angled__media img {
  width: 140%;
  height: 140%;
  object-fit: cover;
  transform: rotate(-45deg) translate(-15%, -15%);
}

/* ЛЕВЫЙ СЕГМЕНТ */
.news-hero-angled__media::before,
.news-hero-angled__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  pointer-events: none;
}

/* кусок 1 */
.news-hero-angled__media::before {
  background: rgba(255,255,255,0.04);

  clip-path: polygon(0 0, 100% 0, 70% 50%, 0 50%);
  
  transform: translateX(-120%) rotate(0deg);
  animation: pieceLeftIn 1s cubic-bezier(.22,1,.36,1) forwards;
}

/* кусок 2 */
.news-hero-angled__media::after {
  background: rgba(255,122,0,0.15);

  clip-path: polygon(70% 50%, 100% 0, 100% 100%, 70% 50%);
  
  transform: translateX(120%);
  animation: pieceRightIn 1s cubic-bezier(.22,1,.36,1) forwards;
  animation-delay: 0.15s;
}

/* .news-hero-angled__media:hover img {
  transform: rotate(-45deg) translate(-15%, -15%) scale(1.05);
} */

/* CONTENT CARD */

.news-hero-angled__content {
  position: relative;
  align-self: center;
  justify-self: end;
  width: min(100%, 680px);
  padding: 46px 40px 86px;
  background:
    linear-gradient(180deg, rgba(255, 122, 0, 0.045), rgba(255, 122, 0, 0.01)),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.38),
    inset 0 0 36px rgba(255, 255, 255, 0.015);
  z-index: 3;
  animation: heroPanelIn 1s cubic-bezier(.22, 1, .36, 1) .16s both;
}

.news-hero-angled__content::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(255, 122, 0, 0.95),
    rgba(255, 122, 0, 0.18) 55%,
    rgba(255, 122, 0, 0) 100%
  );
}


/* text */

.news-hero-angled .workflow-kicker {
  margin: 0 0 18px;
  font-family: "HK Guise", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.news-hero-angled__title {
  margin: 0;
  max-width: 610px;
  font-family: "HK Guise", sans-serif;
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.065em;
  color: #f3f3f3;
}

.news-hero-angled__title span {
  color: var(--accent);
}

.news-hero-angled__text {
	position:relative;
		z-index:10;
  max-width: 540px;
  margin-top: 24px;
  font-size: 1rem;
  line-height: 1.68;
  color: var(--text-soft);
}

/* tags */

.news-hero-angled__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.news-hero-angled__tags a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.02);
  color: #f2f2f2;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    border-color var(--transition),
    color var(--transition),
    background-color var(--transition),
    transform var(--transition);
}

.news-hero-angled__tags a:hover {
  border-color: rgba(255, 122, 0, 0.44);
  color: var(--accent);
  background: rgba(255, 122, 0, 0.04);
  transform: translateY(-1px);
}

/* RIGHT ACCENT IMAGE
   перенесена вниз-вправо, не мешает тексту */

.news-hero-angled__accent {
  position: absolute;
  right: 36px;
  bottom: -54px;
  width: min(16vw, 210px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  clip-path: polygon(36% 0, 100% 0, 64% 50%, 100% 100%, 36% 100%, 0 50%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0.74;
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  animation: heroAccentIn 1s cubic-bezier(.22, 1, .36, 1) .3s both;
}

.news-hero-angled__accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}

/* extra subtle line near accent */

.news-hero-angled__accent::after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: 16px;
  width: 110px;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0)
  );
}

/* animations */

@keyframes heroDiamondIn {
  0% {
    opacity: 0;
    transform: rotate(45deg) translateY(70px) scale(0.92);
    filter: blur(8px);
  }
  100% {
    opacity: 0.55;
    transform: rotate(45deg) translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes heroPanelIn {
  0% {
    opacity: 0;
    transform: translateY(80px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroAccentIn {
  0% {
    opacity: 0;
    transform: translateX(60px) scale(0.9);
    filter: blur(8px);
  }
  100% {
    opacity: 0.74;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
}

@keyframes newsHeroGlowOne {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.84;
  }
  50% {
    transform: translate3d(24px, -12px, 0) scale(1.08);
    opacity: 1;
  }
}

@keyframes newsHeroGlowTwo {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.62;
  }
  50% {
    transform: translate3d(-18px, 10px, 0) scale(1.1);
    opacity: 0.86;
  }
}
@keyframes pieceLeftIn {
  0% {
    transform: translateX(-120%) rotate(-10deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(0);
    opacity: 1;
  }
}

@keyframes pieceRightIn {
  0% {
    transform: translateX(120%) rotate(10deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(0);
    opacity: 1;
  }
}

@keyframes diamondFadeIn {
  to {
    opacity: 0.6;
  }
}
/* FEATURED */

.news-featured {
  padding-top: 48px;
  padding-bottom: 48px;
}

.news-featured-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  min-height: 620px;
  overflow: hidden;
  background: #101010;
  border: 1px solid rgba(255,255,255,0.06);
}

.news-featured-card__media {
  position: relative;
  overflow: hidden;
  min-height: 620px;
}

.news-featured-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.02), rgba(0,0,0,0.34)),
    linear-gradient(to top, rgba(0,0,0,0.18), rgba(0,0,0,0));
}

.news-featured-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.news-featured-card__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px 38px;
  background: linear-gradient(180deg, rgba(255,122,0,0.02), rgba(255,122,0,0.00));
}

.news-featured-card__content::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(255,122,0,0.85), rgba(255,122,0,0));
}

.news-featured-card__title {
  margin-top: 14px;
  font-family: "HK Guise", sans-serif;
  font-size: 3rem;
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: #fff;
}

.news-featured-card__desc {
  max-width: 420px;
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-soft);
}

.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.news-featured-card:hover .news-featured-card__media img {
  transform: scale(1.05);
}

.news-featured-card:hover .news-card__link .btn-arrow {
  transform: translateX(6px);
}

/* ARCHIVE */

.news-archive {
  padding-top: 42px;
  padding-bottom: 120px;
}

.news-archive__head {
  margin-bottom: 38px;
}

.news-archive__title {
  max-width: 760px;
  font-family: "HK Guise", sans-serif;
  font-size: 4.2rem;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: #f4f4f4;
}

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

.news-card {
  position: relative;
  min-width: 0;
  background: #111;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.news-card--large {
  grid-column: span 2;
}

.news-card__linkwrap {
  display: block;
  height: 100%;
}

.news-card__image {
  position: relative;
  overflow: hidden;
  background: #0e0e0e;
  aspect-ratio: 16 / 10;
}

.news-card--large .news-card__image {
  aspect-ratio: 16 / 8;
}

.news-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.18), rgba(0,0,0,0)),
    linear-gradient(to bottom, rgba(255,122,0,0.02), rgba(255,122,0,0));
  pointer-events: none;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease, filter 0.6s ease;
}

.news-card__body {
  position: relative;
  padding: 26px 24px 28px;
  background:
    linear-gradient(180deg, rgba(255,122,0,0.03), rgba(255,122,0,0.00)),
    #111;
}

.news-card__body::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(255,122,0,0.72), rgba(255,122,0,0));
}

.news-card__meta {
  font-size: 0.72rem;
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.48);
}

.news-card__title {
  margin-top: 12px;
  font-family: "HK Guise", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: #fff;
}

.news-card--large .news-card__title {
  max-width: 780px;
  font-size: 2.5rem;
}

.news-card__desc {
  max-width: 560px;
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.news-card__more {
  display: inline-flex;
  margin-top: 22px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
}

.news-card__more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.35s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,122,0,0.38);
  box-shadow:
    0 0 24px rgba(255,122,0,0.08),
    0 0 52px rgba(255,122,0,0.04);
}

.news-card:hover .news-card__image img {
  transform: scale(1.06);
  filter: saturate(1.04);
}

.news-card:hover .news-card__more::after {
  width: 100%;
}

/* RESPONSIVE */

@media (max-width: 1280px) {
 
  .news-archive__title {
    font-size: 3.6rem;
  }

  .news-featured-card__title {
    font-size: 2.5rem;
  }
}

@media (max-width: 1024px) {




  .news-featured-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .news-featured-card__media,
  .news-featured-card__media img {
    min-height: 420px;
  }

  .news-featured-card__title {
    font-size: 2.2rem;
  }

  .news-archive__title {
    font-size: 3rem;
  }

  .news-card__title {
    font-size: 1.8rem;
  }

  .news-card--large .news-card__title {
    font-size: 2.1rem;
  }
}

@media (max-width: 767px) {
 .news-hero-angled__glow--one {
  background: none;
 }

  .news-featured {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .news-featured-card__media,
  .news-featured-card__media img {
    min-height: 300px;
  }

  .news-featured-card__content {
    padding: 24px 20px 26px;
  }

  .news-featured-card__title {
    font-size: 1.8rem;
  }

  .news-featured-card__desc {
    font-size: 0.94rem;
  }

  .news-archive {
    padding-top: 26px;
    padding-bottom: 76px;
  }

  .news-archive__head {
    margin-bottom: 24px;
  }

  .news-archive__title {
    font-size: 2.3rem;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .news-card--large {
    grid-column: span 1;
  }

  .news-card__body {
    padding: 20px 18px 22px;
  }

  .news-card__title,
  .news-card--large .news-card__title {
    font-size: 1.55rem;
  }

  .news-card__desc {
    font-size: 0.92rem;
  }
}

/* RESPONSIVE  HERO*/



@media (max-width: 1280px) {
  .news-hero-angled__title {
    font-size: 4.2rem;
  }

  .news-hero-angled__content {
    width: min(100%, 620px);
    padding: 40px 34px 32px;
  }

  .news-hero-angled__media {
    width: min(30vw, 430px);
  }

  .news-hero-angled__accent {
    width: min(15vw, 185px);
    right: 24px;
  }
}

@media (max-width: 1100px) {
  .news-hero-angled__inner {
    grid-template-columns: 0.88fr 1.12fr;
    gap: 20px 26px;
  }

  .news-hero-angled__title {
    font-size: 3.7rem;
  }

  .news-hero-angled__media {
    width: min(28vw, 380px);
  }
}

@media (max-width: 991px) {
  .news-hero-angled {
    min-height: auto;
    padding-top: 108px;
    padding-bottom: 56px;
  }

  .news-hero-angled::before {
    background:
      linear-gradient(
        to bottom,
        rgba(13, 13, 15, 1) 0px,
        rgba(13, 13, 15, 1) 74px,
        rgba(13, 13, 15, 0) 150px
      );
  }

  .news-hero-angled__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 26px;
    align-items: start;
  }

  .news-hero-angled__content {
    order: 1;
    justify-self: start;
    width: 100%;
    padding: 30px 22px 24px;
  }

  

  .news-hero-angled__media-wrap {
    order: 2;
    padding-left: 0;
    margin-top: 8px;
  }

  .news-hero-angled__media {
    width: min(62vw, 320px);
    margin-left: 12px;
    opacity: 0.44;
  }

  .news-hero-angled__title {
    max-width: 100%;
    font-size: 3rem;
    line-height: 0.98;
  }

  .news-hero-angled__text {
    max-width: 100%;
    margin-top: 18px;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .news-hero-angled__tags {
    gap: 10px;
    margin-top: 22px;
  }

  .news-hero-angled__tags a {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .news-hero-angled__accent {
    width: 126px;
    right: -8px;
    bottom: -10px;
    opacity: 0.66;
  }

  .news-hero-angled__accent::after {
    display: none;
  }

  .news-hero-angled__bg::before {
    width: 72vw;
    height: 72vw;
    left: -22vw;
    top: 22%;
  }

  .news-hero-angled__bg::after {
    width: 48vw;
    height: 48vw;
    left: 62%;
    top: 8%;
  }
}

@media (max-width: 767px) {
  .news-hero-angled {
    padding-top: 102px;
    padding-bottom: 52px;
  }

  .news-hero-angled .workflow-kicker {
    margin-bottom: 14px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
  }

  .news-hero-angled__title {
    font-size: 2.55rem;
    line-height: 0.98;
    letter-spacing: -0.058em;
  }

  .news-hero-angled__text {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .news-hero-angled__content {
    padding: 26px 18px 22px;
  }

  .news-hero-angled__media {
    width: min(66vw, 260px);
    margin-left: 6px;
    opacity: 0.34;
  }

  .news-hero-angled__accent {
    width: 108px;
    right: -18px;
    bottom: -18px;
    opacity: 0.52;
  }

  .news-hero-angled__bg::before {
    width: 88vw;
    height: 88vw;
    left: -34vw;
    top: 34%;
    opacity: 0.32;
  }

  .news-hero-angled__bg::after {
    width: 54vw;
    height: 54vw;
    left: 64%;
    top: 14%;
    opacity: 0.22;
  }
}

@media (max-width: 420px) {
  .news-hero-angled__title {
    font-size: 2.2rem;
  }

  .news-hero-angled__tags {
    flex-direction: column;
    align-items: stretch;
  }

  .news-hero-angled__tags a {
    width: 100%;
    justify-content: center;
  }

  .news-hero-angled__media {
    width: 220px;
  }
}

/* =========================
   CONTACTS PAGE
========================= */
/* =========================
   CONTACTS PAGE — PREMIUM REDESIGN
========================= */

.contacts-page {
  background: var(--bg);
}

.projects-action.contact{
  justify-content: flex-start;
}
/* HERO */

/* =========================
   CONTACTS HERO — CONSTRUCTION SYSTEM
========================= */

.contacts-hero--premium {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding-top: 138px;
  padding-bottom: 86px;
  /* background:
    radial-gradient(circle at 82% 18%, rgba(255,122,0,0.10), transparent 24%),
    radial-gradient(circle at 14% 82%, rgba(255,255,255,0.03), transparent 22%),
    #141414; */
  isolation: isolate;
}

.contacts-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.contacts-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform, opacity;
}

.contacts-hero__glow--one {
  width: 34rem;
  height: 34rem;
  left: -10rem;
  top: 8rem;
  background: radial-gradient(
    circle,
    rgba(255,122,0,0.16) 0%,
    rgba(255,122,0,0.07) 36%,
    rgba(255,122,0,0) 74%
  );
  opacity: 0.82;
  animation: contactsGlowOne 10s ease-in-out infinite;
}

.contacts-hero__glow--two {
  width: 26rem;
  height: 26rem;
  right: -8rem;
  top: 10rem;
  background: radial-gradient(
    circle,
    rgba(255,122,0,0.12) 0%,
    rgba(255,122,0,0.05) 38%,
    rgba(255,122,0,0) 74%
  );
  opacity: 0.72;
  animation: contactsGlowTwo 8s ease-in-out infinite;
}

.contacts-hero__glow--three {
  width: 28rem;
  height: 28rem;
  right: 20%;
  bottom: -10rem;
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.05) 0%,
    rgba(255,255,255,0.015) 42%,
    rgba(255,255,255,0) 76%
  );
  opacity: 0.42;
  animation: contactsGlowThree 12s ease-in-out infinite;
}

.contacts-hero__inner {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 224px);
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: 36px;
  align-items: center;
}

.contacts-hero__copy {
  max-width: 620px;
}

.contacts-hero__title {
  margin: 0;
  font-family: "HK Guise", sans-serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.075em;
  color: #f3f3f3;
}

.contacts-hero__title span {
  display: block;
  color: var(--accent);
}

.contacts-hero__text {
  max-width: 520px;
  margin-top: 28px;
  font-size: 1.04rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
}

.contacts-hero__actions {
  margin-top: 34px;
}

/* CONSTRUCTION */

.contacts-construct {
  position: relative;
  min-height: 700px;
  width: 100%;
}

.contacts-construct__frame {
  position: absolute;
  border: 1px solid rgba(255,122,0,0.24);
  box-shadow:
    0 0 22px rgba(255,122,0,0.06),
    inset 0 0 16px rgba(255,122,0,0.03);
  opacity: 0;
}

.contacts-construct__frame--outer {
  top: 58px;
  right: 18px;
  width: 430px;
  height: 430px;
  animation: constructFrameIn 1s cubic-bezier(.22,.61,.36,1) 0.18s forwards,
             constructFloatA 10s ease-in-out 1.3s infinite;
}

.contacts-construct__frame--mid {
  top: 150px;
  right: 108px;
  width: 300px;
  height: 300px;
  animation: constructFrameIn 1s cubic-bezier(.22,.61,.36,1) 0.32s forwards,
             constructFloatB 8.5s ease-in-out 1.5s infinite;
}

.contacts-construct__frame--inner {
  top: 238px;
  right: 184px;
  width: 150px;
  height: 150px;
  animation: constructFrameIn 1s cubic-bezier(.22,.61,.36,1) 0.46s forwards,
             constructFloatC 7.8s ease-in-out 1.7s infinite;
}

.contacts-construct__line {
  position: absolute;
  display: block;
  background: linear-gradient(
    90deg,
    rgba(255,122,0,0.0),
    rgba(255,122,0,0.88),
    rgba(255,122,0,0.0)
  );
  box-shadow:
    0 0 16px rgba(255,122,0,0.24),
    0 0 34px rgba(255,122,0,0.10);
  opacity: 0;
}

.contacts-construct__line--h1 {
  top: 126px;
  right: 0;
  width: 260px;
  height: 1px;
  animation: constructLineX 1s cubic-bezier(.22,.61,.36,1) 0.52s forwards;
}

.contacts-construct__line--h2 {
  top: 498px;
  right: 96px;
  width: 210px;
  height: 1px;
  animation: constructLineX 1s cubic-bezier(.22,.61,.36,1) 0.72s forwards;
}

.contacts-construct__line--v1 {
  top: 86px;
  right: 220px;
  width: 1px;
  height: 190px;
  background: linear-gradient(
    180deg,
    rgba(255,122,0,0.0),
    rgba(255,122,0,0.88),
    rgba(255,122,0,0.0)
  );
  animation: constructLineY 1s cubic-bezier(.22,.61,.36,1) 0.62s forwards;
}

.contacts-construct__line--v2 {
  top: 340px;
  right: 420px;
  width: 1px;
  height: 170px;
  background: linear-gradient(
    180deg,
    rgba(255,122,0,0.0),
    rgba(255,122,0,0.88),
    rgba(255,122,0,0.0)
  );
  animation: constructLineY 1s cubic-bezier(.22,.61,.36,1) 0.86s forwards;
}

.contacts-construct__line--diag1 {
  top: 206px;
  right: 360px;
  width: 130px;
  height: 1px;
  transform: rotate(-36deg);
  transform-origin: right center;
  animation: constructLineDiag 1s cubic-bezier(.22,.61,.36,1) 0.9s forwards;
}

.contacts-construct__line--diag2 {
  top: 436px;
  right: 138px;
  width: 110px;
  height: 1px;
  transform: rotate(36deg);
  transform-origin: right center;
  animation: constructLineDiag 1s cubic-bezier(.22,.61,.36,1) 1.04s forwards;
}

/* CHIPS */

.contacts-construct__chip {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px 20px;
  border: 1px solid rgba(255,122,0,0.28);
  background:
    linear-gradient(180deg, rgba(255,122,0,0.05), rgba(255,122,0,0.015)),
    rgba(255,255,255,0.02);
  box-shadow:
    inset 0 0 22px rgba(255,122,0,0.035),
    0 0 28px rgba(255,122,0,0.08);
  backdrop-filter: blur(8px);
  opacity: 0;
}
.contacts-construct__chip.big{
  width: 250px;
}

.contacts-construct__chip::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(255,122,0,0.92),
    rgba(255,122,0,0.16) 55%,
    rgba(255,122,0,0) 100%
  );
}

.contacts-construct__chip--main {
  top: 260px;
  right: 126px;
  width: 330px;
  animation: constructChipIn 1s cubic-bezier(.22,.61,.36,1) 1.08s forwards,
             constructFloatB 9s ease-in-out 1.9s infinite;
}

.contacts-construct__chip--phone {
  top: 118px;
  right: 330px;
  width: 220px;
  animation: constructChipIn 1s cubic-bezier(.22,.61,.36,1) 1.18s forwards,
             constructFloatC 8s ease-in-out 2.1s infinite;
}

.contacts-construct__chip--meta {
  top: 500px;
  right: 40px;
  width: 240px;
  animation: constructChipIn 1s cubic-bezier(.22,.61,.36,1) 1.28s forwards,
             constructFloatA 9.5s ease-in-out 2.3s infinite;
}

.contacts-construct__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
}

.contacts-construct__value {
  font-family: "HK Guise", sans-serif;
  font-size: 1rem;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #f3f3f3;
}

.contacts-construct__chip--main .contacts-construct__value {
  font-size: 0.9rem;
  line-height: 0.96;
}

/* RESPONSIVE */

@media (max-width: 1280px) {
  .contacts-hero__title {
    font-size: 5.6rem;
  }
}

@media (max-width: 1100px) {
  .contacts-hero__inner {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: auto;
  }

  .contacts-construct {
    min-height: 620px;
  }

  .contacts-construct__frame--outer {
    right: 50px;
  }

  .contacts-construct__frame--mid {
    right: 130px;
  }

  .contacts-construct__frame--inner {
    right: 200px;
  }

  .contacts-construct__chip--main {
    right: 120px;
  }
}

@media (max-width: 991px) {
  .contacts-hero--premium {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 76px;
  }

  .contacts-hero__title {
    font-size: 4.4rem;
  }

  .contacts-construct {
    min-height: 560px;
  }

  .contacts-construct__frame--outer {
    top: 40px;
    right: 0;
    width: 340px;
    height: 340px;
  }

  .contacts-construct__frame--mid {
    top: 108px;
    right: 72px;
    width: 240px;
    height: 240px;
  }

  .contacts-construct__frame--inner {
    top: 178px;
    right: 132px;
    width: 120px;
    height: 120px;
  }

  .contacts-construct__line--h1 {
    top: 86px;
    width: 180px;
  }

  .contacts-construct__line--h2 {
    top: 404px;
    right: 58px;
    width: 160px;
  }

  .contacts-construct__line--v1 {
    top: 56px;
    right: 154px;
    height: 150px;
  }

  .contacts-construct__line--v2 {
    top: 262px;
    right: 326px;
    height: 130px;
  }

  .contacts-construct__line--diag1 {
    top: 154px;
    right: 280px;
    width: 90px;
  }

  .contacts-construct__line--diag2 {
    top: 352px;
    right: 106px;
    width: 82px;
  }

  .contacts-construct__chip--main {
    top: 198px;
    right: 64px;
    width: 270px;
  }

  .contacts-construct__chip--phone {
    top: 92px;
    right: 218px;
    width: 180px;
  }

  .contacts-construct__chip--meta {
    top: 398px;
    right: 0;
    width: 220px;
  }

  .contacts-construct__chip--main .contacts-construct__value {
    font-size: 0.8rem;
  }

  .contacts-construct__value {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .contacts-hero--premium {
    padding-top: 104px;
    padding-bottom: 64px;
  }

  .contacts-hero__title {
    font-size: 3rem;
    line-height: 0.94;
  }

  .contacts-hero__text {
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .contacts-hero__actions {
    margin-top: 26px;
  }

  .contacts-construct {
    min-height: 420px;
    margin-top: 6px;
  }

  .contacts-construct__frame--outer {
    top: 40px;
    right: -14px;
    width: 210px;
    height: 210px;
  }

  .contacts-construct__frame--mid {
    top: 88px;
    right: 28px;
    width: 150px;
    height: 150px;
  }

  .contacts-construct__frame--inner {
    top: 132px;
    right: 72px;
    width: 78px;
    height: 78px;
  }

  .contacts-construct__line--h1 {
    top: 76px;
    right: -10px;
    width: 110px;
  }

  .contacts-construct__line--h2 {
    top: 300px;
    right: 18px;
    width: 110px;
  }

  .contacts-construct__line--v1 {
    top: 54px;
    right: 92px;
    height: 92px;
  }

  .contacts-construct__line--v2 {
    top: 208px;
    right: 220px;
    height: 84px;
  }

  .contacts-construct__line--diag1 {
    top: 128px;
    right: 174px;
    width: 58px;
  }

  .contacts-construct__line--diag2 {
    top: 258px;
    right: 64px;
    width: 56px;
  }

  .contacts-construct__chip {
    padding: 12px 14px 14px;
  }

  .contacts-construct__chip--main {
    top: 152px;
    right: 18px;
    width: 206px;
  }

  .contacts-construct__chip--phone {
    top: 44px;
    right: 132px;
    width: 150px;
  }

  .contacts-construct__chip--meta {
    top: 308px;
    right: 0;
    width: 170px;
  }

  .contacts-construct__label {
    font-size: 0.56rem;
  }

  .contacts-construct__chip--main .contacts-construct__value {
    font-size: 0.8rem;
  }

  .contacts-construct__value {
    font-size: 0.68rem;
    line-height: 1.08;
  }
}

/* ANIMATIONS */

@keyframes contactsGlowOne {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.82;
  }
  50% {
    transform: translate3d(28px, -14px, 0) scale(1.08);
    opacity: 1;
  }
}

@keyframes contactsGlowTwo {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.68;
  }
  50% {
    transform: translate3d(-20px, 12px, 0) scale(1.08);
    opacity: 0.88;
  }
}

@keyframes contactsGlowThree {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.34;
  }
  50% {
    transform: translate3d(18px, -16px, 0) scale(1.12);
    opacity: 0.52;
  }
}

@keyframes constructFrameIn {
  from {
    opacity: 0;
    transform: scale(0.88);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes constructLineX {
  from {
    opacity: 0;
    width: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes constructLineY {
  from {
    opacity: 0;
    height: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes constructLineDiag {
  from {
    opacity: 0;
    width: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes constructChipIn {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes constructFloatA {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

@keyframes constructFloatB {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(8px, -6px, 0); }
}

@keyframes constructFloatC {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-8px, 8px, 0); }
}

/* MANIFEST */

.contacts-manifest {
  padding-top: 120px;
  padding-bottom: 120px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.contacts-manifest__grid {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.contacts-manifest__title {
  max-width: 980px;
  font-family: "HK Guise", sans-serif;
  font-size: 3.8rem;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: #f4f4f4;
}

.contacts-manifest__desc {
  max-width: 760px;
  margin-top: 24px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.contacts-manifest__notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 46px;
}

.contacts-note {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.contacts-note h3 {
  margin-bottom: 10px;
  font-family: "HK Guise", sans-serif;
  font-size: 1.22rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}

.contacts-note p {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--text-soft);
}

/* BOARD */

.contacts-board {
  padding-top: 124px;
  padding-bottom: 124px;
  background: var(--bg);
}

.contacts-board__head {
  margin-bottom: 44px;
}

.contacts-board__title {
  max-width: 700px;
  font-family: "HK Guise", sans-serif;
  font-size: 3.8rem;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: #f4f4f4;
}

.contacts-board__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}

.contact-card {
  position: relative;
  display: block;
  min-height: 230px;
  padding: 30px 28px 32px;
  border: 1px solid rgba(255,122,0,0.24);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,122,0,0.05), rgba(255,122,0,0.015)),
    rgba(255,255,255,0.01);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,122,0,0.12), transparent 42%);
  pointer-events: none;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,122,0,0.44);
  box-shadow:
    0 0 22px rgba(255,122,0,0.11),
    0 0 52px rgba(255,122,0,0.06);
}

.contact-card__kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-card__title {
  max-width: 420px;
  font-family: "HK Guise", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: #fff;
}

.contact-card__text {
  max-width: 420px;
  margin-top: 16px;
  font-size: 0.96rem;
  line-height: 1.62;
  color: var(--text-soft);
}

.contact-card--email {
  grid-column: span 7;
  min-height: 280px;
}

.contact-card--email .contact-card__title {
  font-size: 2.8rem;
}

.contact-card--phone {
  grid-column: span 5;
  min-height: 280px;
}

.contacts-board__grid .contact-card:nth-child(3),
.contacts-board__grid .contact-card:nth-child(4),
.contacts-board__grid .contact-card:nth-child(5) {
  grid-column: span 4;
}

/* RESPONSIVE */

@media (max-width: 1280px) {

  .contacts-manifest__title,
  .contacts-board__title {
    font-size: 3.2rem;
  }
}

@media (max-width: 1100px) {
  .contacts-hero__inner {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: auto;
  }

  .contacts-manifest__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .contacts-hero--premium {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 76px;
  }

  .contacts-hero__title {
    font-size: 4.4rem;
  }

  .contacts-manifest__title,
  .contacts-board__title {
    font-size: 2.8rem;
  }

  .contacts-manifest__notes {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contacts-board__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-card--email,
  .contact-card--phone,
  .contacts-board__grid .contact-card:nth-child(3),
  .contacts-board__grid .contact-card:nth-child(4),
  .contacts-board__grid .contact-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 767px) {
  .contacts-hero--premium {
    padding-top: 104px;
    padding-bottom: 64px;
  }

  .contacts-hero__title {
    font-size: 3rem;
    line-height: 0.94;
  }

  .contacts-hero__text {
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .contacts-hero__actions {
    margin-top: 26px;
  }

  .contacts-manifest {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .contacts-manifest__title,
  .contacts-board__title {
    font-size: 2.15rem;
    line-height: 0.98;
  }

  .contacts-manifest__desc {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .contacts-note p {
    font-size: 0.94rem;
  }

  .contacts-board {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .contacts-board__head {
    margin-bottom: 28px;
  }

  .contacts-board__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-card {
    min-height: 190px;
    padding: 24px 20px 24px;
  }

  .contact-card--email,
  .contact-card--phone {
    min-height: 220px;
  }

  .contact-card__title {
    font-size: 1.7rem;
  }

  .contact-card--email .contact-card__title {
    font-size: 1.5rem;
  }

  .contact-card__text {
    font-size: 0.94rem;
    line-height: 1.58;
  }
}

/* ANIMATIONS (оставляем только glow, удаляем orb) */

@keyframes contactsGlowOne {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.82;
  }
  50% {
    transform: translate3d(28px, -14px, 0) scale(1.08);
    opacity: 1;
  }
}

@keyframes contactsGlowTwo {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.68;
  }
  50% {
    transform: translate3d(-20px, 12px, 0) scale(1.08);
    opacity: 0.88;
  }
}

@keyframes contactsGlowThree {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.34;
  }
  50% {
    transform: translate3d(18px, -16px, 0) scale(1.12);
    opacity: 0.52;
  }
}
/* Title anomatiom */

.reveal-title {
  display: block;
}

.reveal-title .line {
  display: block;
  overflow: hidden;

  opacity: 0;
  transform: translate3d(0, 60px, 0) scale(0.96);
  filter: blur(10px);

  transition:
    transform 1s cubic-bezier(.22,.61,.36,1),
    opacity 1s cubic-bezier(.22,.61,.36,1),
    filter 1s cubic-bezier(.22,.61,.36,1);
}

/* вторая строка чуть позже и мягче */
.reveal-title .line--delay {
  transition-delay: 0.18s;
}

/* активное состояние */
.reveal-title.is-visible .line {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}


/* orange line trough screen */
.workflow-kicker.reveal-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.workflow-kicker__dot {
  position: relative;
  z-index: 2;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0;
  transform: scale(0.2);
  box-shadow: 0 0 0 rgba(255, 122, 0, 0);
}

.workflow-kicker__trail {
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  border-radius: 999px;
  transform: translateY(-50%);
  /* opacity: 0; */

  background: linear-gradient(
    to right,
    rgba(255, 122, 0, 1) 0%,
    rgba(255, 122, 0, 0.5) 55%,
    rgba(255, 122, 0, 0) 100%
  );

  box-shadow:
    0 0 14px rgba(255, 122, 0, 0.45),
    0 0 28px rgba(255, 122, 0, 0.18);
}

.workflow-kicker__text {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  filter: blur(6px);
  transition:
    opacity 0.6s cubic-bezier(.22,.61,.36,1),
    transform 0.6s cubic-bezier(.22,.61,.36,1),
    filter 0.6s cubic-bezier(.22,.61,.36,1);
}

.reveal-kicker.is-visible .workflow-kicker__dot {
  animation: kickerDotIn 0.42s cubic-bezier(.22,.61,.36,1) forwards;
}

.reveal-kicker.is-visible .workflow-kicker__trail {
  animation: kickerTrail 0.75s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: 0.1s;
}

.reveal-kicker.is-visible .workflow-kicker__text {
  opacity: 1;
  transform: translateY(1px);
  filter: blur(0);
  transition-delay: 0.24s;
}

@keyframes kickerDotIn {
  0% {
    opacity: 0;
    transform: scale(0.2);
    box-shadow: 0 0 0 rgba(255, 122, 0, 0);
  }

  65% {
    opacity: 1;
    transform: scale(1.25);
    box-shadow:
      0 0 16px rgba(255, 122, 0, 0.6),
      0 0 30px rgba(255, 122, 0, 0.22);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow:
      0 0 10px rgba(255, 122, 0, 0.35),
      0 0 18px rgba(255, 122, 0, 0.12);
  }
}

@keyframes kickerTrail {
  0% {
    width: 0;
    opacity: 0;
  }

  22% {
    width: 80px;
    opacity: 1;
  }

  55% {
    width: 170px;
    opacity: 1;
  }

  100% {
    width: 220px;
    opacity: 0;
  }
}

/* икогнки для соцсетей */

.social-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.social-icon {
  width: 44px;
  height: 44px;

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

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);

  color: rgba(255,255,255,0.6);

  transition: all 0.3s ease;
}

.social-icon svg {
  width: 22px;
  height: 22px;
}

.social-icon:hover {
  color: #ff7a00;
  border-color: rgba(255,122,0,0.5);

  transform: translateY(-2px);

  box-shadow:
    0 0 12px rgba(255,122,0,0.3),
    0 0 28px rgba(255,122,0,0.12);
}


/* who we are */

.who {
  padding: 120px 0;
  border-top: 1px solid var(--line);
}

.who-head {
  max-width: 640px;
  margin-bottom: 70px;
}

.who-title {
  font-family: "HK Guise";
  font-size: 3.6rem;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.who-sub {
  margin-top: 18px;
  color: var(--text-soft);
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.who-card {
  position: relative;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.who-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

.who-index {
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 12px;
}
.who-avatar {
  width: 110px;
  height: 110px;
  margin-bottom: 16px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #ff7a00, #ff9a3d);
}

.who-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
	object-position: top center;
  background: #000;
}

.who-card h3 {
 
  font-size: 1.8rem;
}

.who-card span {
  display: block;
  margin-top: 4px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.who-card p {
  margin-top: 14px;
  max-width: 320px;
  color: var(--text-soft);
}

@media (max-width: 991px) {
  .who-grid {
    grid-template-columns: 1fr;
  }
	.who-avatar {
    width: 100px;
    height: 100px;
  }
}

/* 
стили для новостей */


/* =========================
   NEWS SINGLE
========================= */

.news-single {
  background: var(--bg);
  padding-top: 180px;
  padding-bottom: 120px;
}

.news-single .container {
  max-width: 920px;
}

.news-meta {
  margin-bottom: 20px;
  font-size: 0.78rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.news-title {
  margin: 0;
  max-width: 900px;
  font-family: "HK Guise", sans-serif;
  font-size: 4.6rem;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.065em;
  color: #f3f3f3;
}

.news-lead {
  max-width: 760px;
  margin-top: 32px;
  font-size: 1.5rem;
  line-height: 1.32;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.82);
}

.news-content {
  max-width: 760px;
  margin-top: 56px;
}

.news-content h2 {
  margin-top: 56px;
  margin-bottom: 18px;
  font-family: "HK Guise", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: #ffffff;
}

.news-content p {
  margin: 0 0 22px;
  font-size: 1.06rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.news-content strong {
  color: #ffffff;
  font-weight: 600;
}

.news-content a {
  color: var(--accent);
}

.news-content ul,
.news-content ol {
  margin: 24px 0 24px 20px;
  color: rgba(255, 255, 255, 0.72);
}

.news-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* optional top divider */
.news-single::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(255, 122, 0, 0.22),
    rgba(255, 122, 0, 0)
  );
  position: absolute;
  left: 0;
  top: 110px;
  pointer-events: none;
  opacity: 0.7;
}

.news-single {
  position: relative;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1280px) {
  .news-title {
    font-size: 4rem;
  }
}

@media (max-width: 991px) {
  .news-single {
    padding-top: 150px;
    padding-bottom: 90px;
  }

  .news-title {
    font-size: 3.2rem;
  }

  .news-lead {
    margin-top: 24px;
    font-size: 1.28rem;
    line-height: 1.35;
  }

  .news-content {
    margin-top: 42px;
  }

  .news-content h2 {
    margin-top: 42px;
    font-size: 1.7rem;
  }

  .news-content p {
    font-size: 1rem;
    line-height: 1.75;
  }
}

@media (max-width: 767px) {
  .news-single {
    padding-top: 118px;
    padding-bottom: 72px;
  }

  .news-single .container {
    width: min(100% - 24px, 920px);
  }

  .news-meta {
    margin-bottom: 16px;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }

  .news-title {
    font-size: 2.45rem;
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  .news-lead {
    margin-top: 18px;
    font-size: 1.08rem;
    line-height: 1.45;
  }

  .news-content {
    margin-top: 34px;
  }

  .news-content h2 {
    margin-top: 34px;
    margin-bottom: 14px;
    font-size: 1.45rem;
  }

  .news-content p {
    margin-bottom: 18px;
    font-size: 0.96rem;
    line-height: 1.72;
  }
}

.news-back {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.25s ease;
}

.news-back:hover {
  color: var(--accent);
}

.news-cover {
  margin-top: 40px;
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 6px;
}

.news-cover img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   404
========================= */

.error-404 {
  position: relative;
  min-height: 100vh;
  padding-top: 160px;
  padding-bottom: 120px;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 122, 0, 0.08), transparent 24%),
    radial-gradient(circle at 80% 70%, rgba(255, 122, 0, 0.05), transparent 22%),
    var(--bg);
  overflow: hidden;
}

.error-404::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015), transparent 20%),
    linear-gradient(to top, rgba(255, 122, 0, 0.03), transparent 30%);
  pointer-events: none;
}

.error-404__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.error-404__kicker {
  margin-bottom: 18px;
  font-size: 0.78rem;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.error-404__code {
  font-family: "HK Guise", sans-serif;
  font-size: clamp(7rem, 16vw, 14rem);
  line-height: 0.82;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.08);
  margin-bottom: 12px;
  user-select: none;
}

.error-404__title {
  max-width: 620px;
  font-family: "HK Guise", sans-serif;
  font-size: 4.2rem;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.06em;
  color: #f3f3f3;
}

.error-404__text {
  max-width: 560px;
  margin-top: 24px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.66);
}

.error-404__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 42px;
}

.error-404__link {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.58);
  transition: color var(--transition), opacity var(--transition);
}

.error-404__link:hover {
  color: var(--accent);
}

@media (max-width: 991px) {
  .error-404 {
    padding-top: 140px;
    padding-bottom: 90px;
  }

  .error-404__title {
    font-size: 3.1rem;
  }
}

@media (max-width: 767px) {
  .error-404 {
    min-height: calc(100vh - 40px);
    padding-top: 110px;
    padding-bottom: 72px;
  }

  .error-404__title {
    font-size: 2.3rem;
    line-height: 0.98;
  }

  .error-404__text {
    margin-top: 18px;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .error-404__actions {
    margin-top: 32px;
    gap: 14px 20px;
  }
}





@media (min-width: 1025px) and (max-height: 900px) {
  .hero.hero-community {
    min-height: 760px;
    height: 100vh;
    padding-top: 90px;
    padding-left: 80px;
  }

  .hero.hero-community h1 {
    max-width: 520px;
    font-size: 72px;
    line-height: 0.95;
    position: relative;
    z-index: 3;
  }

  .hero.hero-community .social {
    transform: scale(0.72);
    transform-origin: right bottom;
    right: 0px;
    bottom: 0px;
  }
}

@media (min-width: 1025px) and (max-height: 780px) {
  .hero.hero-community {
    min-height: 700px;
    padding-top: 80px;
    padding-left: 60px;
  }

  .hero.hero-community h1 {
    max-width: 460px;
    font-size: 60px;
  }

  .hero.hero-community .social {
    transform: scale(0.62);
    transform-origin: right bottom;
    right: 0px;
    bottom: 0px;
  }
}
@media (max-width: 430px) {
  .hero.hero-community {
    padding-top: 132px;
    padding-bottom: 345px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero.hero-community h1 {
    width: auto;
    max-width: 300px;
    font-size: 64px;
    line-height: 0.95;
  }

  .hero.hero-community .social {
    width: 760px;
    height: 558px;
    transform: scale(0.42);
    transform-origin: right bottom;
    right: 0px;
    bottom: 0;
    margin-bottom: 18px;
  }

  .hero.hero-community .social > div > a > span {
    font-size: 20px;
  }

  .hero.hero-community .social > div:nth-child(3) > a > span,
  .hero.hero-community .social > div:nth-child(7) > a > span {
    font-size: 20px;
  }
}