:root {
  --ink: #202124;
  --text: #3c4043;
  --muted: #6f7478;
  --soft: #f6f7f8;
  --soft-warm: #f8f9fa;
  --line: #e8eaed;
  --gold: #ffb500;
  --gold-soft: #fff1c2;
  --network: #8d98a6;
  --accent-text: #5f6368;
  --white: #ffffff;
  --shadow: 0 14px 36px rgba(60, 64, 67, 0.08);
  --container: 1080px;
  --radius: 14px;
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --time-soft: 0.58s;
}

* {
  box-sizing: border-box;
}

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

body {
  position: relative;
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 1px 1px, rgba(141, 152, 166, 0.16) 1px, transparent 0) 0 0 / 22px 22px,
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 44%, #ffffff 100%);
  line-height: 1.62;
  overflow-x: hidden;
}

main p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(255, 181, 0, 0.08) 18.1% 18.28%, transparent 18.38% 100%),
    linear-gradient(155deg, transparent 0 64%, rgba(141, 152, 166, 0.095) 64.1% 64.22%, transparent 64.32% 100%),
    linear-gradient(28deg, transparent 0 76%, rgba(255, 181, 0, 0.055) 76.1% 76.26%, transparent 76.36% 100%);
  transform: translate3d(calc(var(--mouse-x, 0) * -6px), calc(var(--mouse-y, 0) * -6px), 0);
  transition: transform 0.85s var(--ease-soft);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 22%, rgba(255, 181, 0, 0.11) 0 2px, transparent 2.8px),
    radial-gradient(circle at 27% 16%, rgba(141, 152, 166, 0.18) 0 1.5px, transparent 2.4px),
    radial-gradient(circle at 46% 29%, rgba(255, 181, 0, 0.12) 0 2px, transparent 2.8px),
    radial-gradient(circle at 70% 18%, rgba(141, 152, 166, 0.16) 0 1.5px, transparent 2.4px),
    radial-gradient(circle at 82% 36%, rgba(255, 181, 0, 0.1) 0 2px, transparent 2.8px),
    radial-gradient(circle at 18% 72%, rgba(141, 152, 166, 0.14) 0 1.5px, transparent 2.4px),
    radial-gradient(circle at 58% 78%, rgba(255, 181, 0, 0.1) 0 2px, transparent 2.8px),
    radial-gradient(circle at 88% 82%, rgba(141, 152, 166, 0.14) 0 1.5px, transparent 2.4px);
  transform: translate3d(calc(var(--mouse-x, 0) * 10px), calc(var(--mouse-y, 0) * 10px), 0);
  transition: transform 0.9s var(--ease-soft);
}

body.nav-open {
  overflow: hidden;
}

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

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.scroll-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 2px;
  background: var(--gold);
  transform-origin: left;
  transition: width 0.08s linear;
}

.nav-wrapper {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: auto;
  height: 42px;
  border-radius: 8px;
  transition: transform var(--time-soft) var(--ease-soft), filter var(--time-soft) var(--ease-soft);
}

.brand:hover .brand-logo {
  filter: drop-shadow(0 8px 14px rgba(255, 181, 0, 0.18));
  transform: translateY(-1px);
}

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

.main-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  transition: color 0.32s var(--ease-soft);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.36s var(--ease-soft);
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--ink);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.section {
  padding: 82px 0;
}

.hero {
  position: relative;
  padding: 72px 0 78px;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 181, 0, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(251, 251, 251, 0.88) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(128deg, transparent 0 52%, rgba(141, 152, 166, 0.12) 52.08% 52.18%, transparent 52.28% 100%),
    linear-gradient(38deg, transparent 0 37%, rgba(255, 181, 0, 0.12) 37.08% 37.28%, transparent 37.38% 100%),
    radial-gradient(circle at 74% 24%, rgba(255, 181, 0, 0.16) 0 3px, transparent 3.8px),
    radial-gradient(circle at 85% 42%, rgba(141, 152, 166, 0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 62% 62%, rgba(255, 181, 0, 0.13) 0 2.5px, transparent 3.4px);
  transform: translate3d(calc(var(--mouse-x, 0) * 14px), calc(var(--mouse-y, 0) * 14px), 0);
  transition: transform 0.9s var(--ease-soft);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: var(--accent-text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-tag::before {
  content: "";
  width: 24px;
  height: 2px;
  margin-right: 10px;
  background: var(--gold);
}

.hero h1,
.section h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(2.05rem, 4.4vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 13ch;
}

.hero-text {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions,
.profile-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--time-soft) var(--ease-soft),
    border-color var(--time-soft) var(--ease-soft),
    background var(--time-soft) var(--ease-soft),
    box-shadow var(--time-soft) var(--ease-soft);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 35%, rgba(255, 255, 255, 0.38) 45%, transparent 55% 100%);
  transform: translateX(-120%);
  transition: transform 0.75s var(--ease-soft);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn-primary:hover {
  box-shadow: 0 10px 22px rgba(255, 181, 0, 0.24);
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

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

.hero-panel {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.62s var(--ease-soft), box-shadow 0.5s var(--ease-soft);
  will-change: transform;
}

.hero-panel:hover {
  box-shadow: 0 18px 44px rgba(60, 64, 67, 0.12);
}

.hero-panel::before {
  display: none;
}

.hero-panel::after {
  display: none;
}

.hero-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.34);
  pointer-events: none;
}

.hero-image > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  transform: scale(1.025) translate3d(calc(var(--mouse-x, 0) * -8px), calc(var(--mouse-y, 0) * -8px), 0);
  transition: transform 0.95s var(--ease-soft), filter 0.5s var(--ease-soft);
}

.hero-watermark {
  position: absolute;
  z-index: 2;
  right: -58px;
  bottom: -62px;
  width: min(98%, 560px);
  height: auto;
  opacity: 0.5;
  filter: brightness(1.45) contrast(1.12) drop-shadow(0 12px 30px rgba(0, 0, 0, 0.34));
  mix-blend-mode: screen;
  pointer-events: none;
  transform: none;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.metric-card {
  min-height: 100px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.metric-card:last-child {
  border-right: 0;
}

.metric-label {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.28;
}

.consultor-section,
.help-section {
  background: rgba(255, 255, 255, 0.86);
}

.consultor-section {
  position: relative;
  overflow: hidden;
}

.consultor-section h2 {
  max-width: 460px;
  font-size: clamp(1.95rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.consultor-icon {
  width: clamp(140px, 16vw, 240px);
  height: auto;
  margin-top: 10px;
  opacity: 0.9;
  filter: drop-shadow(0 18px 28px rgba(60, 64, 67, 0.1));
  transform: translateY(-10px);
}

.consultor-layout,
.help-layout,
.profile-layout,
.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: start;
}

.section h2 {
  max-width: 720px;
  font-size: clamp(1.75rem, 3.2vw, 3rem);
}

.section p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.consultor-content {
  display: grid;
  gap: 28px;
  max-width: 720px;
}

.statement-block {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  padding: 2px 0 2px 34px;
  border: 0;
  border-left: 3px solid var(--gold);
  border-radius: 0;
  background: transparent;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition:
    transform 0.62s var(--ease-soft),
    border-color 0.5s var(--ease-soft),
    box-shadow 0.5s var(--ease-soft);
}

.statement-block:hover {
  border-color: var(--gold);
  box-shadow: none;
}

.statement-block::after {
  content: "";
  position: absolute;
  right: 6px;
  top: -14px;
  width: 92px;
  height: 92px;
  opacity: 0.36;
  background:
    radial-gradient(circle at center, rgba(255, 181, 0, 0.28) 0 1.3px, transparent 2.2px) 0 0 / 12px 12px;
  pointer-events: none;
}

.statement-block p {
  color: var(--ink);
  max-width: 660px;
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.62;
  letter-spacing: 0;
}

.consultor-content > p {
  position: relative;
  max-width: 650px;
  padding: 22px 0 0 34px;
  border-top: 1px solid var(--line);
}

.consultor-content > p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 31px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(255, 181, 0, 0.12);
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(246, 247, 248, 0.92), rgba(246, 247, 248, 0.88)),
    radial-gradient(circle at 1px 1px, rgba(141, 152, 166, 0.14) 1px, transparent 0) 0 0 / 18px 18px;
  color: var(--ink);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 30px;
}

.cards {
  display: grid;
  gap: 16px;
}

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

.info-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition:
    transform 0.62s var(--ease-soft),
    box-shadow 0.5s var(--ease-soft),
    border-color 0.5s var(--ease-soft);
  will-change: transform;
}

.info-card::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(255, 181, 0, 0.2) 0 1.5px, transparent 2.3px) 0 0 / 12px 12px;
}

.info-card:hover {
  border-color: rgba(255, 181, 0, 0.42);
  box-shadow: 0 16px 34px rgba(60, 64, 67, 0.08);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-2px);
}

.card-number {
  display: block;
  margin-bottom: 38px;
  color: var(--accent-text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.info-card h3,
.service-item h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.3;
}

.info-card p {
  color: var(--muted);
}

.help-layout {
  grid-template-columns: 0.9fr 1.1fr;
}

.sticky-heading {
  position: sticky;
  top: 98px;
  margin-bottom: 0;
}

.sticky-heading p:last-child {
  margin-top: 20px;
  max-width: 520px;
}

.service-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.service-item {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.72s var(--ease-soft), background-color 0.72s var(--ease-soft);
}

.service-item:hover {
  border-color: rgba(255, 181, 0, 0.38);
}

.service-item > span,
.service-item > div {
  transition: transform 0.72s var(--ease-soft), color 0.72s var(--ease-soft);
}

.service-item:hover > span,
.service-item:hover > div {
  transform: translateX(8px);
}

.service-item h3 {
  transition: color 0.72s var(--ease-soft);
}

.service-item:hover h3 {
  color: var(--ink);
}

.service-item::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50px;
  bottom: -14px;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 181, 0, 0.36), transparent);
}

.service-item:last-child::before {
  display: none;
}

.service-item span {
  color: var(--accent-text);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.profile-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(251, 251, 251, 0.98), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 1px 1px, rgba(141, 152, 166, 0.13) 1px, transparent 0) 0 0 / 20px 20px;
}

.profile-section::before {
  content: "";
  position: absolute;
  right: max(24px, calc((100vw - var(--container)) / 2));
  top: 58px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(255, 181, 0, 0.16) 0 2px, transparent 2.7px) 0 0 / 16px 16px;
  opacity: 0.55;
  pointer-events: none;
}

.profile-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  align-items: center;
  gap: 34px;
}

.profile-visual {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(232, 234, 237, 0.9);
  border-radius: 26px;
  background: var(--soft);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.62s var(--ease-soft), box-shadow 0.5s var(--ease-soft);
  will-change: transform;
  box-shadow: 0 24px 70px rgba(60, 64, 67, 0.1);
}

.profile-visual:hover {
  box-shadow: 0 30px 86px rgba(60, 64, 67, 0.13);
}

.profile-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.28)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 38%);
  pointer-events: none;
}

.profile-visual::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background:
    url("../files/logo-epg/huev.png") center / 36px auto no-repeat,
    rgba(255, 181, 0, 0.94);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
  animation: pulseMark 4.5s ease-in-out infinite;
}

.profile-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 45%;
  filter: saturate(0.92) contrast(1.04);
}

.profile-content {
  align-self: center;
  padding: clamp(26px, 3.2vw, 40px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 46px rgba(60, 64, 67, 0.07);
}

.profile-content h2 {
  max-width: 100%;
  white-space: nowrap;
}

.profile-content .section-tag {
  margin-bottom: 2px;
}

.profile-content h2 span {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.12em;
}

.profile-content h3 {
  display: inline-flex;
  margin: 12px 0 26px;
  padding: 0 0 0 14px;
  border-left: 3px solid var(--gold);
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 600;
}

.profile-content p:not(.section-tag) {
  max-width: 700px;
  margin-bottom: 14px;
  color: var(--text);
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
    linear-gradient(34deg, transparent 0 42%, rgba(255, 181, 0, 0.12) 42.08% 42.28%, transparent 42.38% 100%),
    radial-gradient(circle at 1px 1px, rgba(141, 152, 166, 0.13) 1px, transparent 0) 0 0 / 22px 22px;
}

.contact-grid {
  grid-template-columns: 1fr minmax(300px, 0.68fr);
  align-items: start;
}

.contact-copy p:not(.section-tag) {
  max-width: 580px;
  margin-top: 20px;
}

.contact-logo {
  position: relative;
  width: min(340px, 72vw);
  height: auto;
  margin-top: 34px;
  padding: 18px 20px;
  border: 1px solid rgba(232, 234, 237, 0.9);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 181, 0, 0.14), rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 1px 1px, rgba(141, 152, 166, 0.16) 1px, transparent 0) 0 0 / 14px 14px,
    rgba(255, 255, 255, 0.82);
  box-shadow:
    0 18px 42px rgba(60, 64, 67, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.58s var(--ease-soft), box-shadow 0.58s var(--ease-soft);
}

.contact-logo:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 56px rgba(60, 64, 67, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.contact-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 181, 0, 0.07), rgba(255, 255, 255, 0) 42%),
    var(--soft-warm);
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition:
    transform 0.62s var(--ease-soft),
    border-color 0.5s var(--ease-soft),
    box-shadow 0.5s var(--ease-soft);
}

.contact-card:hover {
  border-color: rgba(255, 181, 0, 0.36);
  box-shadow: 0 16px 34px rgba(60, 64, 67, 0.08);
}

.contact-card::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 92px;
  height: 92px;
  opacity: 0.5;
  background:
    linear-gradient(135deg, transparent 0 47%, rgba(141, 152, 166, 0.16) 47.4% 48%, transparent 48.4% 100%),
    radial-gradient(circle at center, rgba(255, 181, 0, 0.2) 0 1.5px, transparent 2.3px) 0 0 / 12px 12px;
  pointer-events: none;
}

.contact-item {
  padding: 0 0 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(32, 33, 36, 0.1);
}

.contact-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.contact-label {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item a {
  display: inline-block;
  max-width: 100%;
  color: var(--ink);
  font-size: clamp(1rem, 1.25vw, 1.28rem);
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-item a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
}

.footer-wrapper {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-wrapper p {
  margin: 0;
}

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

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

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

.section-reveal .eyebrow,
.section-reveal .section-tag,
.section-reveal h1,
.section-reveal h2,
.section-reveal .hero-text,
.section-reveal .hero-actions,
.section-reveal .hero-panel,
.section-reveal .statement-block,
.section-reveal .consultor-content > p,
.section-reveal .info-card,
.section-reveal .service-item,
.section-reveal .profile-visual,
.section-reveal .profile-content > h3,
.section-reveal .profile-content > p:not(.section-tag),
.section-reveal .profile-buttons,
.section-reveal .contact-card {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

.section-reveal.is-visible .eyebrow,
.section-reveal.is-visible .section-tag,
.section-reveal.is-visible h1,
.section-reveal.is-visible h2,
.section-reveal.is-visible .hero-text,
.section-reveal.is-visible .hero-actions,
.section-reveal.is-visible .hero-panel,
.section-reveal.is-visible .statement-block,
.section-reveal.is-visible .consultor-content > p,
.section-reveal.is-visible .info-card,
.section-reveal.is-visible .service-item,
.section-reveal.is-visible .profile-visual,
.section-reveal.is-visible .profile-content > h3,
.section-reveal.is-visible .profile-content > p:not(.section-tag),
.section-reveal.is-visible .profile-buttons,
.section-reveal.is-visible .contact-card {
  opacity: 1;
  transform: translateY(0);
}

.section-reveal.is-visible .hero-panel,
.section-reveal.is-visible .statement-block,
.section-reveal.is-visible .info-card,
.section-reveal.is-visible .profile-visual,
.section-reveal.is-visible .contact-card {
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.section-reveal.is-visible .info-card:hover {
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-2px);
}

.section-reveal.is-visible h1,
.section-reveal.is-visible h2 {
  transition-delay: 0.05s;
}

.section-reveal.is-visible .hero-text,
.section-reveal.is-visible .statement-block,
.section-reveal.is-visible .profile-content > h3 {
  transition-delay: 0.1s;
}

.section-reveal.is-visible .hero-actions,
.section-reveal.is-visible .consultor-content > p,
.section-reveal.is-visible .profile-content > p:nth-of-type(2) {
  transition-delay: 0.15s;
}

.section-reveal.is-visible .hero-panel,
.section-reveal.is-visible .profile-visual,
.section-reveal.is-visible .profile-content > p:nth-of-type(3) {
  transition-delay: 0.2s;
}

.section-reveal.is-visible .info-card:nth-child(2),
.section-reveal.is-visible .service-item:nth-child(2),
.section-reveal.is-visible .profile-content > p:nth-of-type(4) {
  transition-delay: 0.12s;
}

.section-reveal.is-visible .info-card:nth-child(3),
.section-reveal.is-visible .service-item:nth-child(3),
.section-reveal.is-visible .profile-buttons {
  transition-delay: 0.2s;
}

.section-reveal.is-visible .service-item:nth-child(4),
.section-reveal.is-visible .contact-card {
  transition-delay: 0.28s;
}

@keyframes pulseMark {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.72;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.56;
  }
}

@media (max-width: 1040px) {
  .main-nav {
    gap: 16px;
  }

  .hero-grid,
  .consultor-layout,
  .help-layout,
  .profile-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .sticky-heading {
    position: static;
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }

  .profile-visual,
  .profile-visual img {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  main p {
    text-align: left;
    overflow-wrap: break-word;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-wrapper {
    min-height: 64px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 74px;
    display: grid;
    gap: 0;
    max-height: calc(100dvh - 94px);
    overflow-y: auto;
    padding: 10px;
    border: 0;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 60px rgba(60, 64, 67, 0.16);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  .nav-open .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 12px;
    border-bottom: 0;
    border-radius: 12px;
    font-size: 0.95rem;
  }

  .main-nav a:hover,
  .main-nav a.is-active {
    background: rgba(255, 181, 0, 0.1);
  }

  .main-nav a::after {
    display: none;
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    padding: 46px 0 58px;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero h1,
  .section h2 {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 11vw, 3.45rem);
    line-height: 1.04;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-panel {
    border-radius: 18px;
  }

  .hero-image {
    aspect-ratio: 4 / 3;
  }

  .hero-watermark {
    right: -44px;
    bottom: -46px;
    width: min(92%, 430px);
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .metric-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-card:last-child {
    border-bottom: 0;
  }

  .statement-block,
  .info-card,
  .contact-card {
    padding: 22px;
  }

  .statement-block {
    padding: 0 0 0 22px;
  }

  .statement-block::after {
    width: 62px;
    height: 62px;
  }

  .consultor-content > p {
    padding-left: 22px;
  }

  .consultor-icon {
    width: clamp(118px, 36vw, 170px);
    margin-top: 18px;
    transform: none;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-item::before {
    display: none;
  }

  .profile-visual,
  .profile-visual img {
    min-height: 0;
  }

  .profile-section::before {
    width: 140px;
    height: 140px;
    top: 34px;
    right: 16px;
  }

  .profile-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .profile-visual {
    max-width: 260px;
    justify-self: center;
  }

  .profile-content {
    padding: 24px;
    border-radius: 22px;
  }

  .profile-content h2 {
    white-space: normal;
  }

  .contact-grid {
    gap: 28px;
  }

  .contact-item a {
    font-size: clamp(0.92rem, 4.8vw, 1.12rem);
  }

  .footer-wrapper {
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .brand-logo {
    height: 38px;
  }

  .hero h1,
  .section h2 {
    font-size: clamp(1.85rem, 9.2vw, 2.85rem);
    line-height: 1.08;
  }

  .section {
    padding: 54px 0;
  }

  .section-tag,
  .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.06em;
  }

  .hero-actions,
  .profile-buttons {
    gap: 10px;
  }

  .hero-actions,
  .profile-buttons {
    display: grid;
  }

  .btn {
    width: 100%;
    min-height: 46px;
  }

  .profile-visual,
  .profile-visual img {
    min-height: 0;
  }

  .profile-visual::after {
    right: 14px;
    bottom: 14px;
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background-size: 36px auto, auto;
  }

  .contact-card {
    padding: 20px;
    border-radius: 18px;
  }

  .contact-item {
    padding-bottom: 18px;
    margin-bottom: 18px;
  }

  .contact-item a {
    font-size: clamp(0.9rem, 4.5vw, 1.02rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  body::before,
  body::after,
  .hero::before,
  .hero-image img,
  .hero-panel,
  .statement-block,
  .info-card,
  .profile-visual,
  .contact-card {
    transform: none !important;
  }
}
