:root {
  --bg: #080b0d;
  --bg-soft: #0d1214;
  --panel: #121719;
  --panel-2: #171d20;
  --line: rgba(226, 137, 45, 0.22);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f7f4ee;
  --muted: #a9aaa7;
  --amber: #ef8b2c;
  --amber-2: #ffad55;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
  --radius: 8px;
  color-scheme: dark;
  font-family: Inter, Manrope, Sora, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  max-width: 100%;
  color: var(--text);
  background:
    radial-gradient(circle at 72% 6%, rgba(239, 139, 44, 0.13), transparent 30rem),
    radial-gradient(circle at 12% 24%, rgba(255, 255, 255, 0.05), transparent 22rem),
    linear-gradient(180deg, #07090b 0%, #0b0f11 44%, #090c0e 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(115deg, transparent 0 47%, rgba(255, 255, 255, 0.035) 48%, transparent 49% 100%),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 460px 460px, 100% 88px;
  opacity: 0.5;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
*:focus-visible {
  outline: 2px solid var(--amber-2);
  outline-offset: 3px;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: #130e09;
  background: var(--amber-2);
  font-weight: 800;
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }
.anchor-target {
  display: block;
  position: relative;
  top: -58px;
  visibility: hidden;
}
.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0;
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(7, 9, 11, 0.78);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 40px));
  height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand strong { color: var(--amber); }
.brand-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #0b0d0e;
  font-weight: 900;
  clip-path: polygon(0 0, 28% 0, 50% 32%, 72% 0, 100% 0, 100% 100%, 72% 100%, 72% 38%, 50% 70%, 28% 38%, 28% 100%, 0 100%);
  background: linear-gradient(135deg, var(--amber), #f6b05d);
}

.nav-panel, .nav-links, .nav-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0.9rem;
  color: #dad8d2;
}
.nav-links a:hover, .lang-button.active { color: var(--amber-2); }
.nav-actions { gap: 18px; }
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #858580;
  font-size: 0.88rem;
}
.lang-button {
  color: #c7c4bc;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}

.button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 0 22px;
  font-weight: 720;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #17100a;
  background: linear-gradient(135deg, #ff9b37, #e8771d);
  box-shadow: 0 14px 35px rgba(239, 139, 44, 0.26);
}
.button-ghost {
  color: #f1eee8;
  background: rgba(255,255,255,0.035);
  border-color: rgba(255,255,255,0.14);
}
.play-dot {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  position: relative;
}
.play-dot::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 7px;
  border-left: 6px solid var(--amber-2);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 24px;
  padding-top: 18px;
}
.hero-copy, .hero-visual, .mock-content { min-width: 0; }
.hero-copy {
  position: relative;
  z-index: 2;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 830;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 8px;
  font-size: clamp(2.25rem, 4vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: 0;
}
.hero-accent {
  margin: 0 0 22px;
  color: var(--amber);
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  font-weight: 850;
  line-height: 1.08;
}
h2 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 2.7vw, 2.55rem);
  line-height: 1.13;
  letter-spacing: 0;
}
.hero-lead, .section-heading p, .contact-info p, .footer p {
  color: var(--muted);
  line-height: 1.75;
}
.hero-lead { max-width: 560px; font-size: 0.98rem; }
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 26px 0 24px;
}
.hero-buttons .button {
  min-width: 184px;
}
.hero-buttons .button-ghost {
  min-width: 236px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(116px, 1fr));
  align-items: center;
  gap: 18px;
  width: min(620px, 132%);
  max-width: none;
}
.stat {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 60px;
  min-width: 0;
}
.stat-icon, .card-icon, .timeline-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--amber-2);
  background: rgba(239,139,44,0.07);
}
.stat-icon svg, .card-icon svg, .timeline-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stat b { display: block; color: var(--amber-2); font-size: 1.15rem; }
.stat small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
  max-width: 96px;
}

.hero-visual {
  min-height: 590px;
  position: relative;
  perspective: 1400px;
}
.hero-image-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 590px;
  padding-top: 10px;
}
.hero-image {
  width: min(880px, 136%);
  max-width: none;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 8px;
  margin-right: -34px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 16%, rgba(0,0,0,0.45) 25%, #000 36%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, transparent 16%, rgba(0,0,0,0.45) 25%, #000 36%, #000 100%);
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.52));
  animation: floatC 8s ease-in-out infinite;
}
.dashboard-device, .dashboard-mock, .phone-mock, .web-mock, .mini-card, .laptop-mock {
  position: absolute;
}
.dashboard-mock, .phone-mock, .web-mock, .mini-card {
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(145deg, rgba(32,37,40,0.98), rgba(12,15,17,0.96));
  box-shadow: var(--shadow);
}
.dashboard-device {
  top: 16px;
  right: 120px;
  width: min(520px, 80%);
  height: 365px;
}
.dashboard-mock {
  inset: 0 0 35px 0;
  border-radius: 18px;
  padding: 16px;
  animation: floatA 6s ease-in-out infinite;
}
.monitor-stand {
  position: absolute;
  left: 47%;
  bottom: 11px;
  width: 34px;
  height: 36px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, #3b342d, #8b6a4a, #272a2b);
}
.monitor-base {
  position: absolute;
  left: 37%;
  right: 25%;
  bottom: 0;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(255, 174, 98, 0.45), transparent);
  filter: blur(0.4px);
}
.mock-top, .web-nav {
  height: 24px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 14px;
}
.mock-top span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--amber);
}
.mock-top b {
  float: right;
  color: #b7b3ab;
  font-size: 0.72rem;
}
.mock-layout { display: grid; grid-template-columns: 84px minmax(0, 1fr); gap: 16px; height: calc(100% - 38px); }
.mock-sidebar {
  border-radius: 8px;
  padding: 12px;
  background: rgba(255,255,255,0.035);
}
.mock-sidebar i {
  display: block;
  height: 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.13);
}
.mock-content { display: grid; gap: 14px; }
.mock-kpis { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.mock-kpis b {
  min-width: 0;
  padding: 12px;
  border-radius: 7px;
  background: rgba(255,255,255,0.05);
  color: #f7eee3;
  font-size: 0.9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mock-analytics {
  display: grid;
  grid-template-columns: 1fr 104px;
  gap: 12px;
}
.chart-line {
  min-height: 118px;
  border-radius: 8px;
  background:
    linear-gradient(152deg, transparent 38%, rgba(239,139,44,0.8) 39% 41%, transparent 42%),
    linear-gradient(24deg, transparent 48%, rgba(239,139,44,0.45) 49% 51%, transparent 52%),
    rgba(255,255,255,0.045);
}
.donut-chart {
  min-height: 118px;
  border-radius: 8px;
  background:
    radial-gradient(circle, #171c1f 0 28%, transparent 29%),
    conic-gradient(var(--amber) 0 42%, #46b7a2 42% 68%, #6f5bd6 68% 82%, rgba(255,255,255,0.16) 82% 100%);
  box-shadow: inset 0 0 0 18px rgba(16,20,22,0.82);
}
.mock-table { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.mock-table span { height: 20px; border-radius: 5px; background: rgba(255,255,255,0.06); }

.phone-mock {
  left: 50px;
  top: 205px;
  width: 150px;
  height: 275px;
  border-radius: 28px;
  padding: 20px 12px;
  animation: floatB 7s ease-in-out infinite;
}
.phone-speaker { width: 45px; height: 5px; border-radius: 999px; margin: 0 auto 18px; background: rgba(255,255,255,0.28); }
.phone-title { height: 70px; border-radius: 12px; background: linear-gradient(135deg, rgba(239,139,44,0.9), rgba(255,255,255,0.08)); }
.phone-list { display: grid; gap: 10px; margin-top: 16px; }
.phone-list span { height: 30px; border-radius: 8px; background: rgba(255,255,255,0.08); }
.phone-tabs { display: flex; justify-content: space-around; margin-top: 14px; }
.phone-tabs i { width: 18px; height: 5px; border-radius: 999px; background: rgba(239,139,44,0.65); }

.laptop-mock {
  right: 0;
  bottom: 24px;
  width: min(430px, 74%);
  animation: floatC 8s ease-in-out infinite;
}
.web-mock {
  position: relative;
  width: 100%;
  min-height: 230px;
  border-radius: 14px;
  padding: 18px;
  background:
    linear-gradient(rgba(8,10,12,0.3), rgba(8,10,12,0.7)),
    linear-gradient(135deg, rgba(255,255,255,0.19), rgba(239,139,44,0.08));
}
.laptop-base {
  display: block;
  height: 16px;
  margin: -1px 18px 0;
  border-radius: 0 0 22px 22px;
  background: linear-gradient(90deg, #4b4d4c, #b7a892, #3e4141);
  box-shadow: 0 14px 28px rgba(0,0,0,0.35);
}
.web-nav span {
  display: inline-block;
  width: 44px;
  height: 5px;
  margin-right: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
}
.web-mock h2 { max-width: 260px; font-size: 1.55rem; margin-top: 34px; }
.web-mock p { color: #d1ccc3; }
.web-mock button {
  border: 0;
  border-radius: 6px;
  padding: 9px 17px;
  color: #120d08;
  background: var(--amber);
}
.mini-card {
  width: 120px;
  padding: 14px;
  border-radius: 10px;
  color: var(--muted);
}
.mini-card strong { color: var(--amber-2); font-size: 1.25rem; }
.mini-card-one { right: 26px; top: 142px; }
.mini-card-two { left: 216px; bottom: 52px; }

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}
.card-grid, .solution-grid, .project-grid, .benefit-grid {
  display: grid;
  gap: 16px;
}
.service-grid { grid-template-columns: repeat(3, 1fr); }
.service-card, .solution-card, .project-card, .benefit-card, .contact-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(24,30,32,0.92), rgba(12,16,18,0.92));
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}
.service-card, .solution-card, .benefit-card {
  min-height: 184px;
  padding: 30px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}
.service-card {
  min-height: 172px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  column-gap: 20px;
  align-items: center;
}
.service-card .card-icon {
  grid-row: 1 / 4;
  align-self: start;
}
.service-card:hover, .solution-card:hover, .project-card:hover, .benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  background: linear-gradient(145deg, rgba(30,37,39,0.96), rgba(13,17,19,0.96));
}
.service-card h3, .benefit-card h3 { margin: 14px 0 8px; }
.service-card h3 { margin: 0 0 8px; font-size: 1.12rem; }
.service-card p, .solution-card p, .project-card p, .benefit-card p {
  color: var(--muted);
  line-height: 1.55;
}
.service-card p { margin-bottom: 10px; font-size: 0.94rem; }
.service-card .detail-link { font-size: 0.9rem; }
.detail-link { color: var(--amber-2); font-weight: 760; font-size: 0.92rem; }

.problem-section {
  border-block: 1px solid var(--line-soft);
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background: rgba(255,255,255,0.015);
}
.solution-grid { grid-template-columns: repeat(3, 1fr); }
.solution-card { display: grid; gap: 18px; }
.solution-card strong { font-size: 1.05rem; }
.solution-card p { margin-bottom: 0; }
.solution-card .label { color: var(--amber); font-weight: 820; font-size: 0.75rem; text-transform: uppercase; }
.solution-card strong { display: block; font-size: 1.16rem; line-height: 1.45; }
.arrow-pill {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #15100b;
  background: var(--amber);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.timeline-step {
  position: relative;
  padding: 0 12px;
  text-align: center;
}
.timeline-icon {
  margin: 0 auto 12px;
  background: #14191b;
}
.timeline-step h3 { margin-bottom: 8px; font-size: 1rem; }
.timeline-step p { font-size: 0.88rem; }
.timeline-step p { color: var(--muted); line-height: 1.55; }

.project-grid { grid-template-columns: repeat(5, 1fr); }
.project-card {
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease;
}
.project-screen {
  height: 145px;
  padding: 0;
  border-bottom: 1px solid var(--line-soft);
  background: #0d1113;
  overflow: hidden;
}
.project-screen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.screen-chrome { height: 16px; border-radius: 4px; background: #1d2326; margin-bottom: 10px; padding: 5px; }
.screen-chrome span {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 4px;
  border-radius: 50%;
  background: var(--amber);
}
.screen-ui { display: grid; grid-template-columns: 34px 1fr; gap: 10px; height: calc(100% - 26px); }
.screen-ui aside { border-radius: 5px; background: #22282b; }
.screen-ui main { min-width: 0; }
.screen-ui b { display: block; height: 12px; margin-bottom: 8px; border-radius: 999px; background: rgba(30,35,38,0.28); }
.screen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.screen-grid span { height: 38px; border-radius: 5px; background: linear-gradient(135deg, #fbf8f2, #d2cbc0); }
.project-screen-2 .screen-grid { grid-template-columns: repeat(3, 1fr); }
.project-screen-2 .screen-ui aside { border-radius: 18px; background: linear-gradient(#1b2023, #111416); }
.project-screen-3 .screen-grid span { background: linear-gradient(180deg, #eaf7fb, #92cbe1); }
.project-screen-4 .screen-grid span { background: linear-gradient(135deg, #fffaf3, #b89d7d); }
.project-screen-5 .screen-grid span { background: linear-gradient(90deg, #ffffff, #dadfe3); }
.project-body { padding: 18px; }
.project-body h3 { margin-bottom: 9px; font-size: 1.1rem; }
.project-body p { margin-bottom: 12px; font-size: 0.94rem; line-height: 1.55; }
.project-body .detail-link { font-size: 0.9rem; }
.section-action {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
.section-action .button {
  min-width: 320px;
  color: #d9d4cc;
  background: rgba(255,255,255,0.025);
  border-color: var(--line);
}
.tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 8px;
  border-radius: 6px;
  color: #f7c28a;
  border: 1px solid var(--line);
  background: rgba(239,139,44,0.08);
  font-size: 0.74rem;
}

.benefit-grid { grid-template-columns: repeat(6, 1fr); }
.benefit-card {
  min-height: 150px;
  padding: 22px;
  text-align: center;
}
.benefit-card .card-icon { margin: 0 auto 12px; width: 48px; height: 48px; }
.benefit-card h3 { font-size: 1rem; }

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(10,12,13,0.62), rgba(10,12,13,0.94)),
    linear-gradient(135deg, rgba(239,139,44,0.1), transparent 48%),
    var(--panel);
}
.contact-info {
  min-height: 315px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(10,12,13,0.98) 0%, rgba(10,12,13,0.86) 42%, rgba(10,12,13,0.2) 100%),
    linear-gradient(0deg, rgba(10,12,13,0.92), rgba(10,12,13,0.18)),
    url("./assets/contact-workspace.webp") center / cover no-repeat;
}
.contact-copy {
  position: relative;
  z-index: 1;
}
.contact-info h2 { font-size: clamp(1.8rem, 2.7vw, 2.65rem); }
.contact-info ul, .footer ul {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  color: #d8d3ca;
}
.contact-info li { margin: 14px 0; }
.contact-info span { color: var(--amber); margin-right: 10px; }
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 16px;
}
.contact-form label { display: grid; gap: 7px; color: #c9c5be; font-size: 0.86rem; }
.contact-form > input[type="hidden"] {
  display: none !important;
}
.field-name { grid-column: 1; grid-row: 1; }
.field-email { grid-column: 2; grid-row: 1; }
.field-phone { grid-column: 1; grid-row: 2; }
.field-company { grid-column: 2; grid-row: 2; }
.full { grid-column: 1 / -1; }
input, select, textarea, .select-button {
  width: 100%;
  min-height: 50px;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 7px;
  background: rgba(255,255,255,0.035);
  padding: 12px 14px;
  outline: none;
}
.contact-form label {
  position: relative;
}
select {
  color-scheme: dark;
  appearance: auto;
}
select option {
  color: #f7f4ee;
  background: #111619;
}
select option:checked,
select option:hover {
  color: #120d08;
  background: #ffad55;
}
textarea { resize: vertical; }
textarea {
  min-height: 104px;
}
input:focus, select:focus, textarea:focus, .select-button:focus { border-color: var(--amber); }
.select-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
.select-button::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.18s ease;
}
.select-button[aria-expanded="true"] {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(239,139,44,0.14);
}
.select-button[aria-expanded="true"]::after {
  transform: rotate(225deg) translateY(-2px);
}
.select-list {
  position: absolute;
  z-index: 20;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 245px;
  margin: 0;
  padding: 6px;
  list-style: none;
  border: 1px solid var(--amber);
  border-radius: 7px;
  background: #101517;
  box-shadow: 0 18px 34px rgba(0,0,0,0.42);
}
.select-option {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  border: 0;
  border-radius: 6px;
  padding: 0 12px;
  color: #f7f4ee;
  background: transparent;
  text-align: left;
}
.select-option:hover,
.select-option:focus,
.select-option[aria-selected="true"] {
  color: #130e09;
  background: #ffad55;
}
.spam-field {
  display: none !important;
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}
.form-note, .form-success {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}
.form-success { color: #ffc17f; }
.form-success.is-error { color: #ff8f72; }

.footer {
  border-top: 1px solid var(--line);
  background: #090c0e;
}
.footer-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0;
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 34px;
}
.footer h3 { margin-bottom: 14px; font-size: 1rem; }
.footer li { margin: 8px 0; color: var(--muted); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  color: var(--muted);
  background: rgba(255,255,255,0.025);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.socials a:hover {
  color: var(--amber-2);
  border-color: var(--line);
  transform: translateY(-2px);
}
.socials svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #7f807b;
  border-top: 1px solid var(--line-soft);
  font-size: 0.86rem;
}
.footer-bottom a { margin-left: 24px; }

.legal-page {
  width: min(860px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 48px 0;
}
.legal-card {
  margin-top: 42px;
  padding: 38px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(24,30,32,0.94), rgba(12,16,18,0.94));
  box-shadow: var(--shadow);
}
.legal-card h1 {
  max-width: 680px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}
.legal-card p {
  color: var(--muted);
  line-height: 1.75;
}
.legal-card .button {
  margin-top: 18px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
body.motion-ready .reveal { opacity: 0; transform: translateY(22px); }
body.motion-ready .reveal.in-view { opacity: 1; transform: translateY(0); }
@keyframes floatA { 50% { transform: translateY(-10px) rotateX(1deg); } }
@keyframes floatB { 50% { transform: translateY(12px); } }
@keyframes floatC { 50% { transform: translateY(-8px); } }

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

@media (max-width: 1100px) {
  .nav-links { gap: 16px; font-size: 0.82rem; }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 500px; }
  .service-grid, .solution-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
  .timeline::before { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { width: 100%; gap: 16px; }
  .stat { min-width: 116px; }
}

@media (max-width: 900px) {
  .section, .nav-shell, .footer-grid, .footer-bottom { width: min(100% - 28px, 1180px); }
  .menu-toggle { display: block; }
  .nav-panel {
    position: absolute;
    top: 58px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: rgba(10, 13, 15, 0.98);
  }
  .nav-panel.open { display: flex; }
  .nav-links, .nav-actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .nav-actions .button { width: 100%; }
}

@media (max-width: 760px) {
  .hero { padding-top: 30px; }
  .hero-visual { min-height: 430px; overflow: hidden; }
  .hero-image-wrap { min-height: 430px; justify-content: center; }
  .hero-image { width: min(760px, 115%); max-width: none; }
  .dashboard-device { right: 0; width: 92%; height: 315px; }
  .phone-mock { left: 0; top: 218px; transform: scale(0.88); transform-origin: top left; }
  .laptop-mock { width: 82%; right: 0; bottom: 0; }
  .mini-card { display: none; }
  .service-grid, .solution-grid, .project-grid, .benefit-grid, .contact-card, .contact-form {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
  }
  .stat {
    grid-template-columns: 50px minmax(0, 1fr);
    min-width: 0;
  }
  .section-action .button { width: 100%; min-width: 0; }
  .timeline { grid-template-columns: 1fr; text-align: left; }
  .timeline-step {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    text-align: left;
  }
  .timeline-icon { margin: 0; }
  .contact-card { padding: 24px; }
  .contact-info { min-height: 320px; padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom a { margin: 0 18px 0 0; }
}

@media (max-width: 460px) {
  h1 { font-size: 2.45rem; }
  .hero-buttons .button { width: 100%; }
  .hero-buttons .button,
  .hero-buttons .button-ghost {
    min-width: 0;
  }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 370px; }
  .hero-image-wrap { min-height: 370px; padding-top: 20px; }
  .hero-image { width: 128%; }
  .dashboard-device { height: 265px; }
  .dashboard-mock { padding: 12px; }
  .mock-layout { grid-template-columns: 54px minmax(0, 1fr); }
  .mock-kpis { gap: 6px; }
  .mock-kpis b { padding: 9px 7px; font-size: 0.76rem; }
  .mock-analytics { grid-template-columns: 1fr; }
  .donut-chart { display: none; }
  .phone-mock { width: 116px; height: 226px; top: 190px; }
  .web-mock { min-height: 180px; padding: 13px; }
  .web-mock h2 { font-size: 1.05rem; margin-top: 12px; }
  .service-card, .solution-card { padding: 22px; }
}
