:root {
  --bg: #0c0d11;
  --bg-soft: #12141b;
  --card: #151823;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f4f5f7;
  --muted: #a4a9b6;
  --accent: #d7a56b;
  --accent-2: #8fd3ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius: 28px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #080b11;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  background:
    radial-gradient(circle at 12% 18%, rgba(215, 165, 107, 0.10), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(143, 211, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #07090e 0%, #0a0d14 44%, #080b11 100%);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    url('https://i.postimg.cc/8sT2H2qk/Chat-GPT-Image-Apr-8-2026-01-01-43-AM.png'),
    url('https://i.postimg.cc/8sT2H2qk/Chat-GPT-Image-Apr-8-2026-01-01-43-AM.png');
  background-repeat: no-repeat;
  background-size: 760px, 420px;
  background-position: 84% 18%, 8% 78%;
  opacity: 0.028;
  filter: grayscale(100%) brightness(1.35);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.035), transparent 34%),
    radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.025), transparent 36%);
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

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

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

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

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

.section {
  padding: 100px 0;
  position: relative;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(36px, 5vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.hero__content span{
  background: linear-gradient(135deg, var(--accent), #efc48e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 24px;
  line-height: 1.15;
}

p {
  line-height: 1.7;
  color: var(--muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.eyebrow::-webkit-scrollbar {
  display: none;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

.bg-blur {
  position: fixed;
  border-radius: 999px;
  filter: blur(100px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.4;
}

.bg-blur--one {
  width: 420px;
  height: 420px;
  background: rgba(215, 165, 107, 0.22);
  top: -80px;
  left: -60px;
}

.bg-blur--two {
  width: 380px;
  height: 380px;
  background: rgba(143, 211, 255, 0.10);
  bottom: 8%;
  right: -60px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(8, 11, 17, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

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

.logo__img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 12px;
}

.logo__text {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.logo__text em {
  font-style: normal;
  font-weight: 500;
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.nav a {
  color: #dfe3ea;
  font-size: 15px;
  transition: 0.25s ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  transition: 0.28s ease;
  font-weight: 700;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), #efc48e);
  color: #17181d;
  padding: 16px 24px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(215, 165, 107, 0.18);
}

.btn--ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.02);
  padding: 16px 24px;
  border-radius: 18px;
}

.btn--sm {
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 14px;
}

.btn--full {
  width: 100%;
}

.burger {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 18, 26, 0.96);
  border-radius: 18px;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 10002;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: 0.28s ease;
}

.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 15, 0.58);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 10000;
}

.menu-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -380px;
  width: min(86vw, 360px);
  height: 100dvh;
  padding: 96px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #121722;
  background-image:
    radial-gradient(circle at top right, rgba(215, 165, 107, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(18, 23, 34, 0.98), rgba(10, 13, 18, 0.99));
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.45);
  transition: right 0.34s ease;
  z-index: 10001;
  overflow-y: auto;
}

.mobile-drawer.is-open {
  right: 0;
}

.mobile-drawer__nav {
  width: 100%;
  display: grid;
  gap: 8px;
}

.mobile-drawer__nav a {
  width: 100%;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #f2f5f8;
  font-size: 18px;
  font-weight: 600;
}

.hero {
  padding-top: 80px;
  padding-bottom: 54px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: center;
}

.hero__content span {
  color: var(--accent);
}

.hero__text {
  max-width: 720px;
  margin-top: 24px;
  font-size: 18px;
}

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

.hero__points {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
}

.hero__points li {
  color: #d9dde5;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(215, 165, 107, 0.13);
}

.hero__visual {
  position: relative;
  min-height: 540px;
  padding-top: 20px;
  perspective: 1200px;
}

.dashboard-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.dashboard-card--main {
  position: relative;
  z-index: 2;
  padding: 30px;
  max-width: 520px;
}

.dashboard-card--accent {
  position: absolute;
  right: -80px;
  top: -20px;
  padding: 22px;
  width: 280px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 3;
}

.dashboard-card--small {
  position: absolute;
  left: 80px;
  bottom: -30px;
  padding: 22px 24px;
  
  z-index: 2;
}

.dashboard-card__label {
  color: var(--accent-2);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}

.dashboard-card__title {
  font-size: 24px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
}

.metric-row {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.metric {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.metric strong {
  display: block;
  font-size: 24px;
  margin-bottom: 4px;
}

.metric span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.chip {
  display: inline-flex;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #eff2f7;
  font-size: 14px;
}

.dashboard-card--accent .chip {
  flex: 1 1 calc(50% - 10px);
}

.trust-bar {
  padding-top: 8px;
  padding-bottom: 26px;
}

.trust-bar__inner {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 18px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  color: #dfe4eb;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
}

.trust-bar__line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head p {
  margin-top: 18px;
  font-size: 17px;
}

.section--dark {
  background: none;
}

.section-head--light p {
  color: #bac1ce;
}

.cards,
.timeline,
.support-grid,
.stats__grid {
  display: grid;
  gap: 20px;
}

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

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

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

.card,
.approach-item,
.support-card,
.stat,
.platform-card {
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.card__number {
  font-size: 12px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 18px;
}

.card h3,
.approach-item h3,
.support-card h3,
.platform-card h3 {
  margin-bottom: 14px;
}

.card p {
  margin-bottom: 18px;
}

.card ul {
  padding-left: 18px;
  margin: 0;
  display: grid;
  gap: 10px;
  color: #d8dde6;
}

.case-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.case-filter {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #e8ecf2;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.25s ease;
}

.case-filter:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.case-filter.active {
  background: linear-gradient(135deg, var(--accent), #efc48e);
  color: #17181d;
  border-color: transparent;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 28px;
  align-items: start;
}

.case-card {
  position: relative;
}

.case-card__link {
  display: block;
}

.case-card__frame {
  position: relative;
  padding-left: 58px;
  padding-right: 58px;
}

.case-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #0f131a;
  border-radius: 4px;
}

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

.case-card:hover .case-card__image img {
  transform: scale(1.03);
  filter: brightness(1.04);
}

.case-card__side {
  position: absolute;
  top: 0;
  bottom: 92px;
  width: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.case-card__side--left {
  left: 0;
}

.case-card__side--right {
  right: 0;
}

.case-card__side span {
  display: block;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: -0.03em;
  line-height: 1;
}

.case-card__side--left span {
  transform: rotate(180deg);
}

.case-card__bottom {
  padding: 18px 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

.case-card__type {
  display: inline-block;
  margin-bottom: 10px;
  color: #d5dbe6;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.case-card__bottom p {
  font-size: 16px;
  line-height: 1.55;
  color: #edf1f6;
  max-width: 88%;
}

.timeline__item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
}

.timeline__item span {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #efc48e);
  color: #111;
  font-weight: 800;
  font-size: 18px;
}

.timeline__item h3 {
  margin-bottom: 10px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contact-form {
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px;
  backdrop-filter: blur(14px);
}

.form-row {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.form-row label {
  color: #d9deea;
  font-size: 14px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 16px 18px;
  color: #fff;
}

.form-row textarea {
  resize: vertical;
  min-height: 140px;
}

.form-success {
  display: none;
  margin-top: 14px;
  color: #b4f0a2;
  font-weight: 600;
}

.form-success.is-visible {
  display: block;
}

.stats {
  padding-top: 20px;
}

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

.stat {
  text-align: center;
  padding: 34px 24px;
}

.stat strong {
  display: block;
  font-size: clamp(42px, 5vw, 74px);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.stat span {
  color: #d7dce5;
}

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

.platform-card p {
  margin: 0;
}

.contact-links {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  max-width: 520px;
}

.contact-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.25s ease;
  backdrop-filter: blur(10px);
}

.contact-link:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.contact-link__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 700;
}

.contact-link__value {
  color: #f3f5f8;
  font-size: 18px;
  line-height: 1.35;
  word-break: break-word;
}

.site-footer {
  position: relative;
  padding: 22px 0 24px;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-minimal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand__logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 12px;
}

.footer-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer-brand__text strong {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
}

.footer-brand__text span {
  margin-top: 5px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #aeb5c2;
}

.footer-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition: 0.25s ease;
}

.footer-instagram svg {
  width: 18px;
  height: 18px;
  fill: #f3f5f8;
  transition: 0.25s ease;
}

.footer-instagram:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.footer-instagram:hover svg {
  fill: var(--accent);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .hero__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .cards--services,
  .approach-grid,
  .support-grid,
  .stats__grid,
  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__visual {
    min-height: 500px;
    max-width: 620px;
  }

  .dashboard-card--accent {
    right: 0;
  }

  .dashboard-card--small {
    left: 80px;
  }

  .cases-grid {
    gap: 28px 22px;
  }

  .case-card__frame {
    padding-left: 48px;
    padding-right: 48px;
  }

  .case-card__side {
    width: 48px;
  }

  .case-card__side span {
    font-size: 21px;
  }

  .case-card__bottom p {
    max-width: 100%;
  }

  body::before {
    background-size: 620px, 320px;
    background-position: 92% 16%, 4% 84%;
    opacity: 0.026;
  }
}

@media (max-width: 820px) {
  body {
    background: linear-gradient(180deg, #07090e 0%, #0a0d14 44%, #080b11 100%);
  }

  body::before,
  body::after {
    display: none !important;
  }

  .section {
    padding: 58px 0;
  }

  .nav--desktop,
  .nav-cta {
    display: none !important;
  }

  .burger {
    display: block !important;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 18px;
  }

  .hero__grid {
    gap: 20px;
  }

  .hero__text {
    font-size: 16px;
    margin-top: 18px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 24px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__visual {
    min-height: auto;
    padding-top: 0;
    display: grid;
    gap: 14px;
    max-width: none;
  }

  .dashboard-card--main {
    max-width: none;
    padding: 24px;
  }

  .dashboard-card--accent,
  .dashboard-card--small {
    position: static;
    width: auto;
    margin: 0;
  }

  .trust-bar {
    padding-top: 6px;
    padding-bottom: 12px;
  }

  .trust-bar__inner {
    border-radius: 28px;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    gap: 16px;
  }

  .trust-bar__line {
    width: 100%;
    flex: none;
  }

  .cards--services,
  .approach-grid,
  .support-grid,
  .stats__grid,
  .contact__grid,
  .platforms-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    margin-bottom: 26px;
  }

  .section-head p {
    font-size: 16px;
    margin-top: 14px;
  }

  .case-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .case-filters::-webkit-scrollbar {
    display: none;
  }

  .case-filter {
    white-space: nowrap;
    flex: 0 0 auto;
    padding: 11px 15px;
    font-size: 14px;
  }

  .cases-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .case-card__frame {
    padding-left: 0;
    padding-right: 0;
  }

  .case-card__side {
    position: static;
    width: auto;
    margin-bottom: 10px;
    display: block;
  }

  .case-card__side span {
    writing-mode: horizontal-tb;
    transform: none !important;
    font-size: 24px;
  }

  .case-card__bottom {
    padding: 16px 0 14px;
  }

  .case-card__bottom p {
    font-size: 15px;
  }

  .timeline__item {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .contact-links {
    margin-top: 22px;
  }

  .contact-link__value {
    font-size: 16px;
  }

  .site-footer {
    padding: 18px 0 20px;
  }

  .footer-minimal {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .footer-brand {
    gap: 10px;
  }

  .footer-brand__text strong {
    font-size: 24px;
  }

  body::before {
    background-size: 340px, 220px;
    background-position: 112% 18%, -10% 82%;
    opacity: 0.03;
  }
}

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

  .nav-wrap {
    min-height: 74px;
  }

  .logo__text {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(36px, 11vw, 54px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .contact-form,
  .card,
  .approach-item,
  .support-card,
  .stat,
  .platform-card {
    padding: 22px;
  }

  .mobile-drawer {
    width: min(90vw, 340px);
    padding: 88px 18px 20px;
  }

  .dashboard-card--accent {
    gap: 8px;
  }

  .dashboard-card--accent .chip {
    flex: 1 1 calc(50% - 8px);
    font-size: 13px;
    padding: 8px 12px;
  }

  .case-card__image {
    aspect-ratio: 16 / 11;
  }

  .case-card__side span {
    font-size: 22px;
  }

  .case-card__bottom p {
    font-size: 14px;
    line-height: 1.5;
  }

  .footer-brand__logo {
    width: 38px;
    height: 38px;
  }

  .footer-brand__text strong {
    font-size: 22px;
  }

  .footer-brand__text span {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .dashboard-card--accent {
    gap: 8px;
  }

  .dashboard-card--accent .chip {
    flex: 1 1 calc(50% - 8px);
    font-size: 13px;
    padding: 8px 12px;
  }
}
/* ===== PARTNER PROGRAM ===== */

.partner-accordion {
  margin-top: 30px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  backdrop-filter: blur(14px);
}

.partner-toggle {
  width: 100%;
  padding: 24px 28px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: 0.25s ease;
}

.partner-toggle:hover {
  background: rgba(255,255,255,0.035);
}

.partner-icon {
  font-size: 28px;
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.partner-accordion.active .partner-icon {
  transform: rotate(45deg);
}

.partner-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s ease;
  padding: 0 28px;
}

.partner-accordion.active .partner-content {
  max-height: 1000px;
  padding: 6px 28px 30px;
}

.partner-highlight {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 10px 0 24px;
  flex-wrap: wrap;
}

.partner-highlight strong {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  color: var(--accent);
}

.partner-highlight span {
  color: #edf1f6;
  font-size: 18px;
  line-height: 1.5;
  max-width: 520px;
}

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

.partner-grid h4,
.partner-example h4 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 18px;
}

.partner-grid ul {
  padding-left: 18px;
  margin: 0;
  display: grid;
  gap: 10px;
  color: #d8dde6;
}

.partner-example {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.partner-bottom {
  margin-top: 26px;
}

@media (max-width: 768px) {
  .partner-toggle {
    font-size: 18px;
    padding: 20px 22px;
  }

  .partner-content {
    padding: 0 22px;
  }

  .partner-accordion.active .partner-content {
    padding: 6px 22px 24px;
  }

  .partner-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .partner-highlight span {
    font-size: 16px;
  }
}
/* ===== Mobile contact bar ===== */
.mobile-contact-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 9999;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;

  padding: 8px;
  border-radius: 20px;

  background: rgba(10, 12, 20, 0.92);
  border: 1px solid rgba(214, 171, 110, 0.18);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mobile-contact-bar__item {
  min-height: 56px;
  padding: 10px 8px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;

  text-decoration: none;
  text-align: center;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.03);
  color: #f5f1ea;

  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-contact-bar__item:active {
  transform: translateY(1px);
}

.mobile-contact-bar__item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.mobile-contact-bar__item--accent {
  background: rgba(214, 171, 110, 0.14);
  border-color: rgba(214, 171, 110, 0.26);
  color: #e2b57c;
}

.mobile-contact-bar__item--accent:hover {
  background: rgba(214, 171, 110, 0.18);
}

.mobile-contact-bar__icon {
  font-size: 15px;
  line-height: 1;
  opacity: 0.95;
}

.mobile-contact-bar__text {
  font-size: 12px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* щоб плашка не перекривала контент */
body {
  padding-bottom: 96px;
}

/* тільки для мобільної версії */
@media (min-width: 768px) {
  .mobile-contact-bar {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}

/* для дуже вузьких екранів */
@media (max-width: 380px) {
  .mobile-contact-bar {
    left: 10px;
    right: 10px;
    bottom: 10px;
    gap: 6px;
    padding: 6px;
    border-radius: 18px;
  }

  .mobile-contact-bar__item {
    min-height: 52px;
    padding: 8px 6px;
  }

  .mobile-contact-bar__text {
    font-size: 11px;
  }
}
#mobileDrawer {
  padding-top: calc(env(safe-area-inset-top) + 16px);
}

.drawer-header {
  margin-bottom: 14px;
}

.drawer-header img,
.drawer-header .logo {
  margin-bottom: 6px;
}
.partner-simple {
  padding: 34px 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
  max-width: 820px;
}

.partner-simple__text {
  font-size: 20px;
  line-height: 1.6;
  color: #edf1f6;
  max-width: 680px;
}

.partner-simple__actions {
  margin-top: 24px;
}

@media (max-width: 768px) {
  .partner-simple {
    padding: 24px 22px;
    border-radius: 22px;
  }

  .partner-simple__text {
    font-size: 16px;
    line-height: 1.55;
  }

  .partner-simple__actions {
    margin-top: 18px;
  }
}
/* ===== HERO REWORK ===== */

.hero--split {
  padding-top: 54px;
  padding-bottom: 34px;
}

.hero__grid--new {
  align-items: center;
  gap: 34px;
}

.hero__eyebrow {
  margin-bottom: 18px;
}

.hero-title {
  display: grid;
  gap: 6px;
  max-width: 760px;
}

.hero-title__line {
  display: block;
}

.hero-title__accent {
  display: inline-block;
  margin-top: 6px;
  background: linear-gradient(135deg, var(--accent), #efc48e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__text--compact {
  max-width: 620px;
  margin-top: 22px;
  font-size: 17px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #eef2f7;
  font-size: 13px;
  line-height: 1;
  backdrop-filter: blur(10px);
}

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

.hero-showcase {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-showcase__glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(215, 165, 107, 0.18) 0%, rgba(215, 165, 107, 0.06) 38%, transparent 72%);
  filter: blur(26px);
  animation: heroPulse 5.5s ease-in-out infinite;
}

.hero-showcase__card {
  position: relative;
  z-index: 2;
  width: min(100%, 420px);
  padding: 24px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(20px);
  animation: heroFloat 6s ease-in-out infinite;
}

.hero-showcase__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.hero-showcase__label {
  color: #f4f5f7;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-showcase__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(215, 165, 107, 0.6);
}

.hero-showcase__screen {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-showcase__screen-line {
  height: 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, rgba(255,255,255,0.12), rgba(215,165,107,0.24));
}

.hero-showcase__screen-line:last-child {
  margin-bottom: 0;
}

.hero-showcase__screen-line--sm {
  width: 38%;
}

.hero-showcase__screen-line--md {
  width: 62%;
}

.hero-showcase__screen-line--lg {
  width: 88%;
}

.hero-showcase__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.hero-showcase__stat {
  padding: 14px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.hero-showcase__stat strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 6px;
}

.hero-showcase__stat span {
  font-size: 12px;
  color: #d5dbe6;
  line-height: 1.35;
}

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

@keyframes heroPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

/* ===== MOBILE HERO ===== */
@media (max-width: 820px) {
  .hero--split {
    padding-top: 28px;
    padding-bottom: 20px;
  }

  .hero__grid--new {
    gap: 20px;
  }

  .hero__eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 0.12em;
    white-space: nowrap;
    overflow-x: auto;
  }

  .hero-title {
    gap: 2px;
  }

  .hero-title__line,
  .hero-title__accent {
    font-size: clamp(30px, 8.7vw, 42px);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  .hero__text--compact {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero__chips {
    margin-top: 16px;
    gap: 8px;
  }

  .hero-chip {
    padding: 9px 12px;
    font-size: 12px;
  }

  .hero__actions--compact {
    margin-top: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero__actions--compact .btn {
    width: 100%;
    min-height: 52px;
  }

  .hero-showcase {
    min-height: auto;
  }

  .hero-showcase__glow {
    width: 280px;
    height: 280px;
    filter: blur(22px);
  }

  .hero-showcase__card {
    width: 100%;
    max-width: 100%;
    padding: 18px;
    border-radius: 24px;
    animation: heroFloatMobile 6.5s ease-in-out infinite;
  }

  .hero-showcase__top {
    margin-bottom: 14px;
  }

  .hero-showcase__label {
    font-size: 12px;
  }

  .hero-showcase__screen {
    padding: 14px;
    border-radius: 18px;
  }

  .hero-showcase__screen-line {
    height: 8px;
    margin-bottom: 10px;
  }

  .hero-showcase__stats {
    gap: 8px;
    margin-top: 14px;
  }

  .hero-showcase__stat {
    padding: 12px 8px;
    border-radius: 14px;
  }

  .hero-showcase__stat strong {
    font-size: 18px;
  }

  .hero-showcase__stat span {
    font-size: 11px;
  }
}

@keyframes heroFloatMobile {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 560px) {
  .hero-title__line,
  .hero-title__accent {
    font-size: clamp(28px, 8.3vw, 38px);
  }

  .hero__text--compact {
    font-size: 14px;
  }

  .hero-showcase__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
.hero-showcase__screen {
  padding: 20px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 10px 30px rgba(0,0,0,0.18);
}

.hero-showcase__dots {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.hero-showcase__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}

.hero-showcase__dots span:first-child {
  background: rgba(215,165,107,0.78);
  box-shadow: 0 0 10px rgba(215,165,107,0.28);
}

.hero-ui {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-ui__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  opacity: 0.9;
}

.hero-ui__title {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #f3f5f8;
  max-width: 260px;
}

.hero-ui__meta {
  font-size: 13px;
  line-height: 1.4;
  color: #b9c0cc;
}

.hero-ui__cta {
  margin-top: 4px;
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #17181d;
  background: linear-gradient(135deg, var(--accent), #efc48e);
  box-shadow: 0 6px 18px rgba(215,165,107,0.22);
}