:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --surface-soft: #f0f0ed;
  --ink: #111111;
  --muted: #666664;
  --line: rgba(17, 17, 17, 0.09);
  --accent: #ff9f0a;
  --accent-soft: #fff2dc;
  --shadow: 0 24px 70px rgba(18, 18, 16, 0.08);
  --radius-lg: 28px;
  --radius-md: 22px;
  --container: 1240px;
  --header-height: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--accent);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

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

.section {
  padding: 110px 0;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled,
.site-header.menu-active {
  background: rgba(247, 247, 245, 0.83);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(17, 17, 17, 0.04);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: none;
}

.brand-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: var(--surface);
  background: var(--ink);
  border-radius: 12px;
  font-family: Manrope, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.025em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #494947;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

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

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.015em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.button span {
  font-size: 16px;
  transition: transform 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover span {
  transform: translate(2px, -2px);
}

.button-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.12);
}

.button-dark:hover {
  background: #262626;
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.17);
}

.button-light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.75);
  border-color: var(--line);
}

.button-light:hover {
  background: #fff;
  border-color: rgba(17, 17, 17, 0.15);
}

.button-accent {
  color: var(--ink);
  background: var(--accent);
  box-shadow: 0 12px 32px rgba(255, 159, 10, 0.2);
}

.button-accent:hover {
  background: #ffae2f;
  box-shadow: 0 16px 38px rgba(255, 159, 10, 0.28);
}

.button-large {
  min-height: 56px;
  padding-inline: 25px;
  border-radius: 17px;
  font-size: 14px;
}

.button-full {
  width: 100%;
  margin-top: auto;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle.active span:first-child {
  transform: rotate(45deg);
}

.menu-toggle.active span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  width: 100vw;
  height: calc(100dvh - var(--header-height));
  display: none;
  padding: 28px 16px 24px;
  overflow-y: auto;
  background: rgba(247, 247, 245, 0.98);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  font-family: Manrope, sans-serif;
  font-size: clamp(25px, 8vw, 38px);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.mobile-menu nav span {
  color: var(--muted);
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.mobile-menu-cta {
  width: 100%;
  margin-top: 28px;
}

.hero {
  min-height: 850px;
  padding: 165px 0 95px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-glow-one {
  width: 490px;
  height: 490px;
  top: 12%;
  right: -150px;
  background: radial-gradient(circle, rgba(255, 159, 10, 0.17), rgba(255, 159, 10, 0) 68%);
}

.hero-glow-two {
  width: 420px;
  height: 420px;
  bottom: -230px;
  left: -130px;
  background: radial-gradient(circle, rgba(17, 17, 17, 0.06), transparent 67%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  color: #4c4c49;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 159, 10, 0.12);
}

.hero h1 {
  max-width: 770px;
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(46px, 5.45vw, 76px);
  line-height: 0.99;
  letter-spacing: -0.067em;
}

.hero h1 em,
.contact-card h2 em {
  color: var(--accent);
  font-style: normal;
}

.hero-lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  letter-spacing: -0.025em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 42px;
}

.hero-badges span,
.case-points span {
  padding: 8px 11px;
  color: #525250;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 550;
}

.hero-visual {
  position: relative;
  min-height: 565px;
  perspective: 1200px;
}

.visual-orbit {
  position: absolute;
  width: 430px;
  height: 430px;
  top: 70px;
  right: 20px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 50%;
}

.visual-orbit::before,
.visual-orbit::after {
  content: "";
  position: absolute;
  inset: 55px;
  border: inherit;
  border-radius: inherit;
}

.visual-orbit::after {
  inset: 115px;
}

.dashboard-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: transform 0.15s linear, box-shadow 0.3s ease;
  will-change: transform;
}

.dashboard-card:hover {
  box-shadow: 0 32px 80px rgba(18, 18, 16, 0.13);
}

.dashboard-card h2 {
  margin: 0 0 8px;
  font-family: Manrope, sans-serif;
  font-size: 22px;
  letter-spacing: -0.045em;
}

.dashboard-card p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.card-web {
  width: 320px;
  top: 0;
  left: 0;
  z-index: 3;
  transform: rotate(-4deg);
}

.card-bot {
  width: 298px;
  top: 175px;
  right: 0;
  z-index: 4;
  transform: rotate(4deg);
}

.card-ai {
  width: 338px;
  left: 28px;
  bottom: 0;
  z-index: 5;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
  background: #151513;
  transform: rotate(-1.5deg);
}

.card-ai p {
  color: rgba(255, 255, 255, 0.58);
}

.card-topline,
.service-card-head,
.price-name,
.case-meta,
.case-footer,
.assistant-head,
.bot-phone-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-icon,
.large-icon {
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

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

.large-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  font-size: 22px;
}

.icon-window {
  position: relative;
}

.icon-window::before {
  content: "";
  width: 18px;
  height: 14px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
}

.icon-window::after {
  content: "";
  position: absolute;
  width: 18px;
  top: 15px;
  border-top: 1px solid currentColor;
}

.icon-send {
  color: #2288d8;
  background: #e9f5ff;
}

.icon-spark {
  color: var(--ink);
  background: var(--accent);
  border-color: transparent;
}

.card-number,
.case-counter {
  color: #90908c;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.status-dot,
.ai-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #5d5d5a;
  font-size: 9px;
  text-transform: uppercase;
}

.status-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #40bd76;
}

.ai-label {
  color: rgba(255, 255, 255, 0.55);
}

.mini-browser {
  height: 58px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px 8px 0 0;
  background: #f8f8f6;
}

.mini-browser-bar {
  height: 14px;
  display: flex;
  align-items: center;
  gap: 3px;
  padding-left: 6px;
  border-bottom: 1px solid var(--line);
}

.mini-browser-bar i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #c6c6c2;
}

.mini-browser-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 7px;
}

.mini-browser-body span {
  grid-column: 1 / -1;
  width: 47%;
  height: 7px;
  border-radius: 2px;
  background: #1c1c1b;
}

.mini-browser-body b {
  height: 22px;
  border-radius: 3px;
  background: #e7e7e3;
}

.chat-preview {
  display: grid;
  gap: 6px;
  margin-top: 15px;
}

.chat-preview span {
  width: 72%;
  padding: 7px 9px;
  border-radius: 9px 9px 9px 3px;
  color: #5e5e5b;
  background: #f1f1ef;
  font-size: 8px;
}

.chat-preview span:last-child {
  justify-self: end;
  color: #1668a2;
  background: #e0f2ff;
  border-radius: 9px 9px 3px 9px;
}

.workflow-preview {
  display: flex;
  align-items: center;
  margin-top: 22px;
}

.workflow-preview i {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.workflow-preview i:first-child {
  background: var(--accent);
}

.workflow-preview span {
  width: 31px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 255, 255, 0.18));
}

.availability-pill {
  position: absolute;
  right: 14px;
  bottom: 22px;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.1);
  font-size: 9px;
  font-weight: 600;
}

.availability-pill i,
.contact-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #30b86b;
  box-shadow: 0 0 0 4px rgba(48, 184, 107, 0.12);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 430px);
  align-items: end;
  gap: 50px;
  margin-bottom: 54px;
}

.section-index {
  display: block;
  margin-bottom: 18px;
  color: #797976;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-heading h2,
.about-copy h2 {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.section-heading p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.services {
  background: #efefec;
}

.services-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card,
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 590px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover,
.price-card:hover {
  transform: translateY(-7px);
  border-color: rgba(17, 17, 17, 0.15);
  box-shadow: var(--shadow);
}

.service-card-featured {
  color: #fff;
  border-color: #22221f;
  background: #151513;
  box-shadow: 0 25px 60px rgba(17, 17, 17, 0.13);
}

.service-card-featured::before {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  top: -130px;
  right: -90px;
  border-radius: 50%;
  background: rgba(255, 159, 10, 0.16);
  filter: blur(5px);
}

.service-card-featured .card-number,
.service-card-featured > p,
.service-card-featured .feature-list {
  color: rgba(255, 255, 255, 0.59);
}

.service-card-featured .feature-list li {
  border-color: rgba(255, 255, 255, 0.09);
}

.service-card-featured .feature-list li::before {
  color: var(--accent);
  background: rgba(255, 159, 10, 0.13);
}

.service-card-featured .text-link {
  color: var(--accent);
  border-color: rgba(255, 255, 255, 0.1);
}

.featured-badge,
.price-badge {
  position: absolute;
  top: 18px;
  right: 56px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--accent);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.service-card h3,
.price-card h3 {
  margin: 36px 0 13px;
  font-family: Manrope, sans-serif;
  font-size: 29px;
  letter-spacing: -0.05em;
}

.service-card > p,
.price-card > p {
  min-height: 74px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.feature-list {
  display: grid;
  margin: 28px 0 32px;
  padding: 0;
  color: #50504e;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #6e6e6a;
  background: #f1f1ee;
  font-size: 9px;
}

.text-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 650;
}

.text-link span,
.social-links span {
  transition: transform 0.25s ease;
}

.text-link:hover span,
.social-links a:hover span {
  transform: translate(3px, -3px);
}

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

.cases-list {
  display: grid;
  gap: 18px;
}

.case-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.case-wide {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
}

.case-visual {
  position: relative;
  min-height: 410px;
  overflow: hidden;
}

.north-avenue-visual {
  min-height: 540px;
  background: #dad6cd;
}

.north-avenue-visual > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center 42%;
  filter: brightness(0.78);
  transition: transform 0.7s ease;
}

.case-card:hover .north-avenue-visual > img {
  transform: scale(1.025);
}

.north-avenue-brand {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 2;
  display: grid;
  color: #fff;
}

.north-avenue-brand small,
.north-avenue-brand span {
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.north-avenue-brand strong {
  margin: 14px 0;
  font-family: Manrope, sans-serif;
  font-size: clamp(46px, 5.5vw, 78px);
  line-height: 0.78;
  letter-spacing: -0.075em;
}

.velvet-table-visual {
  min-height: 540px;
  background: #0b0b0a;
}

.velvet-table-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 10, 0.18), rgba(11, 11, 10, 0.88));
}

.velvet-table-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.74) saturate(0.8);
  transition: transform 0.7s ease;
}

.case-card:hover .velvet-table-visual > img {
  transform: scale(1.025);
}

.velvet-table-brand {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: grid;
  color: #f5f0e8;
}

.velvet-table-brand small,
.velvet-table-brand span {
  color: #c9a86a;
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.velvet-table-brand strong {
  margin: 12px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6vw, 86px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.055em;
}

.mini-garage-visual {
  min-height: 540px;
  background: #0b0c0f;
}

.mini-garage-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 6, 8, 0.92), rgba(5, 6, 8, 0.04) 80%);
}

.mini-garage-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.case-card:hover .mini-garage-visual > img {
  transform: scale(1.025);
}

.mini-garage-brand {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 34px;
  display: grid;
  color: #fff;
  transform: translateY(-50%);
}

.mini-garage-brand small,
.mini-garage-brand span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mini-garage-brand strong {
  margin: 14px 0;
  font-family: Manrope, sans-serif;
  font-size: clamp(48px, 5.5vw, 78px);
  line-height: 0.86;
  letter-spacing: -0.065em;
}

.mini-garage-brand em {
  color: #f4b400;
  font-style: normal;
}

.case-counter {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(255, 255, 255, 0.55);
}

.pereuloq-visual {
  min-height: 540px;
  background: #1c1b19;
}

.pereuloq-visual::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  left: -150px;
  bottom: -220px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(3px);
  opacity: 0.85;
}

.browser-mockup {
  position: absolute;
  width: 78%;
  height: 72%;
  left: 7%;
  top: 13%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 13px;
  background: #f1eee6;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transform: rotate(-3deg);
}

.browser-header {
  height: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  border-bottom: 1px solid #d8d4cb;
}

.browser-header span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #aaa69f;
}

.browser-header small {
  margin-left: auto;
  color: #77736d;
  font-size: 7px;
  text-transform: uppercase;
}

.browser-content {
  padding: 28px;
}

.mock-nav {
  width: 28%;
  height: 5px;
  margin-bottom: 36px;
  background: #232220;
}

.browser-content strong {
  display: block;
  font-family: Manrope, sans-serif;
  font-size: clamp(25px, 3vw, 46px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.mock-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 8px;
  margin-top: 32px;
}

.mock-grid i {
  height: 100px;
  background: #c7b7a3;
}

.mock-grid i:nth-child(2) {
  background: #e58d25;
}

.mock-grid i:nth-child(3) {
  background: #5e5a50;
}

.phone-mockup {
  position: absolute;
  width: 145px;
  height: 310px;
  right: 5%;
  bottom: -30px;
  z-index: 2;
  padding: 32px 14px 14px;
  border: 4px solid #2d2c29;
  border-radius: 28px;
  background: #f4f0e8;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  transform: rotate(5deg);
}

.phone-notch {
  position: absolute;
  width: 48px;
  height: 11px;
  top: 7px;
  left: 50%;
  border-radius: 10px;
  background: #242321;
  transform: translateX(-50%);
}

.phone-mockup small {
  font-size: 6px;
  letter-spacing: 0.12em;
}

.phone-mockup b {
  display: block;
  margin: 24px 0 17px;
  font-family: Manrope, sans-serif;
  font-size: 21px;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.phone-mockup > div:not(.phone-notch) {
  height: 68px;
  margin-top: 7px;
  background: #d29751;
}

.phone-mockup > div:last-child {
  background: #252421;
}

.case-content {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 34px;
}

.case-meta {
  color: #858581;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-content h3 {
  margin: 62px 0 16px;
  font-family: Manrope, sans-serif;
  font-size: clamp(30px, 3vw, 43px);
  letter-spacing: -0.06em;
}

.case-content > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.case-points {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 25px;
}

.case-footer {
  gap: 20px;
  margin-top: auto;
  padding-top: 32px;
}

.case-footer small {
  max-width: 80%;
  color: #898985;
  font-size: 9px;
  line-height: 1.5;
}

.circle-link {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface-soft);
  transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.circle-link:hover {
  color: #fff;
  background: var(--ink);
  transform: rotate(8deg);
}

.case-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.case-pair .case-content {
  min-height: 420px;
}

.case-pair .case-content h3 {
  margin-top: 36px;
}

.ai-case-visual {
  display: grid;
  place-items: center;
  background: #dfddd8;
}

.ai-case-visual::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 159, 10, 0.3);
  filter: blur(30px);
}

.assistant-panel {
  position: relative;
  z-index: 1;
  width: 76%;
  padding: 19px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 25px 50px rgba(17, 17, 17, 0.14);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.assistant-head {
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 650;
}

.assistant-head i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin-right: 8px;
  border-radius: 8px;
  background: var(--accent);
  font-style: normal;
}

.assistant-head span {
  margin-right: auto;
}

.assistant-head small {
  color: #48a870;
  font-size: 7px;
  text-transform: uppercase;
}

.message {
  width: 72%;
  margin-top: 8px;
  padding: 10px;
  border-radius: 10px 10px 10px 3px;
  color: #5c5c59;
  background: #eeece8;
  font-size: 8px;
  line-height: 1.4;
}

.message.outgoing {
  margin-left: auto;
  border-radius: 10px 10px 3px 10px;
  color: #fff;
  background: #222220;
}

.automation-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
}

.automation-row i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  font-size: 7px;
  font-style: normal;
  font-weight: 750;
}

.automation-row i:first-child {
  background: var(--accent);
}

.automation-row span {
  width: 26px;
  height: 1px;
  background: #c3c3bf;
}

.bot-case-visual {
  display: grid;
  place-items: end center;
  background: #dcebf5;
}

.bot-case-visual::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  top: -120px;
  left: -100px;
  border-radius: 50%;
  background: rgba(34, 136, 216, 0.2);
}

.bot-phone {
  position: relative;
  width: 235px;
  height: 360px;
  padding: 23px 18px;
  border: 5px solid #292927;
  border-bottom: 0;
  border-radius: 35px 35px 0 0;
  background: #f7f7f5;
  box-shadow: 0 20px 55px rgba(18, 57, 81, 0.22);
}

.bot-phone-head {
  justify-content: flex-start;
  gap: 10px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 650;
}

.bot-phone-head i {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #258fd8;
  font-size: 8px;
  font-style: normal;
}

.bot-phone-head span {
  display: grid;
}

.bot-phone-head small {
  color: #48a870;
  font-size: 6px;
  font-weight: 500;
}

.bot-phone p {
  margin: 28px 0 17px;
  font-size: 10px;
  font-weight: 650;
}

.bot-phone button {
  width: 100%;
  margin-top: 7px;
  padding: 10px;
  border: 0;
  border-radius: 9px;
  color: #176b9f;
  background: #dff2ff;
  font-size: 8px;
}

.compact-list {
  display: grid;
  gap: 8px;
  margin: 23px 0 0;
  padding: 0;
  color: #555552;
  list-style: none;
  font-size: 11px;
}

.compact-list li::before {
  content: "—";
  margin-right: 7px;
  color: var(--accent);
}

.process {
  color: #fff;
  background: #151513;
}

.process .section-index,
.process .section-heading p {
  color: rgba(255, 255, 255, 0.52);
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 50px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 159, 10, 0.8), rgba(255, 255, 255, 0.13));
}

.process-step {
  position: relative;
  padding: 0 24px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.process-step:first-child {
  padding-left: 0;
}

.process-step:last-child {
  padding-right: 0;
  border-right: 0;
}

.step-number {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.step-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: var(--accent);
  background: #1d1d1a;
  font-size: 18px;
}

.process-step h3 {
  margin: 0 0 13px;
  font-family: Manrope, sans-serif;
  font-size: 21px;
  letter-spacing: -0.04em;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.65;
}

.pricing {
  background: #efefec;
}

.price-card {
  min-height: 565px;
}

.price-name {
  padding-bottom: 21px;
  border-bottom: 1px solid var(--line);
  font-family: Manrope, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.price-name small {
  color: #969692;
  font-family: Inter, sans-serif;
  font-size: 9px;
  font-weight: 500;
}

.price {
  margin: 38px 0 12px;
  font-family: Manrope, sans-serif;
  font-size: clamp(31px, 3vw, 41px);
  font-weight: 750;
  letter-spacing: -0.06em;
}

.price small {
  color: #81817e;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
}

.price-card > p {
  min-height: 64px;
}

.price-featured {
  border-color: rgba(255, 159, 10, 0.52);
  box-shadow: 0 18px 55px rgba(255, 159, 10, 0.11);
}

.price-featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  box-shadow: 0 0 70px rgba(255, 159, 10, 0.15);
}

.price-badge {
  top: 21px;
  right: 55px;
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 30px auto 0;
  color: #686865;
  font-size: 11px;
  text-align: center;
}

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

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

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(65px, 9vw, 130px);
}

.about-copy h2 {
  margin-bottom: 34px;
}

.about-copy p {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.about-copy .about-lead {
  color: var(--ink);
  font-size: 18px;
  font-weight: 650;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  transform: rotate(1.5deg);
}

.value-card {
  min-height: 245px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px) rotate(-1.5deg);
}

.value-card > span {
  color: #92928e;
  font-size: 9px;
}

.value-card i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin: 38px 0 23px;
  border-radius: 12px;
  background: #f0f0ed;
  font-style: normal;
}

.value-card h3 {
  margin: 0 0 8px;
  font-family: Manrope, sans-serif;
  font-size: 21px;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.value-dark {
  color: #fff;
  background: #171715;
}

.value-dark i {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.value-dark p {
  color: rgba(255, 255, 255, 0.5);
}

.value-accent {
  background: var(--accent);
}

.value-accent i {
  background: rgba(255, 255, 255, 0.45);
}

.value-accent p {
  color: rgba(17, 17, 17, 0.65);
}

.contact {
  padding-top: 40px;
}

.contact-card {
  position: relative;
  padding: clamp(46px, 7vw, 90px);
  overflow: hidden;
  color: #fff;
  border-radius: 34px;
  background: #151513;
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.14);
}

.contact-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -250px;
  right: -130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 159, 10, 0.28), transparent 67%);
}

.contact-label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-card h2 {
  position: relative;
  max-width: 920px;
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: clamp(41px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.067em;
}

.contact-card > p {
  position: relative;
  max-width: 620px;
  margin: 29px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 15px;
  line-height: 1.7;
}

.contact-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.social-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.contact-details {
  position: relative;
  display: flex;
  gap: 32px;
  margin-top: 65px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-details span {
  display: grid;
  gap: 5px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  letter-spacing: 0;
  text-transform: none;
}

.site-footer {
  padding: 10px 0 34px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 35px;
  padding: 37px 0;
  border-bottom: 1px solid var(--line);
}

.footer-main > p {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.04em;
}

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

.footer-main nav a,
.footer-bottom {
  color: #666663;
  font-size: 10px;
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

  .menu-toggle {
    display: grid;
  }

  .header-cta {
    margin-left: auto;
  }

  .mobile-menu {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr 420px;
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(44px, 5.8vw, 62px);
  }

  .hero-visual {
    transform: scale(0.9);
    transform-origin: center right;
  }

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

  .service-card-featured,
  .price-featured {
    grid-column: 1 / -1;
    min-height: 520px;
  }

  .about-grid {
    gap: 60px;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 88px 0;
  }

  .hero {
    padding-top: 135px;
  }

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

  .hero-copy {
    max-width: 700px;
  }

  .hero-visual {
    width: min(100%, 530px);
    margin: 15px auto 0;
    transform: none;
  }

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

  .section-heading p {
    max-width: 600px;
  }

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

  .pereuloq-visual {
    min-height: 480px;
  }

  .case-wide .case-content {
    min-height: 420px;
  }

  .process-track {
    grid-template-columns: 1fr 1fr;
    gap: 45px 0;
  }

  .process-track::before {
    display: none;
  }

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .step-icon {
    margin-bottom: 30px;
  }

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

  .about-copy {
    max-width: 680px;
  }

  .values-grid {
    max-width: 650px;
    transform: none;
  }

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

  .footer-main > p {
    display: none;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 72px;
  }

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

  .section {
    padding: 72px 0;
  }

  .header-cta {
    display: none;
  }

  .brand-mark {
    width: 37px;
    height: 37px;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 75px;
  }

  .hero-grid {
    gap: 48px;
  }

  .eyebrow {
    margin-bottom: 21px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(41px, 12.2vw, 61px);
    line-height: 1.01;
  }

  .hero-lead {
    margin-top: 23px;
    font-size: 15px;
    line-height: 1.6;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-badges {
    margin-top: 30px;
  }

  .hero-visual {
    min-height: 540px;
    transform: scale(0.92);
    transform-origin: center top;
  }

  .card-web {
    width: 285px;
  }

  .card-bot {
    width: 265px;
    top: 160px;
  }

  .card-ai {
    width: 305px;
  }

  .section-heading {
    margin-bottom: 37px;
  }

  .section-heading h2,
  .about-copy h2 {
    font-size: clamp(36px, 10.5vw, 49px);
  }

  .section-heading p {
    font-size: 13px;
  }

  .services-grid,
  .pricing-grid,
  .case-pair {
    grid-template-columns: 1fr;
  }

  .service-card,
  .price-card,
  .service-card-featured,
  .price-featured {
    grid-column: auto;
    min-height: auto;
    padding: 25px;
  }

  .service-card > p,
  .price-card > p {
    min-height: auto;
  }

  .text-link,
  .button-full {
    margin-top: 5px;
  }

  .case-visual,
  .pereuloq-visual {
    min-height: 390px;
  }

  .browser-mockup {
    width: 85%;
    left: 1%;
  }

  .phone-mockup {
    width: 125px;
    right: 2%;
  }

  .browser-content {
    padding: 20px;
  }

  .mock-grid i {
    height: 80px;
  }

  .case-content,
  .case-pair .case-content,
  .case-wide .case-content {
    min-height: 380px;
    padding: 26px;
  }

  .case-content h3,
  .case-pair .case-content h3 {
    margin-top: 38px;
  }

  .process-track {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-step,
  .process-step:first-child,
  .process-step:last-child {
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: 20px;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .step-number {
    grid-column: 1 / -1;
    margin-bottom: 12px;
  }

  .step-icon {
    grid-row: 2 / 4;
    margin: 0;
  }

  .process-step h3 {
    margin-top: 2px;
  }

  .pricing-note {
    align-items: flex-start;
    text-align: left;
  }

  .values-grid {
    gap: 8px;
  }

  .value-card {
    min-height: 220px;
    padding: 19px;
  }

  .value-card i {
    margin: 30px 0 20px;
  }

  .value-card h3 {
    font-size: 18px;
  }

  .contact {
    padding-top: 20px;
  }

  .contact-card {
    padding: 39px 23px 28px;
    border-radius: 27px;
  }

  .contact-card h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .contact-card > p {
    font-size: 13px;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-actions > .button {
    width: 100%;
  }

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

  .social-links a {
    justify-content: center;
  }

  .contact-details {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
    margin-top: 45px;
  }

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

  .footer-main nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }
}

@media (max-width: 390px) {
  .hero-visual {
    left: 50%;
    width: 390px;
    margin-left: -195px;
    transform: scale(0.84);
  }

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

  .value-card {
    min-height: 205px;
  }

  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
