:root {
  --bg-primary: #090507;
  --bg-secondary: #12080b;
  --bg-panel: rgba(12, 8, 9, 0.84);
  --bg-card: rgba(16, 10, 12, 0.78);
  --text: #fff4f5;
  --muted: #e9c1c7;
  --muted-dark: #b98a92;
  --accent: #e53945;
  --accent-soft: #ff6b76;
  --accent-text: #ffd5d9;
  --cyan: #64e7ff;
  --line: rgba(229, 57, 69, 0.2);
  --line-strong: rgba(229, 57, 69, 0.36);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 8%, rgba(229, 57, 69, 0.16), transparent 28rem),
    radial-gradient(circle at 92% 16%, rgba(100, 231, 255, 0.08), transparent 24rem),
    linear-gradient(180deg, var(--bg-primary) 0, #0b0507 36rem, #080405 100%);
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

::selection {
  color: #23080c;
  background: var(--accent-soft);
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0;
}

h1 {
  max-width: 40rem;
  font-size: clamp(2.45rem, 4vw, 4.25rem);
  font-weight: 600;
}

h1 span {
  display: block;
}

h2 {
  max-width: 48rem;
  font-size: clamp(2.15rem, 4vw, 3.75rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0;
}

#ambient-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background: transparent;
}

.container {
  width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
}

[id] {
  scroll-margin-top: 92px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 68px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(229, 57, 69, 0.18);
  background: rgba(6, 4, 5, 0.82);
  backdrop-filter: blur(18px);
}

.header-logo {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  color: var(--accent-text);
  font-size: 22px;
  font-weight: 700;
}

.header-logo span,
.hero-tag span {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(229, 57, 69, 0.9);
  animation: pulse 2s ease-in-out infinite;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  min-width: 0;
  max-width: 100%;
}

.site-nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="true"] {
  color: var(--text);
}

.btn-nav,
.btn,
.small-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.btn-nav {
  justify-self: end;
  min-height: 39px;
  padding: 0 1.15rem;
  color: #23080c;
  background: var(--accent);
  font-size: 13px;
}

.btn {
  min-height: 50px;
  padding: 0 1.3rem;
  font-size: 14px;
}

.btn-primary {
  color: #23080c;
  background: var(--accent);
}

.btn-secondary {
  color: var(--accent-text);
  border-color: var(--line-strong);
  background: rgba(229, 57, 69, 0.08);
}

.btn-nav:hover,
.btn:hover,
.small-btn:hover {
  transform: translateY(-2px);
}

.btn-primary:hover {
  background: var(--accent-soft);
  box-shadow: 0 10px 30px rgba(229, 57, 69, 0.28);
}

.hero {
  min-height: 88svh;
  padding-top: 68px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
  align-items: center;
  gap: 4.3rem;
  min-height: calc(88svh - 68px);
  padding: 4.8rem 0 3.5rem;
}

.hero-left {
  min-width: 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  max-width: 100%;
  margin-bottom: 1.45rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  color: var(--accent-text);
  background: rgba(229, 57, 69, 0.08);
  font-size: 12px;
  font-weight: 700;
}

.hero-sub {
  max-width: 34rem;
  margin-top: 1.35rem;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 1rem;
  min-height: 32rem;
}

.tg-card {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(13, 10, 11, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.tg-main {
  position: relative;
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 24rem);
  overflow: hidden;
  animation: float-one 6s ease-in-out infinite;
  z-index: 2;
}

.tg-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid var(--line);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
}

.tg-avatar {
  flex: 0 0 auto;
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  object-fit: cover;
  object-position: center;
  background: rgba(255, 255, 255, 0.06);
}

.tg-head strong,
.tg-head span {
  display: block;
}

.tg-head strong {
  color: var(--text);
  font-weight: 700;
}

.tg-head span {
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 700;
}

.tg-body {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
}

.msg {
  max-width: 86%;
  border: 1px solid rgba(229, 57, 69, 0.18);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  color: var(--muted);
  background: rgba(229, 57, 69, 0.07);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.msg.user {
  justify-self: end;
  border-color: rgba(100, 231, 255, 0.2);
  background: rgba(100, 231, 255, 0.06);
}

.tg-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  padding: 0 1rem 1rem;
}

.tg-actions span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.48rem 0.35rem;
  color: var(--accent-text);
  background: rgba(229, 57, 69, 0.08);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.tg-float {
  position: relative;
  display: grid;
  gap: 0.35rem;
  max-width: none;
  min-height: 7.6rem;
  padding: 1.05rem 1.15rem;
  z-index: 1;
}

.tg-float strong {
  color: var(--accent);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.tg-float span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.tg-float-one {
  animation: float-two 7s ease-in-out infinite;
}

.tg-float-two {
  animation: float-three 8s ease-in-out infinite;
}

.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(18, 8, 11, 0.88);
}

.trust-inner {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 2rem 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.65rem 2.4rem;
  border-right: 1px solid var(--line-strong);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  font-weight: 700;
  line-height: 1;
}

.trust-item span {
  max-width: 9.5rem;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.cases,
.approach,
.services,
.modules,
.process,
.faq,
.contact {
  padding: 6.4rem 0;
}

.cases,
.modules {
  background: rgba(18, 8, 11, 0.68);
}

.section-head {
  max-width: 48rem;
  margin-bottom: 2.4rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  background: var(--accent);
}

.section-head p,
.contact p {
  max-width: 38rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.72;
}

.portfolio-list {
  display: grid;
  gap: 1.2rem;
}

.portfolio-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.78fr);
  gap: 2rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem;
  background:
    linear-gradient(145deg, rgba(229, 57, 69, 0.055), transparent 40%),
    rgba(8, 8, 8, 0.62);
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background:
    linear-gradient(145deg, rgba(229, 57, 69, 0.085), transparent 48%),
    rgba(8, 8, 8, 0.74);
}

.case-num {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.portfolio-card h3,
.module-card h3,
.service-card h3,
.more-proof h3 {
  margin-top: 0.75rem;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.case-tags span {
  border: 1px solid rgba(229, 57, 69, 0.2);
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
  color: var(--accent-text);
  background: rgba(229, 57, 69, 0.08);
  font-size: 12px;
  font-weight: 700;
}

.portfolio-card p,
.module-card p,
.service-card p,
.more-proof p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}

.portfolio-metric {
  display: flex;
  align-items: end;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.portfolio-metric strong {
  color: var(--accent);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.portfolio-metric span {
  max-width: 12rem;
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.case-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.small-btn {
  min-height: 39px;
  padding: 0 0.85rem;
  color: var(--accent-text);
  border-color: var(--line-strong);
  background: rgba(229, 57, 69, 0.08);
  font-size: 13px;
}

.case-image {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.6rem;
  min-height: 18rem;
  border: 1px solid rgba(229, 57, 69, 0.18);
  border-radius: 8px;
  padding: 1.2rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(229, 57, 69, 0.18), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    #070606;
}

.case-image::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.45;
}

.case-image::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 8.5rem;
  height: 8.5rem;
  border: 1px solid rgba(100, 231, 255, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(100, 231, 255, 0.16), transparent 54%),
    repeating-radial-gradient(circle at center, transparent 0 1rem, rgba(100, 231, 255, 0.16) 1.05rem 1.08rem);
  opacity: 0.68;
  transition: transform 260ms ease, opacity 260ms ease;
}

.portfolio-card:hover .case-image::after {
  transform: scale(1.08) rotate(8deg);
  opacity: 0.95;
}

.poster-techiqqe {
  background:
    linear-gradient(135deg, rgba(229, 57, 69, 0.22), transparent 58%),
    linear-gradient(220deg, rgba(100, 231, 255, 0.08), transparent 52%),
    #080606;
}

.poster-pessi {
  background:
    linear-gradient(135deg, rgba(100, 231, 255, 0.11), transparent 50%),
    linear-gradient(220deg, rgba(229, 57, 69, 0.2), transparent 55%),
    #080606;
}

.poster-insider {
  background:
    linear-gradient(135deg, rgba(229, 57, 69, 0.16), transparent 46%),
    linear-gradient(220deg, rgba(255, 213, 217, 0.08), transparent 56%),
    #080606;
}

.poster-ton {
  background:
    linear-gradient(135deg, rgba(255, 107, 118, 0.19), transparent 55%),
    linear-gradient(220deg, rgba(100, 231, 255, 0.1), transparent 48%),
    #080606;
}

.poster-eyebrow,
.poster-title,
.poster-sub,
.poster-action {
  position: relative;
  z-index: 1;
}

.poster-eyebrow {
  align-self: flex-start;
  border: 1px solid rgba(229, 57, 69, 0.24);
  border-radius: 999px;
  padding: 0.3rem 0.55rem;
  color: var(--accent-text);
  background: rgba(229, 57, 69, 0.08);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.poster-title {
  color: var(--text);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 700;
  line-height: 1.05;
}

.poster-sub {
  max-width: 19rem;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.poster-action {
  align-self: flex-start;
  margin-top: 0.3rem;
  border-bottom: 1px solid rgba(255, 213, 217, 0.5);
  color: var(--accent-text);
  font-size: 13px;
  font-weight: 700;
}

.more-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  margin-top: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem;
  background: rgba(8, 8, 8, 0.62);
  box-shadow: var(--shadow);
}

.proof-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-content: start;
}

.proof-links a {
  border: 1px solid rgba(229, 57, 69, 0.2);
  border-radius: 999px;
  padding: 0.48rem 0.7rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.proof-links a:hover {
  transform: translateY(-2px);
  color: var(--accent-text);
  border-color: var(--line-strong);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.comparison-col,
.service-card,
.module-card,
.process-item,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.comparison-col {
  padding: 2rem;
}

.comparison-col.good {
  background:
    linear-gradient(135deg, rgba(229, 57, 69, 0.12), transparent 58%),
    var(--bg-card);
}

.comparison-col h3 {
  color: var(--accent-text);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.comparison-col li {
  position: relative;
  margin-top: 1rem;
  border-top: 1px solid rgba(229, 57, 69, 0.12);
  padding: 1rem 0 0 1.5rem;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.comparison-col li::before {
  content: "x";
  position: absolute;
  left: 0;
  top: 1rem;
  color: var(--accent);
  font-weight: 700;
}

.comparison-col.good li::before {
  content: "✓";
}

.services {
  background:
    linear-gradient(180deg, rgba(229, 57, 69, 0.03), transparent),
    var(--bg-primary);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.module-card {
  padding: 1.45rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.service-card:hover,
.module-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: rgba(16, 10, 12, 0.92);
}

.service-card > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.module-card.wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1.6rem;
  align-items: start;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(229, 57, 69, 0.16);
  padding-top: 1rem;
}

.price-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.price-row strong {
  flex: 0 0 auto;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.sniper-list {
  display: grid;
  gap: 0.65rem;
}

.sniper-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(229, 57, 69, 0.16);
  border-radius: 8px;
  padding: 0.85rem;
  background: rgba(8, 8, 8, 0.48);
}

.sniper-list span {
  color: var(--muted);
  font-weight: 500;
}

.sniper-list strong {
  flex: 0 0 auto;
  color: var(--text);
  font-weight: 700;
}

.process-list {
  display: grid;
  gap: 0.9rem;
}

.process-item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 1.35rem;
}

.process-item > span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.process-item h3 {
  font-size: 1.12rem;
}

.process-item p {
  margin-top: 0.35rem;
  color: var(--muted);
  font-weight: 500;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.faq-item:hover,
.faq-item.is-open {
  border-color: var(--line-strong);
  background: rgba(10, 10, 10, 0.78);
}

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  border: 0;
  padding: 1.25rem 1.35rem;
  color: var(--text);
  background: transparent;
  font: inherit;
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-question:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: -1px;
}

.faq-question i {
  position: relative;
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
}

.faq-question i::before,
.faq-question i::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1rem;
  height: 2px;
  background: var(--accent-text);
  transition: transform 180ms ease;
}

.faq-question i::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-question i::after {
  transform: rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}

.faq-answer p {
  padding: 0 1.35rem 1.25rem;
  color: var(--muted);
  font-weight: 500;
}

.contact {
  border-top: 1px solid rgba(229, 57, 69, 0.12);
  border-bottom: 1px solid rgba(229, 57, 69, 0.12);
  background: rgba(229, 57, 69, 0.04);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.contact h2 {
  max-width: 48rem;
}

.site-footer {
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted-dark);
  font-size: 14px;
  font-weight: 500;
}

.footer-inner a {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 160ms;
}

.reveal-delay-3 {
  transition-delay: 240ms;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.72;
    transform: scale(1.35);
  }
}

@keyframes float-one {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-13px);
  }
}

@keyframes float-two {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes float-three {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-11px);
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    padding: 0.6rem 1rem;
    min-width: 0;
  }

  .site-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-self: stretch;
    min-width: 0;
    max-width: 100%;
    gap: 0.35rem;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 1 0 auto;
    border: 1px solid rgba(229, 57, 69, 0.12);
    border-radius: 8px;
    padding: 0.42rem 0.6rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
  }

  .hero-inner,
  .portfolio-card,
  .more-proof,
  .comparison-grid,
  .module-card.wide {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-inner {
    gap: 2.5rem;
    padding-top: 7.6rem;
  }

  .hero-visual {
    min-height: 28rem;
  }

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

  .module-card.wide {
    grid-column: auto;
  }

  .trust-inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(1180px, calc(100vw - 1rem));
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .btn-nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: 0;
    padding-top: 7.3rem;
    padding-bottom: 3rem;
  }

  .hero-tag {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    width: 100%;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.35;
    white-space: normal;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 9.6vw, 2.7rem);
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .hero-sub,
  .section-head p,
  .contact p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.66;
  }

  .hero-left,
  .hero-right,
  .hero-visual {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .hero-left,
  .hero-right {
    max-width: 352px;
    margin-right: 0;
    margin-left: 0;
  }

  .hero-actions,
  .contact-inner {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    min-height: 0;
  }

  .tg-main {
    position: relative;
    top: auto;
    right: auto;
    grid-column: 1 / -1;
    width: 100%;
    animation: none;
  }

  .tg-float {
    position: relative;
    inset: auto;
    max-width: none;
    min-height: 7rem;
    animation: none;
  }

  .tg-float-one {
    left: auto;
    top: auto;
    bottom: auto;
  }

  .tg-float-two {
    right: auto;
    bottom: auto;
  }

  .trust-inner {
    display: grid;
    justify-content: stretch;
  }

  .trust-item {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 1rem 0;
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .cases,
  .approach,
  .services,
  .modules,
  .process,
  .faq,
  .contact {
    padding: 4.4rem 0;
  }

  .portfolio-card,
  .more-proof,
  .comparison-col,
  .service-card,
  .module-card {
    padding: 1.15rem;
  }

  .case-image,
  .case-image img {
    min-height: 15rem;
  }

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

  .price-row,
  .sniper-list div {
    display: grid;
  }

  .process-item {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: grid;
  }
}

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