:root {
  --ink: #0b0c14;
  --night: #14151f;
  --slate: #4b5169;
  --muted: #767f97;
  --paper: #f7f6f2;
  --white: #ffffff;
  --line: rgba(11, 12, 20, 0.12);
  --red: #ff3b3f;
  --orange: #ff8a3d;
  --cyan: #22d3d3;
  --lime: #c6ff3d;
  --violet: #8b5cff;
  --yellow: #ffd042;
  --shadow: 0 30px 90px rgba(11, 12, 20, 0.22);
  --shadow-lg: 0 46px 120px rgba(11, 12, 20, 0.32);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: 0;
  cursor: default;
}

body.menu-open,
body.popup-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

/* ---------- custom cursor ---------- */

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
}

.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(11, 12, 20, 0.5);
  transition: opacity 0.2s ease, width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s ease, border-color 0.25s ease;
}

.has-cursor .cursor-dot,
.has-cursor .cursor-ring {
  opacity: 1;
}

.cursor-ring.is-hover {
  width: 74px;
  height: 74px;
  background: rgba(255, 59, 63, 0.1);
  border-color: var(--red);
}

.section-dark .cursor-ring {
  border-color: rgba(255, 255, 255, 0.6);
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 92px;
  padding: 18px clamp(18px, 4vw, 58px);
  background: rgba(247, 246, 242, 0.78);
  border-bottom: 1px solid rgba(11, 12, 20, 0.08);
  backdrop-filter: blur(20px);
  transition: min-height 0.3s var(--ease), background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(247, 246, 242, 0.94);
  box-shadow: 0 14px 40px rgba(11, 12, 20, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(255, 59, 63, 0.35);
  transition: transform 0.35s var(--ease);
}

.brand:hover .brand-mark {
  transform: rotate(-8deg) scale(1.06);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
  width: 100%;
  color: #262a38;
  font-size: 0.92rem;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.main-nav a:hover {
  color: var(--red);
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
}

/* ---------- buttons ---------- */

.btn {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 62px;
  padding: 0 30px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease, background 0.35s ease, color 0.2s ease;
  will-change: transform;
}

.btn::after {
  content: "↗";
  display: inline-block;
  font-size: 1.1rem;
  transition: transform 0.35s var(--ease);
}

.btn:hover::after {
  transform: translate(4px, -4px);
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--orange));
  background-size: 160% 160%;
  color: var(--white);
  box-shadow: 0 20px 50px rgba(255, 59, 63, 0.32);
}

.btn-primary:hover {
  background-position: 100% 0;
  box-shadow: 0 26px 64px rgba(255, 59, 63, 0.42);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border: 2px solid rgba(11, 12, 20, 0.14);
}

.btn-secondary:hover {
  border-color: var(--ink);
  box-shadow: 0 16px 40px rgba(11, 12, 20, 0.12);
}

.section-dark .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.section-dark .btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-full {
  width: 100%;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.72fr) minmax(330px, 0.5fr);
  gap: clamp(24px, 3.2vw, 54px);
  align-items: center;
  min-height: calc(100vh - 92px);
  padding: clamp(44px, 5vw, 80px) clamp(18px, 5vw, 76px);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 59, 63, 0.26), transparent 34%),
    radial-gradient(circle at 52% 14%, rgba(139, 92, 255, 0.24), transparent 32%),
    radial-gradient(circle at 80% 70%, rgba(34, 211, 211, 0.16), transparent 30%),
    linear-gradient(135deg, #0e0f18 0%, #201f2e 48%, #fff2e6 48.2%, #ffffff 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 90px;
  background: linear-gradient(to bottom, transparent, rgba(247, 246, 242, 0.94));
  content: "";
  pointer-events: none;
}

.hero-copy,
.hero-media,
.request-card {
  position: relative;
  z-index: 2;
}

.eyebrow,
.form-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 8px 16px 8px 12px;
  border: 1px solid rgba(255, 59, 63, 0.35);
  border-radius: var(--radius-pill);
  background: rgba(255, 59, 63, 0.08);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  content: "";
  box-shadow: 0 0 0 4px rgba(255, 59, 63, 0.18);
}

.hero .eyebrow,
.section-dark .eyebrow {
  border-color: rgba(255, 208, 66, 0.4);
  background: rgba(255, 208, 66, 0.1);
  color: #ffd042;
}

.hero .eyebrow::before,
.section-dark .eyebrow::before {
  background: #ffd042;
  box-shadow: 0 0 0 4px rgba(255, 208, 66, 0.2);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 820px;
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(3.8rem, 7.4vw, 8.4rem);
  font-weight: 800;
  line-height: 0.88;
}

h1 em {
  position: relative;
  font-style: normal;
  background: linear-gradient(100deg, var(--lime), var(--cyan) 60%, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 5.6rem);
  font-weight: 800;
  line-height: 0.98;
}

h3 {
  font-size: 1.24rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.05rem, 1.3vw, 1.3rem);
  font-weight: 700;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
}

.proof-row span {
  min-height: 100px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
  transition: transform 0.3s var(--ease), background 0.3s ease, border-color 0.3s ease;
}

.proof-row span:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
}

.proof-row strong {
  display: block;
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.9rem, 2.9vw, 2.9rem);
  line-height: 1;
}

.hero-media {
  min-height: 620px;
  align-self: stretch;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.hero-media::before {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(180deg, transparent 35%, rgba(11, 12, 20, 0.68));
  content: "";
}

.metric-card {
  position: absolute;
  display: grid;
  gap: 6px;
  min-width: 168px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 54px rgba(11, 12, 20, 0.24);
  backdrop-filter: blur(14px);
  animation: floatCard 4s ease-in-out infinite;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.metric-card strong {
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
}

.metric-primary {
  left: -30px;
  bottom: 34px;
  border-bottom: 4px solid var(--lime);
}

.metric-secondary {
  top: 44px;
  right: -24px;
  border-bottom: 4px solid var(--violet);
  animation-delay: -1.8s;
}

/* ---------- spin badge ---------- */

.spin-badge {
  position: absolute;
  z-index: 3;
  top: -40px;
  left: -40px;
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
}

.spin-badge svg {
  width: 100%;
  height: 100%;
  animation: spin 14s linear infinite;
}

.spin-badge text {
  font-family: "Sora", sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  fill: var(--ink);
  text-transform: uppercase;
}

.spin-badge-center {
  position: absolute;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: var(--white);
  font-size: 1.3rem;
  box-shadow: 0 12px 28px rgba(255, 59, 63, 0.4);
  transition: transform 0.3s var(--ease);
}

.spin-badge:hover .spin-badge-center {
  transform: scale(1.12) rotate(20deg);
}

.request-card,
.footer-form,
.popup-panel {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
}

.request-card {
  padding: clamp(24px, 2.3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.request-card h2,
.popup-panel h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(1.65rem, 2.1vw, 2.2rem);
  line-height: 1.06;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: #363c4d;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1.5px solid rgba(11, 12, 20, 0.14);
  border-radius: var(--radius-sm);
  background: #f8f8f5;
  color: var(--ink);
  outline: none;
  padding: 0 14px;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lead-form textarea {
  min-height: 116px;
  padding-top: 14px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 59, 63, 0.14);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

/* ---------- brand strip ---------- */

.brand-strip {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  padding: 26px clamp(18px, 5vw, 76px);
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-strip > span {
  min-width: max-content;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.logo-track {
  display: flex;
  gap: 16px;
  min-width: max-content;
  animation: marquee 22s linear infinite;
}

.logo-track strong {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.86);
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.logo-track strong:hover {
  border-color: var(--lime);
  background: rgba(198, 255, 61, 0.08);
  color: var(--lime);
}

/* ---------- sections ---------- */

.section {
  padding: clamp(84px, 9vw, 150px) clamp(18px, 5vw, 76px);
}

.section-soft {
  background: #eef1e9;
}

.section-dark {
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 59, 63, 0.22), transparent 36%),
    radial-gradient(circle at 82% 76%, rgba(139, 92, 255, 0.2), transparent 34%),
    linear-gradient(135deg, #0f1019, #1f1e2c);
  color: var(--white);
}

.section-header,
.section-copy {
  max-width: 960px;
  margin-bottom: clamp(40px, 5.5vw, 68px);
}

.section-copy p,
.benefit-copy p,
.contact-copy p {
  max-width: 760px;
  color: var(--slate);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.75;
}

.about,
.benefits,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
}

.image-feature,
.benefit-image {
  position: relative;
}

.image-feature img,
.benefit-image img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-panel {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 240px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  border-bottom: 4px solid var(--red);
}

.feature-panel strong {
  display: block;
  color: var(--red);
  font-family: "Sora", sans-serif;
  font-size: 4.2rem;
  line-height: 1;
}

.feature-panel span {
  color: var(--slate);
  font-weight: 900;
}

/* ---------- stats band ---------- */

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  padding: 0 clamp(18px, 5vw, 76px);
  background: var(--line);
}

.stats-band article {
  position: relative;
  min-height: 200px;
  padding: clamp(26px, 3vw, 42px);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  transition: transform 0.3s var(--ease);
}

.stats-band article:hover {
  transform: translateY(-6px);
}

.stats-band article:nth-child(1) { background: #101020; }
.stats-band article:nth-child(2) { background: #1c1430; }
.stats-band article:nth-child(3) { background: #1c1020; }
.stats-band article:nth-child(4) { background: #0f1a1a; }

.stats-band article:nth-child(1) strong { color: var(--lime); }
.stats-band article:nth-child(2) strong { color: var(--violet); }
.stats-band article:nth-child(3) strong { color: var(--red); }
.stats-band article:nth-child(4) strong { color: var(--cyan); }

.stats-band strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.8rem, 5.4vw, 5.4rem);
  line-height: 1;
}

.stats-band span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

/* ---------- services ---------- */

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

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 22px 60px rgba(11, 12, 20, 0.1);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s ease, color 0.4s ease;
}

.service-card:hover {
  transform: translateY(-12px) rotate(-0.6deg);
  box-shadow: var(--shadow-lg);
  background: var(--ink);
  color: var(--white);
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.award-row article:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 74px rgba(11, 12, 20, 0.16);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-card span,
.service-card h3,
.service-card p {
  margin-right: 26px;
  margin-left: 26px;
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-top: -28px;
  margin-bottom: 22px;
  border-radius: var(--radius-sm);
  background: var(--red);
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-weight: 800;
  box-shadow: 0 16px 38px rgba(255, 59, 63, 0.32);
  transition: transform 0.35s var(--ease);
}

.service-card:hover span {
  transform: rotate(-10deg) scale(1.08);
  background: var(--lime);
  color: var(--ink);
}

.service-card p,
.portfolio-slide p,
.process-list p,
.benefit-copy li span,
.faq p {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.68;
}

.service-card p {
  margin-bottom: 30px;
}

/* ---------- portfolio slider ---------- */

.slider {
  position: relative;
}

.slider-viewport {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.slider-track {
  display: flex;
  transform: translateX(calc(var(--slide-index, 0) * -100%));
  transition: transform 0.6s var(--ease);
}

.portfolio-slide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  min-width: 100%;
  background: var(--white);
}

.portfolio-slide img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.portfolio-slide div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 70px);
}

.portfolio-slide span {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 20px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 59, 63, 0.1);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-slide h3 {
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  line-height: 1.05;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.slider-btn,
.slider-dots button {
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-weight: 900;
}

.slider-btn {
  min-height: 50px;
  padding: 0 24px;
  background: var(--ink);
  color: var(--white);
  transition: transform 0.3s var(--ease), background 0.3s ease;
}

.slider-btn:hover {
  transform: translateY(-3px);
  background: var(--red);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  background: rgba(11, 12, 20, 0.2);
  transition: width 0.3s var(--ease), background 0.3s ease;
}

.slider-dots button.is-active {
  width: 36px;
  background: var(--red);
}

/* ---------- process ---------- */

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

.process-list article {
  min-height: 310px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.35s var(--ease), background 0.35s ease, border-color 0.35s ease;
}

.process-list article:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 208, 66, 0.4);
}

.process-list span {
  color: #ffd042;
  font-family: "Sora", sans-serif;
  font-size: 4.6rem;
  font-weight: 800;
  line-height: 1;
}

.process-list h3 {
  margin-top: 36px;
  color: var(--white);
}

.process-list p,
.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- benefits ---------- */

.benefit-copy ul {
  display: grid;
  gap: 16px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-copy li {
  padding: 26px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--lime);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(11, 12, 20, 0.06);
  transition: transform 0.3s var(--ease), border-color 0.3s ease;
}

.benefit-copy li:hover {
  transform: translateX(6px);
  border-left-color: var(--red);
}

.benefit-copy li strong,
.benefit-copy li span {
  display: block;
}

.benefit-copy li strong {
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
}

/* ---------- awards / testimonials ---------- */

.award-row,
.testimonial-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.award-row article,
.testimonial-row blockquote,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(11, 12, 20, 0.06);
}

.award-row article {
  min-height: 190px;
  padding: 30px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, background 0.3s ease;
}

.award-row article:hover {
  background: var(--ink);
}

.award-row article:hover strong,
.award-row article:hover span {
  color: var(--white);
}

.award-row strong {
  display: block;
  margin-bottom: 44px;
  color: var(--red);
  font-family: "Sora", sans-serif;
  font-size: 1.56rem;
  transition: color 0.3s ease;
}

.award-row span {
  color: var(--muted);
  font-weight: 800;
  transition: color 0.3s ease;
}

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

.testimonial-row blockquote {
  position: relative;
  margin: 0;
  padding: 34px 30px 30px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.testimonial-row blockquote:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.testimonial-row blockquote::before {
  content: "\201C";
  display: block;
  margin-bottom: 6px;
  color: var(--lime);
  font-family: "Sora", sans-serif;
  font-size: 3.4rem;
  line-height: 1;
}

.testimonial-row p {
  color: #1c2130;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.6;
}

.testimonial-row cite {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-style: normal;
  font-weight: 900;
}

/* ---------- faq ---------- */

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

.faq details {
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq details[open] {
  border-color: var(--red);
}

.faq summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 26px 60px 26px 28px;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 26px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 59, 63, 0.1);
  color: var(--red);
  content: "+";
  font-size: 1.3rem;
  font-weight: 900;
  transform: translateY(-50%);
  transition: transform 0.3s var(--ease), background 0.3s ease;
}

.faq details[open] summary::after {
  background: var(--red);
  color: var(--white);
  transform: translateY(-50%) rotate(135deg);
}

.faq p {
  margin: -8px 28px 26px;
}

/* ---------- big CTA banner ---------- */

.big-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 10vw, 130px) clamp(18px, 5vw, 76px);
  background: linear-gradient(120deg, var(--lime), var(--cyan) 55%, var(--violet));
  text-align: center;
}

.big-cta::before {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(11, 12, 20, 0.06), transparent 60%);
  content: "";
  animation: drift 12s ease-in-out infinite;
}

.big-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.big-cta h2 {
  color: var(--ink);
  font-size: clamp(2.6rem, 6vw, 5.6rem);
}

.big-cta p {
  max-width: 620px;
  color: rgba(11, 12, 20, 0.72);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 800;
}

.big-cta .btn-primary {
  background: var(--ink);
  box-shadow: 0 24px 60px rgba(11, 12, 20, 0.32);
}

.big-cta .btn-primary:hover {
  box-shadow: 0 30px 74px rgba(11, 12, 20, 0.4);
}

/* ---------- contact ---------- */

.contact {
  align-items: start;
}

.footer-form {
  padding: clamp(26px, 3vw, 40px);
}

/* ---------- footer ---------- */

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(18px, 5vw, 76px);
  background: #08090f;
  color: var(--white);
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.62);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.footer-links a {
  transition: color 0.2s ease;
}

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

/* ---------- popup ---------- */

.popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(11, 12, 20, 0.78);
  backdrop-filter: blur(10px);
}

.popup.is-open {
  display: flex;
}

.popup-panel {
  position: relative;
  width: min(100%, 460px);
  padding: 34px;
  animation: popupIn 0.28s var(--ease) both;
  border-top: 4px solid var(--red);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #eef0e9;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  transition: background 0.2s ease, transform 0.2s ease;
}

.popup-close:hover {
  background: var(--red);
  color: var(--white);
  transform: rotate(90deg);
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: min(420px, calc(100vw - 40px));
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--lime);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  font-weight: 800;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.has-reveal .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes popupIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(4%, 3%); }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.62fr);
  }

  .hero-media {
    display: none;
  }

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

  .process-list,
  .award-row,
  .stats-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .site-header {
    min-height: 76px;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    padding: 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  body.menu-open .main-nav {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-header > .btn {
    display: none;
  }

  .hero,
  .about,
  .benefits,
  .contact,
  .portfolio-slide {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background:
      radial-gradient(circle at 10% 14%, rgba(255, 59, 63, 0.24), transparent 38%),
      linear-gradient(150deg, #0e0f18 0%, #201f2e 68%, #ffffff 68.3%, #ffffff 100%);
  }

  h1 {
    font-size: clamp(3.1rem, 13vw, 5.4rem);
  }

  .brand-strip {
    display: block;
  }

  .logo-track {
    margin-top: 14px;
  }

  .portfolio-slide img {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .hero {
    padding-top: 46px;
  }

  .proof-row,
  .service-row,
  .process-list,
  .award-row,
  .testimonial-row,
  .stats-band {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .spin-badge {
    display: none;
  }

  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (hover: none) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

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