/*
Theme Name: Page Builder Framework Child
Theme URI: https://wp-pagebuilderframework.com
Template: page-builder-framework
Author: David Vongries
Author URI: https://mapsteps.com
Description: Page Builder Framework is a super fast, lightweight (less than 50kb on the frontend) and highly customizible WordPress theme made to work with all page builders such as Elementor, Beaver Builder, Visual Composer, SiteOrigin, Divi, Thrive Architect, Brizy and more. It can be daunting to look for the perfect theme to pair with the page builder you love. Page Builder Framework is the only theme that has been specifically created for Page Builders. It has been written from ground up with SEO in mind, is 100% Gutenberg compatible and follows the latest web standards (HTML5 and schema.org markup). With its minimalistic approach and lots of customization options in the WordPress customizer, it enables you to build almost any type of website such as a Blog, Portfolio website, Agency website or WooCommerce storefront. Agency owners and Developers love Page Builder Framework for its flexibility and extendability when it comes to building outstanding client websites. If you’re not a coder, don’t worry! With endless options in the WordPress customizer it’s the perfect fit for users at any skill level. Are you using a Page Builder and still looking for the perfect theme? Look no further.
Tags: one-column,two-columns,left-sidebar,right-sidebar,custom-colors,custom-menu,featured-images,full-width-template,custom-logo,custom-background,threaded-comments,translation-ready,blog,news,e-commerce,theme-options,block-styles,wide-blocks
Version: 2.11.9.1775681565
Updated: 2026-04-08 20:52:45

*/

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --red: #e8192c;
  --red-d: #b5101f;
  --red-glow: rgba(232, 25, 44, 0.12);
  --black: #080808;
  --off: #101010;
  --char: #161616;
  --panel: #1c1c1c;
  --border: rgba(255, 255, 255, 0.08);
  --mid: #7a7a7a;
  --light: #cccccc;
  --white: #f4f4f4;
  --fd: "Bebas Neue", sans-serif;
  --fu: "Syne", sans-serif;
  --fb: "Open Sans", sans-serif;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--fb);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
ul,
ol {
  margin: 0;
}
/* ─── UTILS ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 56px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fu);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.tag::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
}
.tag.c {
  justify-content: center;
}
.tag.c::before {
  display: none;
}
h2 {
  font-family: var(--fd);
  font-size: clamp(44px, 5vw, 74px);
  line-height: 0.93;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 20px;
}
h2 em {
  color: var(--red);
  font-style: normal;
}
.lead {
  font-size: 18px;
  color: var(--mid);
  line-height: 1.85;
  max-width: 600px;
}
.lead.c {
  margin: 0 auto;
  text-align: center;
}
.btn-r {
  font-family: var(--fu);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 20px 44px;
  cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}
.btn-r:hover {
  background: var(--red-d);
  transform: translateY(-2px);
}
.btn-o {
  font-family: var(--fu);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: transparent;
  color: var(--light);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  padding: 20px 40px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.btn-o:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.sec {
  padding: 100px 0;
}
.sec.alt {
  background: var(--off);
}
.sec.panel {
  background: var(--char);
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: rgba(8, 8, 8, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 56px;
}
.logo a {
  font-family: var(--fd);
  font-size: 30px;
  letter-spacing: 4px;
  color: var(--white);
}
.logo b {
  color: var(--red);
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--fu);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--red);
}
/* Menu Open Button */
.menu-open-btn {
  width: 35px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 0.2s ease;
  padding: 5px;
  background: none;
  border: none;
}
.menu-open-btn:active {
  transform: scale(0.9);
}
.menu-open-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--light);
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

/* Close Button */
.close-btn {
  width: 28px;
  height: 28px;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease; /* Overall movement */
  position: absolute;
  top: 20px;
  right: 20px;
}
.close-btn span{
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--black);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transition: 0.25s ease-in-out;
}

.close-btn span:nth-child(1) {
  top: 18px;
  transform: rotate(45deg);
}

.close-btn span:nth-child(2) {
  top: 18px;
  transform: rotate(-45deg);
}

/* --- HOVER ANIMATION --- */
.close-btn:hover span {
  background: var(--red-d);
}

.close-btn:hover span:nth-child(1) {
  transform: rotate(135deg);
}

.close-btn:hover span:nth-child(2) {
  transform: rotate(-135deg);
}

/* --- ACTIVE (CLICK) ANIMATION --- */
.close-btn:active {
  transform: scale(0.85);
  transition: transform 0.1s;
}
/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 55% at 50% 40%,
    rgba(232, 25, 44, 0.08),
    transparent 65%
  );
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
  pointer-events: none;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-glow);
  border: 1px solid rgba(232, 25, 44, 0.3);
  padding: 9px 20px;
  margin-bottom: 32px;
  font-family: var(--fu);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  animation: up 0.6s ease both;
}
.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

.hero h1 {
  font-family: var(--fd);
  font-size: clamp(56px, 8vw, 108px);
  line-height: 0.9;
  letter-spacing: 2px;
  color: var(--white);
  max-width: 900px;
  animation: up 0.7s 0.1s ease both;
}
.hero h1 em {
  color: var(--red);
  font-style: normal;
}
.hero .sub {
  font-size: 19px;
  font-weight: 300;
  color: var(--mid);
  max-width: 560px;
  margin: 26px auto 0;
  line-height: 1.8;
  animation: up 0.7s 0.2s ease both;
}
.hero .sub strong {
  color: var(--light);
  font-weight: 500;
}
.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 42px;
  flex-wrap: wrap;
  animation: up 0.7s 0.3s ease both;
}

/* Trust logos */
.trust {
  margin-top: 64px;
  animation: up 0.7s 0.45s ease both;
}
.trust-label {
  font-family: var(--fu);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 22px;
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}
.trust-logo {
  font-family: var(--fu);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.3s;
  cursor: default;
}
.trust-logo:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* ─── PAIN POINTS ─── */
.pain-section {
  padding: 0;
  background: var(--off);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.pain-card {
  background: var(--off);
  padding: 56px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.pain-card:hover {
  background: var(--char);
}
.pain-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.pain-card:hover::before {
  transform: scaleX(1);
}
.pain-num {
  font-family: var(--fd);
  font-size: 80px;
  letter-spacing: 2px;
  color: rgba(232, 25, 44, 0.05);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}
.pain-icon {
  font-size: 34px;
  margin-bottom: 18px;
}
.pain-q {
  font-family: var(--fu);
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.pain-p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 26px;
}
.pain-link {
  font-family: var(--fu);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.pain-link:hover {
  gap: 12px;
}

/* ─── WHAT YOU GET ─── */
.get-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
  margin-top: 60px;
}
.get-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.get-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.get-item:first-child {
  border-top: 1px solid var(--border);
}
.get-check {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: var(--red-glow);
  border: 1px solid rgba(232, 25, 44, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 1px;
}
.get-title {
  font-family: var(--fu);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.get-desc {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
}
.get-visual {
  background: var(--char);
  border: 1px solid var(--border);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.get-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--red), var(--red-d));
}
.gv-top {
  margin-bottom: auto;
}
.gv-label {
  font-family: var(--fu);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 12px;
}
.gv-num {
  font-family: var(--fd);
  font-size: 64px;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
}
.gv-sub {
  font-size: 15px;
  color: var(--mid);
  margin-top: 10px;
  line-height: 1.55;
}
.gv-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 200, 100, 0.1);
  border: 1px solid rgba(0, 200, 100, 0.2);
  padding: 6px 16px;
  font-family: var(--fu);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #00c864;
  margin-top: 16px;
}
.gv-divider {
  height: 1px;
  background: var(--border);
  margin: 30px 0;
}
.gv-prog {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.gp-row {
}
.gp-top {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 8px;
}
.gp-top span:last-child {
  color: var(--white);
  font-weight: 600;
}
.gp-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
}
.gp-fill {
  height: 100%;
  background: linear-gradient(to right, var(--red), var(--red-d));
  border-radius: 3px;
}

/* ─── PROCESS ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(232, 25, 44, 0.3),
    transparent
  );
}
.ps {
  padding: 0 16px;
  text-align: center;
}
.ps-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--off);
  border: 1.5px solid rgba(232, 25, 44, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--fd);
  font-size: 22px;
  color: var(--red);
  position: relative;
  z-index: 1;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.ps:hover .ps-circle {
  background: rgba(232, 25, 44, 0.1);
  border-color: rgba(232, 25, 44, 0.7);
}
.ps-t {
  font-family: var(--fu);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.ps-d {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.65;
}

/* ─── WHO WE HELP ─── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 60px;
}
.who-card {
  background: var(--char);
  border: 1px solid var(--border);
  padding: 36px 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition:
    border-color 0.3s,
    transform 0.3s;
  cursor: default;
}
.who-card:hover {
  border-color: rgba(232, 25, 44, 0.35);
  transform: translateY(-3px);
}
.who-icon {
  font-size: 32px;
  flex-shrink: 0;
}
.who-name {
  font-family: var(--fu);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}
.who-desc {
  font-size: 14px;
  color: var(--mid);
}

/* ─── CASE STUDY SLIDER ─── */
.slider-wrap {
  position: relative;
  margin-top: 60px;
  overflow: hidden;
}
.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--char);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
}
.case-left {
  padding: 52px 48px;
  border-right: 1px solid var(--border);
}
.case-label {
  font-family: var(--fu);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.case-title {
  font-family: var(--fd);
  font-size: 42px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.05;
}
.case-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.cr {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.cr-l {
  font-family: var(--fu);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid);
  min-width: 90px;
  padding-top: 2px;
  flex-shrink: 0;
}
.cr-v {
  font-size: 15px;
  color: var(--light);
  line-height: 1.65;
}
.case-right {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1a0205, #161616);
}
.case-stat-n {
  font-family: var(--fd);
  font-size: 88px;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
}
.case-stat-n span {
  color: var(--red);
}
.case-stat-l {
  font-family: var(--fu);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 10px;
}
.case-stat-sub {
  font-size: 15px;
  color: var(--mid);
  margin-top: 8px;
  max-width: 200px;
  line-height: 1.5;
}
.case-mini-stats {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.cms {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.25);
}
.cms-l {
  font-family: var(--fu);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.cms-v {
  font-family: var(--fd);
  font-size: 26px;
  color: #fff;
}
/* Slider controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
.slider-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.dot.active {
  background: var(--red);
  transform: scale(1.3);
}
.slider-arrows {
  display: flex;
  gap: 12px;
}
.arr {
  width: 52px;
  height: 52px;
  background: var(--char);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
  font-size: 20px;
  color: var(--light);
}
.arr:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.slide-counter {
  font-family: var(--fu);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--mid);
}

/* ─── VIDEO ─── */
.video-wrap {
  margin-top: 56px;
  position: relative;
  background: var(--char);
  border: 1px solid var(--border);
  overflow: hidden;
}
.video-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a0205, #0d0d0d);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  position: relative;
}
.video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 50% 50%,
    rgba(232, 25, 44, 0.08),
    transparent
  );
}
.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.video-thumb:hover .play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(232, 25, 44, 0.4);
}
.play-btn svg {
  margin-left: 4px;
}
.video-label {
  font-family: var(--fu);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
}
/* Real YouTube embed */
.yt-embed {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

/* ─── CORE SERVICES ─── */
.core-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 60px;
}
.core-card {
  background: var(--char);
  border: 1px solid var(--border);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition:
    border-color 0.35s,
    transform 0.3s,
    background 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.core-card:hover {
  border-color: rgba(232, 25, 44, 0.4);
  transform: translateY(-5px);
  background: var(--panel);
}
.core-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--red), var(--red-d));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.core-card:hover::after {
  transform: scaleX(1);
}
.core-card-num {
  font-family: var(--fd);
  font-size: 72px;
  letter-spacing: 2px;
  color: rgba(232, 25, 44, 0.06);
  position: absolute;
  top: 10px;
  right: 18px;
  line-height: 1;
  transition: color 0.3s;
}
.core-card:hover .core-card-num {
  color: rgba(232, 25, 44, 0.13);
}
.core-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--red-glow);
  border: 1px solid rgba(232, 25, 44, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.core-name {
  font-family: var(--fu);
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}
.core-desc {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.78;
  flex: 1;
}
.core-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}
.core-tag {
  font-family: var(--fu);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--mid);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.core-card:hover .core-tag {
  border-color: rgba(232, 25, 44, 0.2);
  color: var(--light);
}
.core-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  font-family: var(--fu);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  transition: gap 0.2s;
}
.core-link:hover {
  gap: 12px;
}

/* ─── SERVICES GRID ─── */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 60px;
}
.srv-card {
  background: var(--char);
  border: 1px solid var(--border);
  padding: 34px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition:
    border-color 0.3s,
    background 0.3s;
  cursor: default;
}
.srv-card:hover {
  border-color: rgba(232, 25, 44, 0.3);
  background: var(--panel);
}
.srv-ico {
  width: 50px;
  height: 50px;
  background: var(--red-glow);
  border: 1px solid rgba(232, 25, 44, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.srv-name {
  font-family: var(--fu);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.srv-desc {
  font-size: 13px;
  color: var(--mid);
  margin-top: 4px;
  line-height: 1.55;
}

/* ─── WHY CHOOSE US ─── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 60px;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.wi {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.wi-check {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--red-glow);
  border: 1px solid rgba(232, 25, 44, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 18px;
  flex-shrink: 0;
}
.wi-t {
  font-family: var(--fu);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.wi-d {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.65;
}
.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.wstat {
  background: var(--char);
  border: 1px solid var(--border);
  padding: 32px 26px;
}
.wstat.big {
  grid-column: 1/-1;
  background: var(--red);
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 36px;
}
.wstat-n {
  font-family: var(--fd);
  font-size: 52px;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
}
.wstat-l {
  font-family: var(--fu);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 6px;
}
.wstat.big .wstat-l {
  color: rgba(255, 255, 255, 0.65);
}
.wstat-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 180px;
  line-height: 1.55;
}

/* ─── TESTIMONIALS ─── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.tc {
  background: var(--char);
  border: 1px solid var(--border);
  padding: 36px 32px;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.tc:hover {
  border-color: rgba(232, 25, 44, 0.3);
  transform: translateY(-4px);
}
.stars {
  color: var(--red);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.tq {
  font-size: 15px;
  color: var(--light);
  line-height: 1.85;
  margin-bottom: 24px;
  font-style: italic;
}
.ta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-d));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.an {
  font-family: var(--fu);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.ar {
  font-size: 13px;
  color: var(--mid);
  margin-top: 3px;
}

/* ─── FINAL CTA ─── */
.final-cta {
  padding: 110px 48px;
  background: var(--off);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 65% 55% at 50% 100%,
    rgba(232, 25, 44, 0.1),
    transparent
  );
}
.final-cta h2 {
  font-size: clamp(42px, 6vw, 80px);
  position: relative;
  z-index: 1;
}
.final-cta .lead {
  position: relative;
  z-index: 1;
  margin: 16px auto 40px;
}
.final-cta .btn-r {
  font-size: 13px;
  padding: 20px 48px;
  position: relative;
  z-index: 1;
}

/* ─── FINAL CTA ─── */
.final-cta {
  padding: 120px 56px;
  background: var(--off);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 65% 55% at 50% 100%,
    rgba(232, 25, 44, 0.1),
    transparent
  );
}
.final-cta h2 {
  font-size: clamp(46px, 7vw, 88px);
  position: relative;
  z-index: 1;
}
.final-cta .lead {
  position: relative;
  z-index: 1;
  margin: 18px auto 44px;
}
.final-cta .btn-r {
  font-size: 15px;
  padding: 22px 52px;
  position: relative;
  z-index: 1;
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 64px 56px 32px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 52px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
}
.footer-nav {
  display: flex;
  gap: 0;
  list-style: none;
}
.footer-nav li {
  border-right: 1px solid var(--border);
}
.footer-nav li:last-child {
  border: none;
}
.footer-nav a {
  font-family: var(--fu);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  padding: 0 32px;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--white);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--mid);
}
.footer-bottom b {
  color: var(--red);
}

/* ─── TICKER ─── */
.ticker {
  background: var(--red);
  padding: 13px 0;
  overflow: hidden;
}
.t-track {
  display: flex;
  animation: scroll 26s linear infinite;
  white-space: nowrap;
}
.t-item {
  font-family: var(--fd);
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0 36px;
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.t-item::after {
  content: "◆";
  color: rgba(255, 255, 255, 0.3);
  font-size: 8px;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media screen and (max-width: 767px) {
  .header-cta {
    display: none;
  }
  .nav-inner {
    padding: 22px 18px;
  }
  .nav-links-wrapper {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding: 70px 30px 40px;
    background: white;
    width: 100%;
    max-width: 85%;
    z-index: 9;
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-100%);
    transition:
      opacity 0.3s,
      transform 0.3s,
      backdrop-filter 0.3s;
  }
  .nav-links-wrapper.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .nav-links a {
    color: var(--char);
  }
}
