:root {
  --bg: #070708;
  --bg-2: #0e0e11;
  --surface: #131316;
  --surface2: #1a1a1f;
  --text: #f4f4f5;
  --muted: #94949c;
  --border: rgba(255, 255, 255, 0.065);
  --accent: #ef4444;
  --accent-hover: #f87171;
  --accent-soft: rgba(239, 68, 68, 0.12);
  --glow: rgba(239, 68, 68, 0.08);
  --radius: 12px;
  --radius-lg: 18px;
  --font: system-ui, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
  --mono: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas, monospace;
  --max: 1080px;
  font-synthesis-weight: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.04;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.glow-field {
  pointer-events: none;
  position: fixed;
  inset: -30% -30% 0 -30%;
  background:
    radial-gradient(ellipse 70% 45% at 15% 15%, var(--glow) 0%, transparent 55%),
    radial-gradient(ellipse 55% 40% at 90% 25%, rgba(120, 130, 220, 0.04) 0%, transparent 50%);
  z-index: 0;
  animation: glow-breathe 14s ease-in-out infinite alternate;
}

@keyframes glow-breathe {
  0% {
    opacity: 0.85;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.03);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  position: relative;
  z-index: 2;
}

/* —— header —— */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 7, 8, 0.82);
  backdrop-filter: blur(16px);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.875rem max(1.25rem, env(safe-area-inset-left, 0px)) 0.875rem max(1.25rem, env(safe-area-inset-right, 0px));
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
}

.logo {
  display: inline-block;
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.logo span {
  color: var(--accent);
}

.menu-btn {
  display: none;
  margin-left: auto;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-open .menu-btn span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .menu-btn span:nth-child(2) {
  opacity: 0;
}

.nav-open .menu-btn span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
  font-size: 0.875rem;
}

.nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--text);
}

.nav-tg {
  display: none;
}

.btn-header {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: var(--mono);
  border-radius: 999px;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-header:hover {
  border-color: rgba(239, 68, 68, 0.35);
  color: var(--accent-hover);
  background: var(--accent-soft);
}

@media (max-width: 820px) {
  .menu-btn {
    display: flex;
  }

  .nav-tg {
    display: block;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    color: var(--accent-hover) !important;
  }

  .btn-header {
    display: none;
  }

  .nav {
    display: none;
    position: fixed;
    left: max(0.75rem, env(safe-area-inset-left, 0px));
    right: max(0.75rem, env(safe-area-inset-right, 0px));
    top: calc(4.25rem + env(safe-area-inset-top, 0px));
    max-height: min(70vh, calc(100dvh - 5.5rem));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
  }

  .nav a {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 48px;
  }

  .nav a:hover {
    background: rgba(255, 255, 255, 0.04);
  }

  .header.nav-open .nav {
    display: flex;
  }
}

/* —— buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s, color 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: #0a0a0b;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-text {
  background: transparent;
  color: var(--muted);
  border-color: transparent;
}

.btn-text:hover {
  color: var(--text);
}

.btn-outline {
  background: transparent;
  border-color: rgba(239, 68, 68, 0.45);
  color: var(--accent-hover);
}

.btn-outline:hover {
  background: var(--accent-soft);
}

.btn.lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

/* —— hero —— */
.hero {
  padding: clamp(2.5rem, 6vw, 5rem) 1.25rem clamp(3rem, 8vw, 6rem);
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 380px);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

@media (max-width: 920px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    justify-items: center;
    display: grid;
  }

  .badge {
    margin-left: auto;
    margin-right: auto;
  }

  .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-tags {
    justify-content: center !important;
  }

  .hero-meta {
    justify-content: center !important;
  }

  .hero-visual {
    max-width: 340px;
    margin: 0 auto;
  }
}

.hero-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero-title-main {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero-title-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 500;
  color: var(--muted);
  line-height: 1.45;
  max-width: 36rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--surface);
}

.lead {
  margin: 1.25rem 0 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.hero-meta {
  margin: 1.25rem 0 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

.hero-meta .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  animation: hero-in 0.75s 0.15s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.hero-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  animation: panel-float 7s ease-in-out infinite;
}

@keyframes panel-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.hero-panel-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.65rem 1rem;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.hero-panel-bar-spacer {
  flex: 1;
  min-width: 8px;
  background: transparent !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
}

.hero-panel-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}

.hero-panel-bar span:nth-child(1) {
  background: #ef4444;
  opacity: 0.85;
}

.hero-panel-bar span:nth-child(2) {
  background: #eab308;
  opacity: 0.75;
}

.hero-panel-bar span:nth-child(3) {
  background: #22c55e;
  opacity: 0.75;
}

.hero-panel-bar > .icon-terminal {
  margin-left: auto;
  width: 18px;
  height: 18px;
  color: var(--accent-hover);
  opacity: 0.85;
}

.hero-panel-inner {
  padding: 1.1rem 1.15rem 1.25rem;
}

.hero-panel-label {
  margin: 0 0 0.65rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-hover);
}

.hero-panel-lines {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--muted);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0;
  justify-content: flex-end;
}

.hero-tags span {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
}

/* —— section layout —— */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.75rem, 6vw, 4.5rem) 1.25rem;
}

.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 1.75rem;
  align-items: start;
  margin-bottom: 1.75rem;
}

@media (max-width: 560px) {
  .section-head {
    grid-template-columns: 1fr;
  }
}

.section-head h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-title-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.35rem;
}

.section-title-row h2 {
  margin: 0;
}

.section-head-ico {
  width: 26px;
  height: 26px;
  color: var(--accent);
  opacity: 0.9;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 520px;
}

.section-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
  background: var(--accent-soft);
  line-height: 1;
}

.section-label.light {
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-hover);
}

.trust {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
  border-top: 1px solid var(--border);
}

.trust-title {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.trust-item {
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
}

.trust-item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.trust-item strong {
  color: var(--text);
}

.trust-num {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent);
  display: block;
  margin-bottom: 0.6rem;
}

.offer-card {
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
}

.offer-card > p {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 1rem;
}

.offer-card a {
  color: var(--accent-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.offer-card a:hover {
  color: var(--text);
}

.offer-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.offer-list li + li {
  margin-top: 0.5rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.85rem;
}

.skill-card {
  position: relative;
  height: 100%;
}

.skill-card-inner {
  position: relative;
  height: 100%;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.25s;
}

.skill-card-inner:hover {
  border-color: rgba(239, 68, 68, 0.18);
}

.skill-tag {
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-hover);
}

.skill-card-inner h3 {
  margin: 0.5rem 0 0.35rem;
  font-size: 1.02rem;
  font-weight: 700;
}

.skill-card-inner p {
  margin: 0 0 0.65rem;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
}

.skill-card-inner small {
  display: block;
  font-size: 0.68rem;
  line-height: 1.45;
  color: var(--muted);
  font-family: var(--mono);
}

.services-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.service-block {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
}

.service-block h3 {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
}

.service-block ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-block li + li {
  margin-top: 0.4rem;
}

.pricing-highlight {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pricing-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(239, 68, 68, 0.25);
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.06) 0%, transparent 40%);
}

.pricing-card-inner {
  padding: clamp(1.75rem, 4vw, 2.5rem);
}

.pricing-card-inner h2 {
  margin: 0.75rem 0 0.75rem;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pricing-lead {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.pricing-points {
  margin: 0 0 1.35rem;
  padding-left: 1.05rem;
  color: var(--text);
}

.pricing-points li + li {
  margin-top: 0.45rem;
}

.portfolio-teaser {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
}

.teaser-slot {
  min-height: 120px;
  border-radius: var(--radius);
  border: 1px dashed rgba(239, 68, 68, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  background: var(--surface);
}

.teaser-slot.blur {
  filter: blur(2.5px);
  opacity: 0.55;
}

.teaser-cta {
  grid-column: 1 / -1;
  text-align: center;
  padding: 1.25rem 0 0;
}

.teaser-cta p {
  color: var(--muted);
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
}

.contact-section .contact-card {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2rem, 5vw, 2.75rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: visible;
}

.contact-card h2 {
  margin: 0 0 0.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.contact-card > p:first-of-type {
  color: var(--muted);
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}

.contact-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-hint {
  margin: 1.25rem 0 0;
  font-size: 0.8rem;
}

.contact-hint a {
  color: var(--accent-hover);
}

.contact-hint code {
  font-family: var(--mono);
  font-size: 0.78rem;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  background: var(--bg-2);
  border: 1px solid var(--border);
}

.footer {
  padding: 1.75rem 1.25rem 2.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.footer a {
  color: var(--accent-hover);
}

.footer a:hover {
  color: var(--text);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.mesh-bg {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(239, 68, 68, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 68, 68, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, black 10%, transparent 70%);
  animation: mesh-drift 55s linear infinite;
}

@keyframes mesh-drift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 48px 48px, -48px 48px;
  }
}

.icon {
  flex-shrink: 0;
  width: 1.15em;
  height: 1.15em;
  display: block;
  color: inherit;
}

.icon-nav {
  width: 16px;
  height: 16px;
  color: var(--muted);
  transition: color 0.2s, transform 0.2s;
}

.nav a:hover .icon-nav {
  color: var(--accent-hover);
  transform: translateY(-1px);
}

.icon-badge {
  width: 14px;
  height: 14px;
  color: var(--accent-hover);
  animation: icon-spin-slow 12s linear infinite;
}

@keyframes icon-spin-slow {
  to {
    transform: rotate(360deg);
  }
}

.btn .icon {
  width: 18px;
  height: 18px;
}

.btn-text {
  gap: 0.35rem;
}

.icon-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.25s;
}

.btn-text:hover .icon-arrow {
  transform: translateX(4px);
}

.btn-shimmer {
  position: relative;
  overflow: hidden;
}

.btn-shimmer::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 60%
  );
  transform: translateX(-100%) rotate(8deg);
  animation: btn-shine 3.5s ease-in-out infinite;
}

@keyframes btn-shine {
  0%,
  45% {
    transform: translateX(-100%) rotate(8deg);
  }
  55%,
  100% {
    transform: translateX(100%) rotate(8deg);
  }
}

.hero-copy > * {
  animation: hero-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.hero-copy .badge {
  animation-delay: 0.05s;
}

.hero-copy .hero-title {
  animation-delay: 0.1s;
}

.hero-copy .lead {
  animation-delay: 0.18s;
}

.hero-copy .hero-actions {
  animation-delay: 0.26s;
}

.hero-copy .hero-meta {
  animation-delay: 0.34s;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.icon-tag {
  width: 12px;
  height: 12px;
  color: var(--accent);
  opacity: 0.85;
}

.hero-tags span:hover {
  border-color: rgba(239, 68, 68, 0.25);
  color: var(--text);
}

.hero-tags span:hover .icon-tag {
  opacity: 1;
}

.section-divider {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  color: var(--muted);
}

.divider-svg {
  display: block;
  width: 100%;
  height: 12px;
}

.fx-card {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s,
    box-shadow 0.35s;
}

.fx-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 68, 68, 0.22);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(239, 68, 68, 0.06);
}

.offer-card-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.icon-offer {
  width: 28px;
  height: 28px;
  color: var(--accent-hover);
}

.offer-card-head-text {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.offer-list {
  list-style: none;
  padding: 0;
}

.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding-left: 0;
}

.offer-list li + li {
  margin-top: 0.75rem;
}

.icon-li {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  color: var(--accent);
  flex-shrink: 0;
}

.trust-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-trust-title {
  width: 18px;
  height: 18px;
  color: var(--accent-hover);
}

.trust-item {
  position: relative;
  padding-top: 2.5rem;
}

.trust-icon-wrap {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  opacity: 0.14;
  pointer-events: none;
}

.icon-trust {
  width: 52px;
  height: 52px;
  color: var(--accent);
}

.skill-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.icon-skill {
  width: 26px;
  height: 26px;
  color: var(--accent-hover);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s;
}

.skill-card-inner:hover .icon-skill {
  transform: scale(1.08) rotate(-4deg);
  color: var(--accent);
}

.skill-card-inner h3 {
  margin-top: 0;
}

.service-block h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-svc {
  width: 20px;
  height: 20px;
  color: var(--accent-hover);
}

.fx-glow {
  position: relative;
  overflow: hidden;
}

.fx-glow::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(239, 68, 68, 0.12) 45%,
    rgba(248, 113, 113, 0.08) 55%,
    transparent 70%
  );
  animation: glow-sweep 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glow-sweep {
  0%,
  100% {
    transform: translateX(-30%) rotate(2deg);
    opacity: 0.5;
  }
  50% {
    transform: translateX(30%) rotate(2deg);
    opacity: 1;
  }
}

.pricing-head-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.icon-pricing {
  width: 32px;
  height: 32px;
  color: var(--accent-hover);
}

.pricing-points {
  list-style: none;
  padding: 0;
}

.pricing-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.pricing-points li + li {
  margin-top: 0.55rem;
}

.icon-check {
  width: 16px;
  height: 16px;
  margin-top: 0.2rem;
  color: var(--accent);
}

.btn-icon-pulse .icon {
  animation: tg-pulse 2s ease-in-out infinite;
}

@keyframes tg-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.fx-teaser {
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color 0.3s, background 0.3s;
}

.icon-teaser {
  width: 28px;
  height: 28px;
  color: var(--accent);
  opacity: 0.7;
}

.fx-teaser:hover {
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.04);
}

.fx-teaser:hover .icon-teaser {
  opacity: 1;
  transform: scale(1.05);
}

.contact-orbit {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 1px dashed rgba(239, 68, 68, 0.35);
  display: grid;
  place-items: center;
  animation: orbit-pulse 2.8s ease-in-out infinite;
}

@keyframes orbit-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.15);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(239, 68, 68, 0);
  }
}

.icon-orbit {
  width: 26px;
  height: 26px;
  color: var(--accent-hover);
}

.footer span,
.footer a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.icon-foot {
  width: 14px;
  height: 14px;
  color: var(--accent);
  opacity: 0.85;
}

/* —— мобильная вёрстка —— */
@media (max-width: 640px) {
  .menu-btn {
    min-width: 44px;
    min-height: 44px;
  }

  .hero {
    padding: 1.5rem max(1rem, env(safe-area-inset-left, 0px)) 2.25rem max(1rem, env(safe-area-inset-right, 0px));
  }

  .hero-inner {
    gap: 1.5rem;
  }

  .hero-title-main {
    font-size: clamp(1.45rem, 7vw, 2.35rem);
    line-height: 1.1;
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  .hero-title-sub {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .lead {
    font-size: 0.92rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .hero-panel-lines {
    font-size: 0.72rem;
    word-break: break-word;
  }

  .hero-tags {
    justify-content: center;
    gap: 0.35rem;
  }

  .hero-tags span {
    font-size: 0.62rem;
    padding: 0.28rem 0.45rem;
  }

  .section {
    padding: 2.25rem max(1rem, env(safe-area-inset-left, 0px)) 2.5rem max(1rem, env(safe-area-inset-right, 0px));
  }

  .section-head {
    gap: 1rem 1rem;
    margin-bottom: 1.35rem;
  }

  .section-title-row {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.45rem;
  }

  .section-head-ico {
    width: 22px;
    height: 22px;
    margin-top: 0.15rem;
  }

  .section-head h2 {
    font-size: clamp(1.25rem, 5.5vw, 1.55rem);
  }

  .section-head p {
    font-size: 0.88rem;
  }

  .offer-card {
    padding: 1.15rem 1rem;
  }

  .offer-list li {
    font-size: 0.9rem;
  }

  .trust {
    padding: 2rem max(1rem, env(safe-area-inset-left, 0px)) 2.25rem max(1rem, env(safe-area-inset-right, 0px));
  }

  .trust-title {
    font-size: 0.62rem;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .trust-item {
    padding: 1rem 1rem 1rem;
    padding-top: 2.25rem;
  }

  .icon-trust {
    width: 44px;
    height: 44px;
  }

  .skills-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .skill-card-inner {
    padding: 1.05rem 1rem;
  }

  .skill-card-inner small {
    font-size: 0.62rem;
    word-break: break-word;
  }

  .services-columns {
    grid-template-columns: 1fr;
  }

  .service-block {
    padding: 1.05rem 1rem;
  }

  .service-block ul {
    font-size: 0.86rem;
    padding-left: 0.95rem;
  }

  .pricing-card-inner {
    padding: 1.35rem 1.1rem;
  }

  .pricing-card-inner h2 {
    font-size: 1.2rem;
  }

  .pricing-lead {
    font-size: 0.9rem;
  }

  .portfolio-teaser {
    grid-template-columns: 1fr;
  }

  .teaser-slot {
    min-height: 100px;
  }

  .contact-section .contact-card {
    padding: 1.5rem max(1rem, env(safe-area-inset-left, 0px)) 1.75rem max(1rem, env(safe-area-inset-right, 0px));
    margin-left: max(0px, env(safe-area-inset-left, 0px));
    margin-right: max(0px, env(safe-area-inset-right, 0px));
  }

  .contact-row .btn {
    width: 100%;
    max-width: 100%;
    min-height: 52px;
  }

  .pricing-card-inner .btn-outline {
    width: 100%;
    max-width: 20rem;
    margin-inline: auto;
    min-height: 48px;
  }

  .teaser-cta .btn {
    width: 100%;
    max-width: 20rem;
    min-height: 48px;
  }

  .pricing-head-row {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .contact-hint code {
    font-size: 0.7rem;
    word-break: break-all;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.5rem max(1rem, env(safe-area-inset-left, 0px)) max(1.75rem, env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-right, 0px));
  }

  .section-divider {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  .mesh-bg {
    opacity: 0.28;
    animation: none;
  }

  .fx-card:hover {
    transform: none;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  }
}

@media (max-width: 640px) and (hover: hover) {
  .fx-card:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 380px) {
  .logo {
    font-size: 1rem;
  }

  .badge {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .mesh-bg,
  .glow-field,
  .hero-panel,
  .hero-copy > *,
  .hero-visual,
  .btn-shimmer::after,
  .fx-glow::before,
  .contact-orbit,
  .icon-badge {
    animation: none !important;
  }
}
