*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --bg: #07070b;
  --bg2: #0e0e14;
  --card: rgba(255, 255, 255, 0.025);
  --card-h: rgba(255, 255, 255, 0.05);
  --red: #ff1a1a;
  --red2: #cc0000;
  --red3: #ff4d4d;
  --red-g: rgba(255, 26, 26, 0.15);
  --silver: #d0d0d0;
  --text: #eee;
  --text2: #888;
  --text3: #555;
  --border: rgba(255, 255, 255, 0.06);
  --font: 'Outfit', sans-serif;
  --font2: 'Space Grotesk', sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--red2) var(--bg)
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem
}

.section {
  padding: 7rem 0;
  position: relative;
  z-index: 2
}

em {
  font-style: normal
}

.gradient-text {
  background: linear-gradient(135deg, var(--red), var(--red3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none
}

.cursor-follow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 26, 26, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .4s
}

body:hover .cursor-follow {
  opacity: 1
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s, visibility .6s
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none
}

.preloader-logo {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  animation: prePulse 1.2s ease-in-out infinite
}

.preloader-bar {
  width: 160px;
  height: 3px;
  background: var(--border);
  border-radius: 3px;
  margin-top: 1.5rem;
  overflow: hidden
}

.preloader-progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red), var(--red3));
  border-radius: 3px;
  animation: preLoad 1.8s var(--ease) forwards
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center
}

@keyframes prePulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(.95)
  }
}

@keyframes preLoad {
  to {
    width: 100%
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all .4s var(--ease)
}

.navbar.scrolled {
  background: rgba(7, 7, 11, .9);
  backdrop-filter: blur(24px);
  padding: .7rem 0;
  border-bottom: 1px solid var(--border)
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  z-index: 10000
}

.nav-logo-img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  transition: transform .3s
}

.nav-logo:hover .nav-logo-img {
  transform: rotate(-10deg) scale(1.1)
}

.nav-logo span {
  font-family: var(--font2);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #fff, var(--silver));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.nav-links {
  display: flex;
  gap: 2.2rem
}

.nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text2);
  transition: color .3s;
  position: relative
}

.nav-link:hover,
.nav-link.active {
  color: #fff
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px
}

.nav-cta {
  position: relative;
  padding: .6rem 1.6rem;
  background: linear-gradient(135deg, var(--red), var(--red2));
  color: #fff;
  border-radius: 10px;
  font-size: .875rem;
  font-weight: 600;
  overflow: hidden;
  transition: all .3s var(--ease)
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 26, 26, .35)
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  transition: left .6s
}

.nav-cta:hover .btn-shine {
  left: 100%
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000;
  padding: 4px
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 4rem;
  position: relative;
  z-index: 2
}

.hero-left {
  flex: 1
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .8rem;
  color: var(--text2);
  background: rgba(255, 255, 255, .02)
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 2s infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 8px #22c55e
  }

  50% {
    opacity: .4;
    box-shadow: 0 0 2px #22c55e
  }
}

.hero-title {
  font-family: var(--font2);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin: 1.5rem 0
}

.hero-title .line {
  display: block
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text2);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.75
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

.scroll-hint-wrap {
  position: relative;
  width: 100%;
  margin-top: -5rem;
  padding-bottom: 3rem;
  z-index: 2
}

.scroll-hint {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  color: var(--text3);
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid var(--text3);
  border-radius: 12px;
  position: relative
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--red);
  border-radius: 3px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollAnim 2s infinite
}

@keyframes scrollAnim {
  0% {
    opacity: 1;
    top: 6px
  }

  100% {
    opacity: 0;
    top: 18px
  }
}

.logo-showcase {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center
}

.logo-main {
  width: 150px;
  height: 150px;
  border-radius: 28px;
  position: relative;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(255, 26, 26, .3))
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-18px)
  }
}

.logo-bg-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle, rgba(255, 26, 26, .18) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: .5;
    transform: scale(1)
  }

  50% {
    opacity: 1;
    transform: scale(1.15)
  }
}

.logo-orbit {
  position: absolute;
  border: 1px solid rgba(255, 26, 26, .08);
  border-radius: 50%
}

.orbit-1 {
  inset: 30px;
  animation: spin 25s linear infinite
}

.orbit-2 {
  inset: 0;
  animation: spin 35s linear infinite reverse;
  border-style: dashed;
  border-color: rgba(255, 26, 26, .06)
}

.orbit-3 {
  inset: -30px;
  animation: spin 45s linear infinite;
  border-color: rgba(255, 26, 26, .04)
}

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

.orbit-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--red);
  z-index: 4;
  top: 50%;
  left: 50%
}

.dot-1 {
  animation: orbitMove1 25s linear infinite
}

.dot-2 {
  animation: orbitMove2 35s linear infinite
}

.dot-3 {
  animation: orbitMove3 45s linear infinite
}

@keyframes orbitMove1 {
  from {
    transform: rotate(0) translateX(120px) rotate(0)
  }

  to {
    transform: rotate(360deg) translateX(120px) rotate(-360deg)
  }
}

@keyframes orbitMove2 {
  from {
    transform: rotate(0) translateX(170px) rotate(0)
  }

  to {
    transform: rotate(-360deg) translateX(170px) rotate(360deg)
  }
}

@keyframes orbitMove3 {
  from {
    transform: rotate(0) translateX(200px) rotate(0)
  }

  to {
    transform: rotate(360deg) translateX(200px) rotate(-360deg)
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  background: linear-gradient(135deg, var(--red), var(--red2));
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .3s var(--ease);
  border: none;
  cursor: pointer
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform .3s
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 26, 26, .4)
}

.btn-primary:hover svg {
  transform: translateX(4px)
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem
}

.btn-lg svg {
  width: 22px;
  height: 22px
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: .9rem 2rem;
  border: 1px solid var(--border);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .3s var(--ease);
  cursor: pointer;
  background: transparent
}

.btn-outline:hover {
  border-color: var(--red);
  background: rgba(255, 26, 26, .06);
  box-shadow: 0 0 20px rgba(255, 26, 26, .1)
}

.marquee {
  padding: 1.2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  z-index: 2;
  position: relative
}

.marquee-inner {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  width: max-content;
  animation: scroll 25s linear infinite;
  font-family: var(--font2);
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text3);
  white-space: nowrap
}

.sep {
  color: var(--red);
  font-size: .6rem
}

@keyframes scroll {
  to {
    transform: translateX(-50%)
  }
}

.section-head {
  text-align: center;
  margin-bottom: 4rem
}

.tag {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--red);
  margin-bottom: .8rem
}

.section-title {
  font-family: var(--font2);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: .8rem
}

.section-sub {
  color: var(--text2);
  max-width: 550px;
  margin: 0 auto;
  font-size: 1.05rem
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem
}

.s-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.5rem;
  overflow: hidden;
  transition: all .5s var(--ease);
  cursor: pointer
}

.s-card:hover {
  background: var(--card-h);
  transform: translateY(-6px);
  border-color: rgba(255, 26, 26, .15)
}

.s-card-wide {
  grid-column: 1/-1
}

.s-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 26, 26, .06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none
}

.s-card:hover .s-card-glow {
  opacity: 1
}

.s-card-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--red3));
  transition: width .6s var(--ease)
}

.s-card:hover .s-card-border {
  width: 100%
}

.s-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 26, 26, .07);
  border: 1px solid rgba(255, 26, 26, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0
}

.s-icon svg {
  width: 26px;
  height: 26px;
  color: var(--red);
  flex-shrink: 0
}

.s-num {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-family: var(--font2);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .025)
}

.s-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .6rem
}

.s-card p {
  color: var(--text2);
  font-size: .92rem;
  line-height: 1.7
}

.s-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1.2rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--red);
  opacity: .5;
  transition: all .3s var(--ease)
}

.s-card:hover .s-link {
  opacity: 1;
  transform: translateX(4px)
}

a.s-card {
  display: block;
  color: inherit;
  text-decoration: none
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .65rem 1.5rem .65rem 1.2rem;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  color: var(--text2);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .3px;
  transition: all .4s var(--ease);
  backdrop-filter: blur(20px);
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem
}

.back-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 26, 26, .1), transparent 60%);
  opacity: 0;
  transition: opacity .4s
}

.back-btn:hover {
  color: #fff;
  border-color: rgba(255, 26, 26, .35);
  transform: translateX(-3px);
  box-shadow: 0 4px 24px rgba(255, 26, 26, .15)
}

.back-btn:hover::before {
  opacity: 1
}

.back-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
  position: relative;
  z-index: 1
}

.back-btn:hover svg {
  transform: translateX(-4px)
}

.back-btn span {
  position: relative;
  z-index: 1
}

.back-btn .back-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  flex-shrink: 0;
  position: relative;
  z-index: 1
}

.svc-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  z-index: 2
}

.svc-hero .container {
  max-width: 900px
}

.svc-hero .tag {
  margin-bottom: 1rem
}

.svc-hero h1 {
  font-family: var(--font2);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.15
}

.svc-hero p {
  color: var(--text2);
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 700px
}

.svc-section {
  padding: 5rem 0;
  position: relative;
  z-index: 2
}

.svc-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem
}

.svc-section h2 {
  font-family: var(--font2);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 3rem
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all .3s var(--ease)
}

.feature-item:hover {
  border-color: rgba(255, 26, 26, .15);
  background: var(--card-h)
}

.feature-item .fi-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 26, 26, .08);
  border: 1px solid rgba(255, 26, 26, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
  font-size: 1rem;
  transition: all .3s var(--ease)
}

.feature-item:hover .fi-icon {
  background: rgba(255, 26, 26, .12);
  box-shadow: 0 0 16px rgba(255, 26, 26, .1)
}

.fi-icon svg {
  width: 20px;
  height: 20px;
  color: var(--red);
  flex-shrink: 0
}

.feature-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .3rem
}

.feature-item p {
  color: var(--text2);
  font-size: .9rem;
  line-height: 1.6
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px
}

.step-num {
  font-family: var(--font2);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: .5rem
}

.step h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .4rem
}

.step p {
  color: var(--text2);
  font-size: .85rem;
  line-height: 1.6
}

.svc-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  margin-top: 2rem
}

.svc-cta h3 {
  font-family: var(--font2);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: .6rem
}

.svc-cta p {
  color: var(--text2);
  margin-bottom: 1.5rem
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center
}

.why-left {
  display: flex;
  flex-direction: column
}

.why-desc {
  color: var(--text2);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem
}

.why-checks {
  display: flex;
  flex-direction: column;
  gap: .9rem
}

.check {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-weight: 500;
  font-size: .95rem
}

.check-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 26, 26, .1);
  border: 1px solid rgba(255, 26, 26, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0
}

.code-window {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4)
}

.code-bar {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .9rem 1.3rem;
  border-bottom: 1px solid var(--border)
}

.cd {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0
}

.cd.r {
  background: #ff5f57
}

.cd.y {
  background: #febc2e
}

.cd.g {
  background: #28c840
}

.code-name {
  font-size: .78rem;
  color: var(--text3);
  margin-left: .5rem
}

.code-content {
  padding: 1.5rem;
  overflow-x: auto
}

.code-content code {
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: .83rem;
  line-height: 1.9;
  white-space: pre
}

.ck {
  color: var(--red3)
}

.cv {
  color: var(--silver)
}

.cp {
  color: #7dd3fc
}

.cs {
  color: #86efac
}

.stats-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  position: relative;
  z-index: 2
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center
}

.stat {
  padding: 2rem 1rem
}

.stat-val {
  font-family: var(--font2);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700
}

.stat-plus {
  font-family: var(--font2);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--red)
}

.stat-label {
  color: var(--text2);
  font-size: .85rem;
  margin-top: .4rem;
  text-transform: uppercase;
  letter-spacing: 1.5px
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem
}

.r-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  transition: all .4s var(--ease)
}

.r-card:hover {
  background: var(--card-h);
  border-color: rgba(255, 26, 26, .15);
  transform: translateY(-4px)
}

.r-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 26, 26, .07);
  border: 1px solid rgba(255, 26, 26, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem
}

.r-icon svg {
  width: 22px;
  height: 22px;
  color: var(--red)
}

.r-badge {
  display: inline-block;
  padding: .2rem .7rem;
  background: rgba(255, 26, 26, .1);
  border: 1px solid rgba(255, 26, 26, .2);
  border-radius: 6px;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red3);
  margin-bottom: .8rem
}

.r-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem
}

.r-card p {
  color: var(--text2);
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 1rem
}

.r-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--red);
  opacity: .7;
  transition: all .3s var(--ease)
}

.r-card:hover .r-link {
  opacity: 1;
  transform: translateX(4px)
}

.r-link:hover {
  text-decoration: none
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 26, 26, .12);
  border: 1px solid rgba(255, 26, 26, .2);
  backdrop-filter: blur(20px);
  color: var(--red);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .4s var(--ease);
  z-index: 900
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.back-to-top:hover {
  background: rgba(255, 26, 26, .25);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(255, 26, 26, .2)
}

.back-to-top svg {
  width: 20px;
  height: 20px
}

body {
  animation: pageIn .6s ease-out
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.cta-box {
  position: relative;
  text-align: center;
  padding: 5rem 3rem;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--card);
  overflow: hidden
}

.cta-glow-1 {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 250px;
  background: radial-gradient(ellipse, rgba(255, 26, 26, .12) 0%, transparent 70%);
  pointer-events: none
}

.cta-glow-2 {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 26, 26, .08) 0%, transparent 70%);
  pointer-events: none
}

.cta-title {
  font-family: var(--font2);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin: .8rem 0;
  position: relative
}

.cta-sub {
  color: var(--text2);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto 2rem;
  position: relative
}

.cta-note {
  color: var(--text3);
  font-size: .85rem;
  margin-top: 1.2rem;
  position: relative
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem
}

.t-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.2rem;
  transition: all .5s var(--ease);
  position: relative;
  backdrop-filter: blur(10px)
}

.t-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font2);
  font-size: 4rem;
  color: var(--red);
  opacity: 0.1;
  line-height: 1
}

.t-card:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 26, 26, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 26, 26, 0.05)
}

.t-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem
}

.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(255, 26, 26, 0.2)
}

.t-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .1rem;
  color: #fff
}

.t-info span {
  font-size: .8rem;
  color: var(--text3)
}

.t-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.2rem;
  color: #ffb800;
  font-size: .85rem
}

.t-quote {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text2);
  font-style: italic;
  margin-bottom: 0
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all .4s var(--ease)
}

.faq-item:hover {
  border-color: rgba(255, 26, 26, 0.2);
  background: var(--card-h)
}

.faq-q {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  gap: 1rem
}

.faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text3);
  transition: transform .4s var(--ease)
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--red)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 26, 26, 0.02)
}

.faq-item.open .faq-a {
  max-height: 500px
}

.faq-a p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text2);
  font-size: .9rem;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(-10px);
  transition: all .4s var(--ease)
}

.faq-item.open .faq-a p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .1s
}

.footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 2
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .8rem
}

.footer-logo img {
  width: 34px;
  height: 34px;
  border-radius: 8px
}

.footer-logo span {
  font-family: var(--font2);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px
}

.footer-brand p {
  color: var(--text2);
  font-size: .88rem
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem
}

.footer-col h4 {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  color: var(--text)
}

.footer-col a {
  display: block;
  color: var(--text2);
  font-size: .88rem;
  padding: .25rem 0;
  transition: color .3s
}

.footer-col a:hover {
  color: var(--red)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text3);
  font-size: .78rem
}

.anim {
  opacity: 0;
  transform: translateY(35px);
  transition: all .8s var(--ease)
}

.anim[data-anim="scale"] {
  transform: scale(.85);
  opacity: 0
}

.anim.show {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important
}

@media(max-width:768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 7rem;
    gap: 2rem
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto
  }

  .hero-btns {
    justify-content: center
  }

  .hero-right {
    order: -1
  }

  .logo-showcase {
    width: 240px;
    height: 240px
  }

  .logo-main {
    width: 100px;
    height: 100px
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(7, 7, 11, .99);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 9999
  }

  .nav-links::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255, 26, 26, .06), transparent 70%);
    pointer-events: none
  }

  .nav-links.open {
    display: flex
  }

  .nav-links .nav-link {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text2);
    transition: color .3s
  }

  .nav-links .nav-link:hover,
  .nav-links .nav-link.active {
    color: #fff
  }

  .nav-cta {
    display: none
  }

  .hamburger {
    display: flex
  }

  .services-grid {
    grid-template-columns: 1fr
  }

  .s-card-wide {
    grid-column: auto
  }

  .why-grid {
    grid-template-columns: 1fr
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-top {
    grid-template-columns: 1fr
  }

  .footer-cols {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-bottom {
    flex-direction: column;
    gap: .4rem;
    text-align: center
  }

  .scroll-hint {
    display: none
  }

  .svc-hero {
    padding: 7rem 1.2rem 3rem;
    min-height: auto;
    text-align: center
  }

  .svc-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center
  }

  .svc-hero h1 {
    font-size: 2rem
  }

  .svc-hero p {
    font-size: 1rem
  }

  .svc-section .container {
    padding: 0 1.2rem
  }

  .svc-section h2 {
    font-size: 1.4rem;
    text-align: center
  }

  .feature-item {
    padding: 1rem 1.2rem
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 1rem
  }

  .svc-cta {
    text-align: center
  }

  .svc-cta h3 {
    font-size: 1.3rem
  }

  .back-btn {
    align-self: flex-start
  }

  .resources-grid {
    grid-template-columns: 1fr
  }

  .testimonials-grid {
    grid-template-columns: 1fr
  }

  .faq-list {
    padding: 0 .5rem
  }
}