:root {
  color-scheme: dark;
  --bg: #070707;
  --bg-soft: #0b0b0b;
  --panel: rgba(17, 17, 17, 0.84);
  --panel-strong: rgba(24, 24, 24, 0.94);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(216, 181, 138, 0.55);
  --text: #f5f1ea;
  --muted: rgba(245, 241, 234, 0.68);
  --dim: rgba(245, 241, 234, 0.42);
  --gold: #d8b58a;
  --gold-deep: #8c6a45;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.54);
  --section: min(92vw, 1400px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(216, 181, 138, 0.11), transparent 24rem),
    radial-gradient(circle at 82% 10%, rgba(216, 181, 138, 0.08), transparent 20rem),
    linear-gradient(180deg, #080808 0%, #050505 100%);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

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

button {
  color: inherit;
}

.ambient-grid,
.ambient-orbits {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ambient-grid {
  opacity: 0.38;
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 72px 72px;
}

.ambient-orbits {
  overflow: hidden;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(216, 181, 138, 0.2);
  border-radius: 50%;
  filter: drop-shadow(0 0 16px rgba(216, 181, 138, 0.18));
}

.orbit i,
.hero-ring i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(255, 228, 196, 0.82);
  transform-origin: 0 0;
  animation: orbit-dot 14s linear infinite;
}

.orbit-a {
  top: 8vh;
  right: -10vw;
  width: 50vw;
  height: 20vw;
  min-width: 460px;
  min-height: 190px;
  transform: rotate(-12deg);
}

.orbit-b {
  top: 38vh;
  right: -16vw;
  width: 46vw;
  height: 18vw;
  min-width: 420px;
  min-height: 170px;
  transform: rotate(14deg);
  opacity: 0.55;
}

.orbit-c {
  top: 68vh;
  right: -20vw;
  width: 42vw;
  height: 16vw;
  min-width: 380px;
  min-height: 150px;
  transform: rotate(-8deg);
  opacity: 0.3;
}

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

.topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  width: var(--section);
  min-height: 62px;
  padding: 10px 14px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(7, 7, 7, 0.64);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.topbar.is-scrolled {
  background: rgba(7, 7, 7, 0.82);
  border-color: rgba(216, 181, 138, 0.18);
}

.brand,
.topnav button,
.header-cta,
.menu-toggle,
.primary-button,
.text-button,
.service-item,
.case-card button,
.faq-item button,
.contact-methods button,
.footer-links a {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 800;
}

.brand-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-mark {
  width: 28px;
  height: 28px;
  background:
    linear-gradient(135deg, transparent 48%, #fff 49% 58%, transparent 59%),
    linear-gradient(180deg, #f4eee8, #9f9589);
  clip-path: polygon(0 0, 68% 48%, 100% 50%, 100% 82%, 0 82%);
}

.topnav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.topnav button,
.mobile-menu-inner button {
  color: rgba(255, 255, 255, 0.84);
  transition: color 0.2s ease, transform 0.2s ease;
}

.topnav button:hover,
.mobile-menu-inner button:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-cta,
.primary-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.header-cta,
.text-button {
  border: 1px solid rgba(216, 181, 138, 0.24);
  background: rgba(255, 255, 255, 0.04);
}

.primary-button {
  border: 1px solid rgba(255, 226, 193, 0.12);
  background: linear-gradient(135deg, #e8c59f, #cf9d66);
  color: #20140a;
  font-weight: 700;
}

.header-cta:hover,
.primary-button:hover,
.text-button:hover,
.case-card button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(216, 181, 138, 0.62);
  border-radius: 8px;
  background: rgba(216, 181, 138, 0.1);
  box-shadow: 0 0 26px rgba(216, 181, 138, 0.12);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(216, 181, 138, 0.38);
}

.mobile-menu {
  position: fixed;
  inset: 86px 14px auto;
  z-index: 19;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(8, 8, 8, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.mobile-menu-inner {
  display: grid;
  gap: 10px;
}

.mobile-menu-inner button {
  justify-content: flex-start;
  min-height: 46px;
  padding: 0 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}

.section {
  width: var(--section);
  margin: 0 auto;
  scroll-margin-top: 100px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.96fr);
  gap: 42px;
  align-items: center;
  min-height: 100vh;
  padding: 128px 0 42px;
}

.eyebrow,
.service-kicker,
.case-meta em,
.faq-number {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.service-panel h3,
.contact-panel h2,
.faq-panel h2 {
  margin: 0;
  font-weight: 300;
  line-height: 1.04;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(46px, 5vw, 86px);
  text-transform: uppercase;
}

.hero-text,
.section-head p,
.service-panel p,
.contact-panel p,
.about-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-text {
  max-width: 560px;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.hero-visual {
  position: relative;
  min-height: 720px;
}

.hero-photo-card,
.about-photo-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(35, 35, 35, 0.7), rgba(7, 7, 7, 0.92));
  box-shadow: var(--shadow);
}

.hero-photo-card {
  position: absolute;
  left: 0;
  top: 10px;
  width: min(100%, 620px);
  height: 680px;
}

.hero-photo-card img,
.about-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  right: 0;
  display: grid;
  gap: 8px;
  width: 250px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(18, 18, 18, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-note strong,
.about-float strong,
.stat-card strong,
.feature-card strong,
.service-stat strong,
.visual-card strong,
.case-result {
  font-weight: 400;
}

.hero-note span,
.about-float span,
.feature-card span,
.service-stat span,
.visual-card span,
.case-result {
  color: var(--muted);
}

.hero-note-top {
  top: 82px;
}

.hero-note-bottom {
  right: 38px;
  bottom: 84px;
  width: 280px;
}

.hero-note-left {
  left: -24px;
  top: 48%;
  width: 240px;
}

.hero-note-middle {
  right: 92px;
  top: 44%;
  width: 250px;
}

.hero-note-small {
  right: 16px;
  bottom: 262px;
  width: 220px;
}

.hero-ring {
  position: absolute;
  border: 1px solid rgba(216, 181, 138, 0.22);
  border-radius: 50%;
}

.hero-ring-a {
  top: 10px;
  right: 20px;
  width: 540px;
  height: 220px;
  transform: rotate(-14deg);
}

.hero-ring-b {
  right: -10px;
  bottom: 58px;
  width: 420px;
  height: 170px;
  opacity: 0.55;
  transform: rotate(18deg);
}

.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.024);
  backdrop-filter: blur(12px);
}

.stat-card {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}

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

.stat-card strong {
  font-size: clamp(32px, 3vw, 48px);
}

.stat-card span {
  color: var(--muted);
}

.about,
.services,
.cases,
.faq-contact {
  padding: 104px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head h2 {
  max-width: 760px;
  font-size: clamp(44px, 5vw, 82px);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: 42px;
  align-items: stretch;
}

.about-copy {
  display: grid;
  align-content: start;
  gap: 28px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-row span,
.case-tags span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.chip-row span {
  padding: 11px 16px;
  color: rgba(255, 255, 255, 0.86);
}

.feature-row {
  display: grid;
  gap: 12px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.feature-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(216, 181, 138, 0.5);
}

.about-visual {
  position: relative;
  min-height: 760px;
}

.about-photo-card {
  position: absolute;
  inset: 0 12% 4% 0;
}

.about-float {
  position: absolute;
  display: grid;
  gap: 8px;
  width: 280px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(16, 16, 16, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.about-float-left {
  top: 14%;
  right: 0;
}

.about-float-right {
  right: 22px;
  bottom: 10%;
}

.about-float-top {
  left: 22px;
  top: 24px;
}

.about-float-center {
  left: -18px;
  bottom: 24%;
  width: 270px;
}

.about-float-bottom {
  right: 0;
  bottom: 18px;
  width: 300px;
}

.services-head p {
  max-width: 420px;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.95fr) minmax(0, 1fr) minmax(360px, 1.05fr);
  gap: 20px;
  align-items: stretch;
}

.services-nav {
  display: grid;
  gap: 12px;
}

.service-item {
  display: grid;
  grid-template-columns: 42px 52px 1fr 32px;
  align-items: center;
  gap: 16px;
  min-height: 84px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-item:hover,
.service-item.is-active {
  border-color: rgba(216, 181, 138, 0.72);
  background: rgba(216, 181, 138, 0.08);
  box-shadow: 0 0 34px rgba(216, 181, 138, 0.15);
  transform: translateX(3px);
}

.service-number {
  color: var(--gold);
  font-size: 18px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
  font-size: 22px;
}

.service-name {
  font-size: clamp(17px, 1.2vw, 20px);
}

.service-sign {
  color: var(--gold);
  font-size: 26px;
  text-align: center;
}

.service-panel,
.service-visual,
.faq-panel,
.contact-panel,
.case-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    rgba(14, 14, 14, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.service-panel {
  display: flex;
  flex-direction: column;
  min-height: 640px;
  padding: 34px;
}

.service-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-panel h3 {
  margin-top: 22px;
  font-size: clamp(34px, 3vw, 54px);
}

.service-panel p {
  margin: 18px 0 0;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.84);
}

.check-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 12px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 13px;
  flex: 0 0 auto;
}

.service-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: auto;
  padding-top: 26px;
}

.service-stat {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.service-stat strong,
.visual-card strong {
  display: block;
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 8px;
}

.service-visual {
  overflow: hidden;
  min-height: 640px;
}

.service-visual-inner {
  position: relative;
  display: grid;
  gap: 18px;
  height: 100%;
  padding: 28px;
}

.service-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.8;
}

.service-visual-copy,
.service-mini-grid,
.service-metrics,
.service-stage {
  position: relative;
  z-index: 1;
}

.service-visual-copy {
  max-width: 360px;
}

.service-visual-eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.service-visual-copy h4 {
  margin: 0;
  font-size: clamp(30px, 2.8vw, 48px);
  font-weight: 300;
  line-height: 1.08;
}

.service-visual-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.service-stage {
  position: relative;
  min-height: 300px;
}

.service-device {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(25, 25, 25, 0.96), rgba(8, 8, 8, 0.96));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.service-device-a {
  right: 8%;
  top: 18px;
  width: 68%;
  height: 260px;
  transform: rotate(3deg);
}

.service-device-b {
  left: 4%;
  bottom: 8px;
  width: 150px;
  height: 280px;
  border-radius: 24px;
  transform: rotate(-6deg);
}

.device-bar {
  height: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.device-screen,
.device-content {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 28px;
}

.screen-line {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(216, 181, 138, 0.86), rgba(255, 255, 255, 0.05));
}

.screen-line.wide {
  width: 82%;
}

.screen-line.small {
  width: 54%;
}

.screen-chart {
  height: 92px;
  margin-top: 14px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(216, 181, 138, 0.45) 43% 45%, transparent 46% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 38px),
    rgba(255, 255, 255, 0.03);
}

.device-top {
  height: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bubble {
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.bubble.short {
  width: 72%;
}

.bubble.tiny {
  width: 46%;
}

.service-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.visual-card {
  min-height: 112px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.service-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: auto;
}

.service-metrics > div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.service-metrics strong {
  display: block;
  color: var(--gold);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 6px;
}

.service-visual[data-visual-type="website"] .service-device-a {
  width: 72%;
}

.service-visual[data-visual-type="bot"] .service-device-a {
  width: 52%;
  right: 12%;
}

.service-visual[data-visual-type="bot"] .service-device-b {
  left: 16%;
  width: 180px;
  height: 300px;
}

.service-visual[data-visual-type="ai"] .service-device-a {
  width: 58%;
  top: 64px;
  background:
    radial-gradient(circle at 72% 40%, rgba(216, 181, 138, 0.24), transparent 12rem),
    linear-gradient(145deg, rgba(18, 20, 24, 0.98), rgba(7, 8, 10, 0.98));
}

.service-visual[data-visual-type="ai"] .service-device-b {
  left: auto;
  right: 10%;
  width: 170px;
  height: 230px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 44%, rgba(216, 181, 138, 0.24), transparent 40%),
    linear-gradient(145deg, rgba(22, 22, 24, 0.98), rgba(8, 8, 8, 0.98));
}

.service-visual[data-visual-type="automation"] .service-device-a,
.service-visual[data-visual-type="seo"] .service-device-a,
.service-visual[data-visual-type="presentation"] .service-device-a {
  width: 70%;
}

.service-visual[data-visual-type="market"] .service-device-a {
  width: 56%;
  right: 10%;
}

.service-visual[data-visual-type="market"] .service-device-b {
  width: 180px;
  left: 8%;
}

.service-visual[data-visual-type="presentation"] .service-stage {
  min-height: 240px;
}

.service-visual[data-visual-type="presentation"] .service-device {
  display: none;
}

.service-visual[data-visual-type="presentation"] .service-stage::before {
  content: "";
  position: absolute;
  right: 10%;
  top: 20px;
  width: 74%;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background:
    linear-gradient(160deg, rgba(216, 181, 138, 0.24), rgba(216, 181, 138, 0.06)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.44);
}

.service-visual[data-visual-type="presentation"] .service-stage::after {
  content: "";
  position: absolute;
  left: 14%;
  bottom: 20px;
  width: 52%;
  height: 140px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.44);
}

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

.case-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(260px, 1fr);
  gap: 18px;
  min-height: 280px;
  padding: 24px;
  overflow: hidden;
}

.case-meta {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 18px;
}

.case-meta span {
  color: var(--gold);
  font-size: 28px;
  font-weight: 300;
}

.case-card h3 {
  grid-column: 1;
  margin: 10px 0 0;
  font-size: clamp(28px, 2.2vw, 42px);
  font-weight: 300;
}

.case-card p {
  grid-column: 1;
  color: var(--muted);
  line-height: 1.55;
}

.case-tags {
  grid-column: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-tags span {
  padding: 8px 10px;
  color: var(--muted);
  font-size: 12px;
}

.case-card button {
  grid-column: 1;
  position: relative;
  z-index: 2;
  justify-self: start;
  align-self: end;
  padding: 0;
  color: var(--text);
}

.case-card button span {
  margin-left: 10px;
  color: var(--gold);
}

.case-thumb {
  grid-column: 2;
  grid-row: 1 / span 6;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 75% 24%, rgba(216, 181, 138, 0.14), transparent 12rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
}

.case-thumb > * {
  position: absolute;
}

.case-result {
  position: absolute;
  left: 24px;
  bottom: 20px;
  right: 24px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.thumb-laptop,
.thumb-window,
.thumb-phone,
.thumb-product,
.thumb-slide,
.thumb-card,
.thumb-globe,
.thumb-ai-head,
.thumb-graph,
.thumb-flow-grid,
.thumb-node,
.thumb-orb,
.thumb-portrait {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
}

.thumb-laptop {
  right: 12px;
  top: 18px;
  width: 72%;
  height: 68%;
  border-radius: 8px;
  transform: rotate(2deg);
}

.thumb-laptop.seo {
  right: 16px;
  top: 22px;
  width: 68%;
}

.thumb-top {
  height: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.thumb-screen {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.line {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(255, 255, 255, 0.06));
}

.line.wide {
  width: 82%;
}

.line.small {
  width: 56%;
}

.thumb-flow {
  height: 86px;
  margin-top: 8px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 0 40%, rgba(216, 181, 138, 0.5) 41% 45%, transparent 46% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 40px),
    rgba(255, 255, 255, 0.03);
}

.thumb-phone {
  right: 18px;
  bottom: 16px;
  width: 120px;
  height: 210px;
  border-radius: 22px;
  transform: rotate(10deg);
}

.thumb-phone.tall {
  right: 26px;
  width: 140px;
  height: 230px;
}

.thumb-phone.market {
  width: 110px;
  height: 198px;
}

.thumb-phone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 44px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  transform: translateX(-50%);
}

.thumb-phone span {
  display: block;
  height: 30px;
  margin: 18px 16px 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.thumb-phone span:last-child {
  background: linear-gradient(135deg, rgba(216, 181, 138, 0.9), rgba(76, 57, 40, 1));
}

.thumb-globe {
  right: -18px;
  top: 18px;
  width: 54%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(102, 154, 255, 0.26), transparent 58%),
    linear-gradient(145deg, rgba(16, 24, 38, 0.92), rgba(6, 8, 12, 0.98));
}

.thumb-window {
  left: 10%;
  top: 16%;
  width: 74%;
  height: 46%;
  border-radius: 8px;
}

.thumb-window span {
  display: block;
  height: 8px;
  margin: 14px 14px 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.thumb-panel {
  position: absolute;
  inset: 48px 14px 14px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(216, 181, 138, 0.34) 45% 48%, transparent 49% 100%),
    rgba(255, 255, 255, 0.03);
}

.thumb-ai-head {
  right: 10px;
  top: 12px;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 48%, rgba(216, 181, 138, 0.22), transparent 42%),
    linear-gradient(145deg, rgba(18, 21, 28, 0.96), rgba(6, 7, 10, 0.98));
}

.thumb-cards {
  left: 12px;
  bottom: 16px;
  width: 52%;
  display: grid;
  gap: 10px;
}

.thumb-cards div {
  height: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.thumb-product,
.thumb-card {
  width: 44%;
  height: 58%;
  top: 18px;
  border-radius: 16px;
}

.thumb-product.card-a {
  left: 14px;
  background: linear-gradient(145deg, rgba(90, 64, 130, 0.76), rgba(18, 12, 28, 0.96));
}

.thumb-product.card-b {
  right: 14px;
  background: linear-gradient(145deg, rgba(133, 84, 54, 0.76), rgba(26, 12, 10, 0.96));
}

.thumb-card.product-a {
  left: 14px;
  background: linear-gradient(145deg, rgba(117, 76, 191, 0.82), rgba(25, 12, 44, 0.96));
}

.thumb-card.product-b {
  right: 14px;
  background: linear-gradient(145deg, rgba(35, 29, 56, 0.96), rgba(8, 8, 11, 0.98));
}

.thumb-flow-grid {
  inset: 14% 12% 30%;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(255, 255, 255, 0.1) 18% 20%, transparent 20% 100%),
    linear-gradient(transparent 0 48%, rgba(255, 255, 255, 0.1) 48% 50%, transparent 50% 100%),
    rgba(255, 255, 255, 0.03);
}

.thumb-node {
  width: 58px;
  height: 58px;
  border-radius: 14px;
}

.thumb-node.node-a {
  left: 14%;
  top: 18%;
}

.thumb-node.node-b {
  right: 18%;
  top: 42%;
}

.thumb-node.node-c {
  left: 34%;
  bottom: 16%;
}

.thumb-graph {
  right: 14px;
  bottom: 18px;
  width: 36%;
  height: 38%;
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 0 45%, rgba(216, 181, 138, 0.44) 46% 49%, transparent 50% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 26px),
    rgba(255, 255, 255, 0.03);
}

.thumb-slide {
  width: 28%;
  height: 64%;
  top: 16%;
  border-radius: 10px;
}

.thumb-slide.slide-a {
  left: 10%;
  transform: rotate(-8deg);
  background: linear-gradient(145deg, rgba(216, 181, 138, 0.28), rgba(255, 255, 255, 0.03));
}

.thumb-slide.slide-b {
  left: 34%;
  transform: rotate(-2deg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
}

.thumb-slide.slide-c {
  right: 12%;
  transform: rotate(7deg);
  background: linear-gradient(145deg, rgba(216, 181, 138, 0.18), rgba(255, 255, 255, 0.02));
}

.thumb-portrait {
  left: 16%;
  top: 16%;
  width: 68%;
  height: 66%;
  border-radius: 16px;
  background:
    radial-gradient(circle at 38% 20%, rgba(216, 181, 138, 0.22), transparent 25%),
    linear-gradient(145deg, rgba(29, 29, 31, 0.96), rgba(8, 8, 8, 0.98));
}

.faq-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
  gap: 18px;
}

.faq-panel,
.contact-panel {
  padding: clamp(24px, 3vw, 40px);
}

.compact {
  margin-bottom: 24px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.faq-item button {
  display: grid;
  grid-template-columns: 42px 1fr 28px;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 66px;
  padding: 0 18px;
  text-align: left;
}

.faq-question {
  color: var(--text);
}

.faq-sign {
  color: var(--gold);
  font-size: 24px;
  text-align: center;
}

.faq-item p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 18px;
  color: var(--muted);
  line-height: 1.6;
  transition: max-height 0.25s ease, padding 0.25s ease;
}

.faq-item.is-open p {
  max-height: 160px;
  padding: 0 18px 18px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}

.contact-methods button {
  display: grid;
  gap: 8px;
  min-height: 80px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  text-align: left;
}

.contact-methods span {
  color: var(--muted);
  font-size: 12px;
}

.contact-methods strong {
  font-weight: 400;
}

.contact-panel h2 {
  font-size: clamp(34px, 3.4vw, 56px);
}

.contact-panel form {
  display: grid;
  gap: 16px;
}

.contact-panel label {
  display: grid;
  gap: 10px;
}

.contact-panel input {
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
}

#formStatus {
  min-height: 24px;
  margin: 0;
  color: var(--dim);
  font-size: 13px;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  width: var(--section);
  margin: 0 auto;
  padding: 36px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
}

.footer-brand {
  display: grid;
  gap: 8px;
}

.footer-brand-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand strong {
  color: var(--text);
}

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

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  max-width: 360px;
  padding: 14px 16px;
  border: 1px solid rgba(216, 181, 138, 0.32);
  border-radius: 8px;
  background: rgba(14, 14, 14, 0.92);
  box-shadow: var(--shadow);
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3, 3, 3, 0.72);
  backdrop-filter: blur(18px);
}

.modal-overlay[hidden] {
  display: none;
}

.modal-card {
  position: relative;
  width: min(100%, 980px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border: 1px solid rgba(216, 181, 138, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 12%, rgba(216, 181, 138, 0.13), transparent 18rem),
    linear-gradient(145deg, rgba(24, 24, 24, 0.98), rgba(8, 8, 8, 0.98));
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.72);
}

.project-modal-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.modal-thumb {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 75% 24%, rgba(216, 181, 138, 0.16), transparent 12rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
}

.modal-thumb > * {
  position: absolute;
}

.modal-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 30px 18px 18px 0;
}

.modal-kicker {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.modal-copy h3,
.thanks-modal-card h3 {
  margin: 0;
  font-size: clamp(34px, 3.2vw, 56px);
  font-weight: 300;
  line-height: 1.06;
}

.modal-copy p,
.thanks-modal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.modal-details {
  display: grid;
  gap: 10px;
}

.modal-details > div {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.modal-details span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.modal-details strong {
  font-weight: 400;
  line-height: 1.5;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.thanks-modal-card {
  display: grid;
  gap: 18px;
  width: min(100%, 540px);
  padding: 42px;
}

.thanks-modal-card .primary-button {
  justify-self: start;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
  filter: brightness(0.78);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: brightness(1);
}

@keyframes orbit-dot {
  from {
    transform: rotate(0deg) translateX(18vw) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(18vw) rotate(-360deg);
  }
}

@media (max-width: 1020px) {
  .topnav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .topbar {
    grid-template-columns: auto 1fr;
  }

  .topbar-actions {
    justify-self: end;
  }

  .hero,
  .about-grid,
  .section-head,
  .services-layout,
  .faq-contact,
  .footer {
    grid-template-columns: 1fr;
  }

  .services-layout {
    gap: 18px;
  }

  .service-visual {
    min-height: 560px;
  }

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

@media (max-width: 760px) {
  .section {
    width: calc(100% - 28px);
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 112px 0 40px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 68px);
  }

  .hero-visual,
  .ambient-orbits {
    display: none;
  }

  .hero-stats,
  .service-stats,
  .service-mini-grid,
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .stat-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .about,
  .services,
  .cases,
  .faq-contact {
    padding: 72px 0;
  }

  .about-visual,
  .service-visual {
    min-height: 360px;
  }

  .about-photo-card {
    position: relative;
    inset: auto;
    min-height: 320px;
  }

  .about-float {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    margin-top: 14px;
  }

  .project-modal-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .modal-thumb {
    min-height: 280px;
  }

  .modal-copy {
    padding: 0;
  }

  .thanks-modal-card {
    padding: 28px;
  }

  .service-item {
    grid-template-columns: 38px 44px 1fr 28px;
    gap: 10px;
  }

  .case-card {
    grid-template-columns: 1fr;
  }

  .case-thumb {
    grid-column: 1;
    grid-row: auto;
    min-height: 280px;
  }

  .case-result {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 14px;
  }

  .footer {
    gap: 14px;
  }
}

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

/* Current layout tuning */
.hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.82fr);
  gap: 32px;
  min-height: 92vh;
  padding: 104px 0 28px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(38px, 4.35vw, 70px);
  line-height: 1.02;
}

.hero-text {
  max-width: 520px;
  margin-top: 18px;
  font-size: 16px;
}

.hero-actions {
  margin-top: 28px;
}

.hero-visual {
  min-height: 560px;
}

.hero-photo-card {
  left: 18px;
  top: 0;
  width: min(100%, 500px);
  height: 545px;
}

.hero-photo-card img {
  object-position: center 44%;
}

.hero-note {
  width: 220px;
  padding: 16px;
  gap: 6px;
  font-size: 14px;
}

.hero-note-top {
  top: 34px;
  right: 0;
}

.hero-note-bottom {
  right: 24px;
  bottom: 28px;
  width: 240px;
}

.hero-note-left {
  left: -4px;
  top: 46%;
  width: 218px;
}

.hero-note-middle {
  left: 42px;
  top: 72px;
  right: auto;
  width: 230px;
}

.hero-note-small {
  right: -2px;
  bottom: 178px;
  width: 210px;
}

.hero-stats {
  display: none;
}

.about,
.services,
.cases,
.faq-contact {
  padding: 66px 0;
}

.about {
  padding-top: 42px;
}

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

.section-head h2 {
  font-size: clamp(36px, 4.4vw, 68px);
}

.about-grid {
  gap: 34px;
}

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

.feature-card {
  min-height: 62px;
}

.about-visual {
  min-height: 670px;
}

.about-photo-card {
  inset: -18px 17% 5% 3%;
}

.about-photo-card img {
  object-position: center 36%;
}

.about-float {
  width: 250px;
  padding: 16px;
  font-size: 14px;
}

.about-float-left {
  top: 8%;
  right: 0;
}

.about-float-right {
  right: -2px;
  bottom: 28%;
}

.about-float-top {
  left: 0;
  top: 8px;
}

.about-float-center {
  left: -8px;
  bottom: 18%;
  width: 250px;
}

.about-float-bottom {
  right: 28px;
  bottom: 16px;
  width: 270px;
}

.service-visual {
  min-height: 640px;
}

.service-image-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

.service-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.service-mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cases .section-head {
  display: block;
}

.cases .section-head h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(34px, 4vw, 60px);
}

.case-card {
  grid-template-columns: minmax(220px, 0.72fr) minmax(260px, 1fr);
  min-height: 360px;
  padding: 22px;
}

.case-card h3 {
  font-size: clamp(25px, 1.9vw, 34px);
}

.case-card p {
  margin: 0;
}

.case-card button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(216, 181, 138, 0.45);
  border-radius: 8px;
  background: rgba(216, 181, 138, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.case-thumb {
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 14px;
}

.case-thumb > * {
  position: static;
}

.case-thumb img,
.modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.case-result {
  display: none;
}

.modal-thumb {
  min-height: 470px;
  display: grid;
  place-items: center;
  padding: 16px;
}

.faq-contact {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.9fr);
}

.faq-panel h2 {
  font-size: clamp(32px, 3.4vw, 52px);
}

.faq-panel .section-head p {
  font-size: 15px;
}

.contact-area {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  scroll-margin-top: 120px;
}

.contact-info-panel,
.contact-form-panel {
  min-width: 0;
}

.contact-panel h2 {
  max-width: 620px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.08;
}

.contact-methods {
  grid-template-columns: 1fr;
  margin: 24px 0 0;
}

.contact-methods button {
  min-height: 58px;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.contact-methods a {
  display: grid;
  gap: 8px;
  min-height: 58px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  text-align: left;
  color: inherit;
  text-decoration: none;
}

.contact-method-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.contact-method-line i {
  color: var(--gold);
  font-style: normal;
}

.contact-form-panel form {
  gap: 14px;
}

.footer {
  display: block;
  padding: 0 0 34px;
  border-top: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(150px, 0.55fr) minmax(250px, 0.8fr) minmax(220px, 0.7fr);
  gap: 42px;
  padding: 42px 0 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 0;
  border-right: 0;
}

.footer-brand {
  align-content: start;
  gap: 12px;
}

.footer-brand-line strong {
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-title {
  display: block;
  margin-bottom: 18px;
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-nav,
.footer-services,
.footer-contacts {
  display: grid;
  gap: 12px;
}

.footer-nav button,
.footer-services button,
.footer-contacts button,
.footer-socials button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
}

.footer-nav button:hover,
.footer-services button:hover,
.footer-contacts button:hover {
  color: var(--gold);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-socials button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(216, 181, 138, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
  text-align: center;
}

.footer-contacts button {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contacts a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.footer-contacts span {
  color: var(--gold);
}

.footer-contacts strong {
  font-weight: 400;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
}

@media (max-width: 1180px) {
  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 600px;
  }

  .hero-photo-card {
    width: min(100%, 560px);
  }

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

@media (min-width: 1021px) and (max-width: 1280px) {
  .services-layout {
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  }

  .services-nav {
    max-height: 720px;
    overflow: auto;
  }

  .service-panel {
    min-height: 0;
  }

  .service-visual {
    grid-column: 1 / -1;
    min-height: 520px;
  }

  .faq-contact {
    grid-template-columns: 1fr;
  }

  .contact-area {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  }
}

@media (max-width: 760px) {
  .hero h1 {
    font-size: clamp(34px, 10.5vw, 54px);
  }

  .feature-row,
  .service-mini-grid {
    grid-template-columns: 1fr;
  }

  .cases .section-head h2 {
    white-space: normal;
  }

  .case-card {
    min-height: 0;
  }

  .faq-contact,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}

/* Current layout tuning 2 */
.hero {
  position: relative;
  padding-bottom: 22px;
}

.about,
.services,
.cases,
.faq-contact {
  padding: 52px 0;
}

.about {
  padding-top: 34px;
}

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

.hero-actions {
  gap: 12px;
}

.hero-scroll-down {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-left: 0;
  border: 1px solid rgba(216, 181, 138, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
  cursor: pointer;
  animation: hero-bounce 1.8s ease-in-out infinite;
}

.hero-scroll-down span {
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  transform: none;
}

.hero-copy > *,
.hero-visual > * {
  opacity: 0;
  transform: translateY(22px);
}

body.page-ready .hero-copy > *,
body.page-ready .hero-visual > * {
  animation: rise-in 0.55s ease forwards;
}

body.page-ready .hero-copy > :nth-child(1) { animation-delay: 0.04s; }
body.page-ready .hero-copy > :nth-child(2) { animation-delay: 0.1s; }
body.page-ready .hero-copy > :nth-child(3) { animation-delay: 0.16s; }
body.page-ready .hero-copy > :nth-child(4) { animation-delay: 0.22s; }
body.page-ready .hero-visual > :nth-child(1) { animation-delay: 0.18s; }
body.page-ready .hero-visual > :nth-child(2) { animation-delay: 0.28s; }
body.page-ready .hero-visual > :nth-child(3) { animation-delay: 0.38s; }
body.page-ready .hero-visual > :nth-child(4) { animation-delay: 0.46s; }
body.page-ready .hero-visual > :nth-child(5) { animation-delay: 0.54s; }
body.page-ready .hero-visual > :nth-child(6) { animation-delay: 0.62s; }

.about .section-head > div,
.about .section-head > p,
.about-copy > *,
.about-visual > * {
  opacity: 0;
  transform: translateY(22px);
}

.about.is-visible .section-head > div,
.about.is-visible .section-head > p,
.about.is-visible .about-copy > *,
.about.is-visible .about-visual > * {
  animation: rise-in 0.55s ease forwards;
}

.about.is-visible .section-head > div { animation-delay: 0.03s; }
.about.is-visible .section-head > p { animation-delay: 0.1s; }
.about.is-visible .about-copy > :nth-child(1) { animation-delay: 0.16s; }
.about.is-visible .about-copy > :nth-child(2) { animation-delay: 0.24s; }
.about.is-visible .about-visual > :nth-child(1) { animation-delay: 0.14s; }
.about.is-visible .about-visual > :nth-child(2) { animation-delay: 0.24s; }
.about.is-visible .about-visual > :nth-child(3) { animation-delay: 0.34s; }
.about.is-visible .about-visual > :nth-child(4) { animation-delay: 0.44s; }
.about.is-visible .about-visual > :nth-child(5) { animation-delay: 0.54s; }
.about.is-visible .about-visual > :nth-child(6) { animation-delay: 0.64s; }

.services-layout {
  gap: 12px;
}

.service-panel {
  padding: 28px;
}

.service-panel h3 {
  margin-top: 18px;
}

.service-stats {
  padding-top: 18px;
}

.service-visual-inner {
  gap: 14px;
  padding: 22px;
}

.service-image-frame {
  min-height: 300px;
}

.service-image-frame img {
  min-height: 300px;
}

.service-mini-grid,
.service-metrics {
  gap: 10px;
}

.service-mini-grid[hidden] {
  display: none;
}

.cases-grid {
  gap: 14px;
}

.faq-contact {
  gap: 14px;
}

.contact-methods {
  gap: 8px;
}

.contact-methods a {
  min-height: 56px;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@media (max-width: 760px) {
  .header-cta {
    display: none;
  }

  .topbar {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 104px 0 30px;
  }

  .hero h1 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .hero-text {
    font-size: 14px;
    line-height: 1.6;
  }

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

  .hero-actions .primary-button,
  .hero-actions .text-button {
    width: 100%;
    min-height: 44px;
  }

  .hero-scroll-down {
    display: none;
  }

  .hero-visual {
    display: block;
    min-height: 360px;
    margin-top: 4px;
  }

  .hero-photo-card {
    left: 50%;
    top: 0;
    width: min(100%, 320px);
    height: 350px;
    transform: translateX(-50%);
  }

  body.page-ready .hero-photo-card {
    opacity: 1;
    animation: none;
    transform: translateX(-50%);
  }

  .hero-ring,
  .ambient-orbits {
    display: none;
  }

  .hero-note {
    width: 138px;
    padding: 9px;
    gap: 4px;
    font-size: 10.5px;
    line-height: 1.25;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.42);
  }

  .hero-note strong {
    font-size: 11.5px;
  }

  .hero-note-top {
    top: 18px;
    right: 8px;
  }

  .hero-note-middle {
    top: 44px;
    left: 18px;
  }

  .hero-note-left {
    top: 160px;
    left: 10px;
  }

  .hero-note-small {
    right: 8px;
    bottom: 100px;
  }

  .hero-note-bottom {
    right: 28px;
    bottom: 18px;
    width: 158px;
  }

  .about,
  .services,
  .cases,
  .faq-contact {
    padding: 34px 0;
  }

  .section-head {
    gap: 14px;
    margin-bottom: 16px;
  }

  .section-head h2,
  .cases .section-head h2,
  .contact-panel h2 {
    font-size: clamp(28px, 8vw, 38px);
    white-space: normal;
  }

  .about-grid,
  .services-layout,
  .faq-contact {
    gap: 14px;
  }

  .about-visual {
    position: relative;
    display: block;
    min-height: 340px;
  }

  .about-photo-card {
    position: absolute;
    inset: 0 24px;
    min-height: 0;
    height: 330px;
  }

  .about-float {
    position: absolute;
    width: 138px;
    margin: 0;
    padding: 9px;
    gap: 4px;
    font-size: 10.5px;
    line-height: 1.25;
  }

  .about-float strong {
    font-size: 11.5px;
  }

  .about-float-left {
    top: 22px;
    right: 4px;
  }

  .about-float-top {
    top: 42px;
    left: 2px;
  }

  .about-float-center {
    left: 4px;
    bottom: 92px;
    width: 140px;
  }

  .about-float-right {
    right: 0;
    bottom: 76px;
  }

  .about-float-bottom {
    right: 52px;
    bottom: 12px;
    width: 160px;
  }

  .feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .feature-card {
    min-height: 48px;
    padding: 11px 12px;
    font-size: 13px;
  }

  .services-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }

  .service-item {
    grid-template-columns: 34px 1fr 26px;
    min-width: 210px;
    min-height: 52px;
    padding: 9px 10px;
    scroll-snap-align: start;
  }

  .service-icon {
    display: none;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .service-name {
    font-size: 14px;
  }

  .service-panel,
  .service-visual,
  .faq-panel,
  .contact-panel,
  .case-card {
    padding: 18px;
  }

  .service-panel {
    min-height: 0;
  }

  .service-panel h3 {
    font-size: clamp(26px, 7vw, 34px);
  }

  .service-panel p,
  .section-head p {
    font-size: 14px;
    line-height: 1.55;
  }

  .check-list {
    gap: 9px;
    margin-top: 16px;
    font-size: 13px;
  }

  .service-stats {
    display: none;
  }

  .service-stat {
    padding: 10px;
    font-size: 12px;
  }

  .service-stat strong,
  .visual-card strong {
    font-size: 16px;
  }

  .service-visual {
    min-height: 0;
  }

  .service-visual-inner {
    gap: 12px;
    padding: 0;
  }

  .service-visual-copy h4 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .service-image-frame {
    min-height: 190px;
    height: 190px;
  }

  .service-image-frame img {
    min-height: 190px;
  }

  .service-mini-grid {
    display: none;
  }

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

  .service-metrics > div {
    padding: 12px;
  }

  .case-card {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 12px;
  }

  .case-thumb {
    grid-row: 4;
    min-height: 210px;
    padding: 8px;
  }

  .case-card h3 {
    font-size: 24px;
  }

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

  .case-tags {
    gap: 6px;
  }

  .case-tags span {
    padding: 7px 9px;
    font-size: 11px;
  }

  .case-card button {
    width: 100%;
    min-height: 42px;
  }

  .project-modal-card {
    width: min(100%, 360px);
    max-height: calc(100vh - 24px);
    padding: 14px;
    gap: 12px;
  }

  .modal-thumb {
    min-height: 190px;
    padding: 8px;
  }

  .modal-copy {
    gap: 10px;
  }

  .modal-copy h3,
  .thanks-modal-card h3 {
    font-size: 26px;
  }

  .modal-copy p,
  .thanks-modal-card p,
  .modal-details strong {
    font-size: 13px;
    line-height: 1.45;
  }

  .modal-details {
    gap: 8px;
  }

  .modal-details > div {
    padding: 10px;
  }

  .modal-actions {
    display: grid;
    gap: 8px;
  }

  .modal-actions .primary-button,
  .modal-actions .text-button {
    width: 100%;
    min-height: 42px;
  }

  .thanks-modal-card {
    width: min(100%, 340px);
    padding: 26px;
  }
}

@media (min-width: 761px) and (max-width: 1020px) {
  .about,
  .services,
  .cases,
  .faq-contact {
    padding: 48px 0;
  }

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

  .service-item {
    min-height: 64px;
    grid-template-columns: 34px 42px 1fr 28px;
    padding: 10px 12px;
  }

  .service-icon {
    width: 42px;
    height: 42px;
  }

  .service-panel,
  .service-visual {
    min-height: 0;
  }

  .service-panel {
    padding: 26px;
  }

  .service-stats {
    margin-top: 20px;
  }

  .service-visual-inner {
    padding: 24px;
  }

  .service-image-frame {
    min-height: 280px;
    height: 280px;
  }

  .service-image-frame img {
    min-height: 280px;
  }

  .case-card {
    min-height: 0;
  }
}
