/*
Theme Name: IbadU Video Editor Portfolio
Theme URI: https://buildingbrandsmarketing.com/
Author: Building Brands Marketing
Author URI: https://buildingbrandsmarketing.com/
Description: One-page portfolio theme for video editor Ibad Ul Haq. Converted from a static HTML design: hero, about (animated counters + phone reels), featured work, services, testimonials story player, and a CTA with a Get Started modal. Videos are referenced from the Media Library; the modal form is powered by a form plugin (Contact Form 7 / WPForms).
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ibadu
*/

:root {
  --purple: #7932ec;
  --deep-purple: #23005c;
  --black: #000;
  --white: #fff;
  --muted-white: rgba(255, 255, 255, .68);
  --line: rgba(255, 255, 255, .22);
  --panel: rgba(255, 255, 255, .78);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--black);
  color: var(--white);
  font-family: Inter, "Inter Placeholder", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

.cs-page {
  min-height: 100vh;
  overflow: hidden;
  background: var(--black);
}

.cs-hero {
  position: relative;
  min-height: 100vh;
  padding: 28px clamp(20px, 5vw, 72px) 64px;
  overflow: visible;
  background:
    radial-gradient(58% 50% at 50% 100%, var(--purple) 0%, var(--black) 100%);
}

.cs-grid,
.cs-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cs-grid {
  z-index: 1;
  opacity: .1;
  background-image:
    linear-gradient(to right, #fff 0, #fff 1px, transparent 1px, transparent 100%),
    linear-gradient(to bottom, #fff 0, #fff 1px, transparent 1px, transparent 100%);
  background-position: 0 0;
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(#0000 0%, #000 20%, #000 89.9173%, #0000 100%);
  mask-image: linear-gradient(#0000 0%, #000 20%, #000 89.9173%, #0000 100%);
}

.cs-noise {
  z-index: 2;
  opacity: .2;
  background-image: url("https://framerusercontent.com/images/6mcf62RlDfRfU61Yg5vb2pefpi4.png?width=256&height=256");
  background-position: left top;
  background-repeat: repeat;
  background-size: 143.5px auto;
  mix-blend-mode: screen;
}

.cs-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b7d27d;
  box-shadow: 0 0 9px rgba(183, 210, 125, .85);
  opacity: .75;
}

.cs-dot-a {
  left: 8.5%;
  top: 9%;
}

.cs-dot-b {
  right: 7%;
  top: 31%;
  width: 5px;
  height: 5px;
  opacity: .35;
}

.cs-topbar {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  max-width: 1200px;
  min-height: 62px;
  margin: 0 auto;
  padding: 9px 31px;
  border: 1px solid rgba(255, 255, 255, .66);
  border-radius: 10px;
  background: linear-gradient(272deg, rgba(255, 255, 255, .94) 22%, rgba(255, 255, 255, .66) 78%);
  box-shadow: 0 0 8px 2px rgba(255, 255, 255, .16);
  color: #050505;
  backdrop-filter: blur(6px);
}

.cs-topbar-logo {
  width: auto;
  height: 34px;
  flex: 0 0 auto;
  object-fit: contain;
}

.cs-mobile-topbar {
  display: none;
}

.cs-mobile-logo {
  width: auto;
  height: 32px;
  flex: 0 0 auto;
  object-fit: contain;
}

.cs-topbar p {
  margin: 0;
  flex: 1;
  text-align: center;
  color: #000;
  font-family: Inter, "Inter Placeholder", sans-serif;
  font-size: clamp(22px, 1.45vw, 27px);
  font-weight: 400;
  font-style: normal;
  line-height: 32px;
}

.cs-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: Outfit, "Outfit Placeholder", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 21px;
  white-space: nowrap;
  overflow: hidden;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease);
}

.cs-button::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -2;
  border-radius: inherit;
  background: conic-gradient(from 95deg at 50% 50%, var(--deep-purple), var(--purple) 53%, rgba(255, 255, 255, .85));
  filter: blur(10px);
  opacity: 1;
  animation: cs-button-border-spin 4.5s linear infinite;
  will-change: transform;
}

.cs-button::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: inherit;
}

.cs-button:hover {
  transform: translateY(-2px);
}

.cs-button-light {
  color: #050505;
  box-shadow: 0 0 8px 2px rgba(33, 33, 33, .16);
}

.cs-button-light::after {
  background: var(--white);
}

.cs-button-dark {
  color: var(--white);
  box-shadow: 0 0 8px 2px rgba(255, 255, 255, .16);
}

.cs-button-dark::after {
  background: var(--black);
}

@keyframes cs-button-border-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes cs-fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cs-content {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(320px, 380px);
  align-items: end;
  gap: clamp(60px, 16vw, 260px);
  max-width: 1135px;
  margin: 60px auto 0;
}

.cs-left h1 {
  max-width: 560px;
  margin: 0;
  font-family: Outfit, "Outfit Placeholder", sans-serif;
  font-size: clamp(54px, 5.45vw, 65px);
  font-weight: 500;
  font-style: normal;
  line-height: 58px;
  letter-spacing: 0;
  opacity: 0;
  animation: cs-fade-up .9s var(--ease) .12s forwards;
}

.cs-left h1 span {
  color: transparent;
  background: linear-gradient(282deg, var(--muted-white) 45%, var(--white) 77%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 2px 22px rgba(255, 255, 255, .16);
}

.cs-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.cs-avatars {
  display: flex;
  align-items: center;
}

.cs-avatars img {
  width: 36px;
  height: 36px;
  margin-left: -11px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 50%;
  object-fit: cover;
}

.cs-avatars img:first-child {
  margin-left: 0;
}

.cs-proof-line {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, .46);
}

.cs-stars {
  color: #ffa200;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1;
}

.cs-proof p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .7);
  font-family: Outfit, "Outfit Placeholder", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 23px;
}

.cs-proof p span {
  color: rgba(255, 255, 255, .7);
  font-weight: 400;
}

.cs-right {
  padding-bottom: 3px;
}

.cs-right p {
  margin: 0 0 18px;
  color: #fff;
  font-family: Outfit, "Outfit Placeholder", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 21px;
  letter-spacing: 0;
  opacity: 0;
  animation: cs-fade-up .9s var(--ease) .28s forwards;
}

.cs-reels {
  position: relative;
  z-index: 4;
  width: calc(100% + 144px);
  margin: 60px -72px 0;
  height: min(455px, 42vw);
  min-height: 360px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.cs-track {
  position: relative;
  height: 100%;
}

.cs-track-layer {
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: cs-scroll 44s linear infinite;
  will-change: transform;
}

.cs-reels:hover .cs-track-layer {
  animation-play-state: paused;
}

.cs-logo-marquee {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  max-width: 60%;
  height: 42px;
  margin: 26px auto 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.cs-logo-track {
  position: relative;
  display: flex;
  justify-content: flex-start;
  width: min(704px, 100%);
  height: 100%;
  overflow: visible;
}

.cs-logo-track ul {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 24px;
  width: max-content;
  max-width: none;
  height: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
  opacity: 1;
  transform: translateX(-50%);
  animation: cs-logo-scroll 24s linear infinite;
  will-change: transform;
}

.cs-logo-track li {
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
  width: fit-content;
  height: fit-content;
  transform: none;
}

.cs-logo-marquee:hover .cs-logo-track ul {
  animation-play-state: paused;
}

.cs-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 118px;
  height: 42px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, .34));
  opacity: .9;
}

.cs-logo img {
  display: block;
  width: auto;
  max-width: 138px;
  height: 100%;
  object-fit: contain;
}

.cs-about {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 100vh;
  padding: 64px 24px;
  overflow: visible;
  background:
    radial-gradient(58% 50% at 50% 0%, var(--purple) 0%, var(--black) 100%);
}

.cs-about-grid,
.cs-about-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cs-about-grid {
  z-index: 1;
  opacity: .1;
  background-image:
    linear-gradient(to right, #fff 0, #fff 1px, transparent 1px, transparent 100%),
    linear-gradient(to bottom, #fff 0, #fff 1px, transparent 1px, transparent 100%);
  background-position: 0 0;
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(#0000 0%, #000 20%, #000 89.9173%, #0000 100%);
  mask-image: linear-gradient(#0000 0%, #000 20%, #000 89.9173%, #0000 100%);
}

.cs-about-noise {
  z-index: 2;
  opacity: .2;
  background-image: url("https://framerusercontent.com/images/6mcf62RlDfRfU61Yg5vb2pefpi4.png?width=256&height=256");
  background-position: left top;
  background-repeat: repeat;
  background-size: 143.5px auto;
  mix-blend-mode: screen;
}

.cs-about-content {
  position: relative;
  z-index: 4;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.cs-about-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.cs-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 3px 14px;
  border: 1px solid rgba(255, 255, 255, .66);
  border-radius: 16px;
  background: linear-gradient(110deg, #fff 0%, rgba(255, 255, 255, .66) 89%);
  box-shadow: 0 0 2px 2px rgba(255, 255, 255, .16);
  color: #000;
  font-family: Outfit, "Outfit Placeholder", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
}

.cs-about h2 {
  margin: 20px 0 18px;
  color: transparent;
  background: linear-gradient(
    110deg,
    #ffffff 0%,
    #f2ecff 18%,
    #ffffff 36%,
    #ff9ad8 56%,
    #ffc34d 76%,
    var(--white) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Outfit, "Outfit Placeholder", sans-serif;
  font-size: clamp(44px, 4.3vw, 65px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: 0;
  text-shadow: 0 2px 22px rgba(0, 0, 0, .42);
  opacity: 0;
  animation: cs-fade-up .9s var(--ease) .18s forwards;
}

.cs-about h2 span {
  display: inline-block;
  transform: translateY(3px);
}

.cs-about-top p,
.cs-stat p,
.cs-benefit p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-family: Outfit, "Outfit Placeholder", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
}

.cs-about-top p {
  opacity: 0;
  animation: cs-fade-up .9s var(--ease) .32s forwards;
}

.cs-about-bottom {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(270px, 1fr);
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
  margin-top: 66px;
}

.cs-stats,
.cs-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cs-stat strong {
  display: block;
  color: #fff;
  font-family: Outfit, "Outfit Placeholder", sans-serif;
  font-size: clamp(42px, 4vw, 50px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.02em;
}

.cs-count {
  display: inline-block;
  min-width: 2.6ch;
}

.cs-stat strong span {
  margin-left: 6px;
}

.cs-stat strong span:first-child,
.cs-stat strong .cs-count {
  margin-right: 4px;
  margin-left: 0;
}

.cs-stat p {
  margin-top: 12px;
  text-align: left;
}

.cs-separator {
  width: 100%;
  height: 1px;
  border-radius: 13px;
  background: radial-gradient(50% 50% at 50% 50%, #fff 0%, rgba(255, 255, 255, .66) 100%);
  mask-image: linear-gradient(90deg, #000 0%, transparent 100%);
}

.cs-about-phone {
  display: flex;
  justify-content: center;
}

.cs-phone-frame {
  position: relative;
  width: 282px;
  height: 500px;
  overflow: hidden;
  border: 6px solid #000;
  border-radius: 32px;
  background: #000;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .18), 0 24px 70px rgba(0, 0, 0, .55);
}

.cs-phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 3;
  width: 72px;
  height: 12px;
  border-radius: 19px;
  background: linear-gradient(270deg, #000 -27%, #212121 50%, #000 127%);
  box-shadow: inset 0 0 2px 1px rgba(255, 255, 255, .12);
  transform: translateX(-50%);
}

.cs-phone-reels {
  height: 100%;
  overflow: hidden;
  border-radius: 26px;
}

.cs-phone-reel-track {
  height: 400%;
  transform: translate3d(0, 0, 0);
  animation: cs-phone-scroll 24s cubic-bezier(.65, 0, .35, 1) infinite;
}

.cs-phone-reel-track-single {
  height: 100%;
  animation: none;
}

.cs-phone-reels video {
  display: block;
  width: 100%;
  height: 25%;
  object-fit: cover;
}

.cs-phone-reel-track-single video {
  height: 100%;
}

@keyframes cs-phone-scroll {
  0%,
  20.8% {
    transform: translate3d(0, 0, 0);
  }

  25%,
  45.8% {
    transform: translate3d(0, -25%, 0);
  }

  50%,
  70.8% {
    transform: translate3d(0, -50%, 0);
  }

  75%,
  100% {
    transform: translate3d(0, -75%, 0);
  }
}

.cs-benefit {
  max-width: 330px;
  opacity: 0;
  animation: cs-fade-up .9s var(--ease) .2s forwards;
}

.cs-benefit:nth-of-type(2) {
  animation-delay: .34s;
}

.cs-benefit:nth-of-type(3) {
  animation-delay: .48s;
}

.cs-benefit h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  color: #fff;
  font-family: Outfit, "Outfit Placeholder", sans-serif;
  font-size: clamp(28px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1;
}

.cs-benefit h3 span {
  width: 14px;
  height: 18px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, .66) 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.cs-work {
  position: relative;
  width: 100%;
  min-height: auto;
  padding: 48px 24px 56px;
  overflow: visible;
  background:
    radial-gradient(58% 50% at 50% 100%, var(--purple) 0%, var(--black) 100%);
}

.cs-work-grid-bg,
.cs-work-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cs-work-grid-bg {
  z-index: 1;
  opacity: .1;
  background-image:
    linear-gradient(to right, #fff 0, #fff 1px, transparent 1px, transparent 100%),
    linear-gradient(to bottom, #fff 0, #fff 1px, transparent 1px, transparent 100%);
  background-position: 0 0;
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(#0000 0%, #000 20%, #000 89.9173%, #0000 100%);
  mask-image: linear-gradient(#0000 0%, #000 20%, #000 89.9173%, #0000 100%);
}

.cs-work-noise {
  z-index: 2;
  opacity: .2;
  background-image: url("https://framerusercontent.com/images/6mcf62RlDfRfU61Yg5vb2pefpi4.png?width=256&height=256");
  background-position: left top;
  background-repeat: repeat;
  background-size: 143.5px auto;
  mix-blend-mode: screen;
}

.cs-work-content {
  position: relative;
  z-index: 4;
  width: min(1113px, 100%);
  margin: 0 auto;
  text-align: center;
}

.cs-work h2 {
  margin: 0 0 20px;
  color: transparent;
  background: linear-gradient(
    110deg,
    #5cc8ff 0%,
    #7b61ff 14%,
    var(--purple) 28%,
    #d65cff 42%,
    #ff6ec7 56%,
    #ffa200 70%,
    #ffe27a 84%,
    var(--white) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Outfit, "Outfit Placeholder", sans-serif;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: 0;
}

.cs-work-categories {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
  width: 100%;
  margin-top: 26px;
}

.cs-work-category {
  display: grid;
  gap: 16px;
  text-align: left;
}

.cs-work-category h3 {
  margin: 0;
  color: var(--white);
  background: none;
  font-family: Outfit, "Outfit Placeholder", sans-serif;
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: none;
}

.cs-work-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.cs-work-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 16px;
  background: var(--black);
  box-shadow: 1px 1px 14px 4px rgba(255, 255, 255, .13);
}

.cs-work-category-wide .cs-work-card {
  aspect-ratio: 16 / 9;
}

.cs-work-category-vertical .cs-work-card {
  width: min(100%, 420px);
  aspect-ratio: 9 / 16;
  justify-self: center;
}

.cs-work-card video {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: transparent;
  object-fit: cover;
  object-position: 50% 50%;
}

.cs-work-sound {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: .5px solid rgba(255, 255, 255, .66);
  border-radius: 50%;
  background: rgba(0, 0, 0, .64);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: transform .24s var(--ease), background .24s var(--ease);
}

.cs-work-sound:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, .78);
}

.cs-work-sound svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cs-work-sound .cs-sound-on,
.cs-work-card.is-sound-on .cs-sound-muted {
  display: none;
}

.cs-work-card.is-sound-on .cs-sound-on {
  display: block;
}

.cs-services {
  position: relative;
  width: 100%;
  padding: 64px 24px 78px;
  overflow: visible;
  background:
    radial-gradient(58% 50% at 50% 0%, var(--purple) 0%, var(--black) 100%);
}

.cs-services-grid-bg,
.cs-services-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cs-services-grid-bg {
  z-index: 1;
  opacity: .1;
  background-image:
    linear-gradient(to right, #fff 0, #fff 1px, transparent 1px, transparent 100%),
    linear-gradient(to bottom, #fff 0, #fff 1px, transparent 1px, transparent 100%);
  background-position: 0 0;
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(#0000 0%, #000 20%, #000 89.9173%, #0000 100%);
  mask-image: linear-gradient(#0000 0%, #000 20%, #000 89.9173%, #0000 100%);
}

.cs-services-noise {
  z-index: 2;
  opacity: .2;
  background-image: url("https://framerusercontent.com/images/6mcf62RlDfRfU61Yg5vb2pefpi4.png?width=256&height=256");
  background-position: left top;
  background-repeat: repeat;
  background-size: 143.5px auto;
  mix-blend-mode: screen;
}

.cs-services-content {
  position: relative;
  z-index: 4;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.cs-services-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.cs-services h2 {
  margin: 0;
  color: transparent;
  background: linear-gradient(
    110deg,
    #5cc8ff 0%,
    #7b61ff 14%,
    var(--purple) 28%,
    #d65cff 42%,
    #ff6ec7 56%,
    #ffa200 70%,
    #ffe27a 84%,
    var(--white) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Outfit, "Outfit Placeholder", sans-serif;
  font-size: clamp(44px, 4.4vw, 65px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: 0;
}

.cs-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 70px;
}

.cs-service-card {
  position: relative;
  min-height: 286px;
  padding: 38px 28px 30px;
  border: 1px solid rgba(125, 125, 125, .72);
  border-radius: 16px;
  background: #000;
  box-shadow: 1px 1px 14px 4px rgba(255, 255, 255, .13);
  text-align: left;
  opacity: 0;
  animation: cs-fade-up .85s var(--ease) forwards;
}

.cs-service-card:nth-child(1) {
  animation-delay: .08s;
}

.cs-service-card:nth-child(2) {
  animation-delay: .18s;
}

.cs-service-card:nth-child(3) {
  animation-delay: .28s;
}

.cs-service-card:nth-child(4) {
  animation-delay: .38s;
}

.cs-service-card:nth-child(5) {
  animation-delay: .48s;
}

.cs-service-card:nth-child(6) {
  animation-delay: .58s;
}

.cs-service-card h3 {
  margin: 0;
  color: #fff;
  font-family: Outfit, "Outfit Placeholder", sans-serif;
  font-size: clamp(27px, 2.35vw, 34px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.cs-service-line {
  width: 100%;
  height: 1px;
  margin: 25px 0 20px;
  border-radius: 13px;
  background: radial-gradient(50% 50% at 50% 50%, #fff 0%, rgba(255, 255, 255, .66) 100%);
  mask-image: linear-gradient(90deg, #000 0%, transparent 100%);
}

.cs-service-card p {
  max-width: 300px;
  margin: 0 0 21px;
  color: rgba(255, 255, 255, .7);
  font-family: Outfit, "Outfit Placeholder", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
}

.cs-service-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, .85);
  font-family: Outfit, "Outfit Placeholder", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  list-style: none;
}

.cs-service-card li {
  position: relative;
  padding-left: 22px;
}

.cs-service-card li::before {
  content: "";
  position: absolute;
  top: .42em;
  left: 0;
  width: 8px;
  height: 10px;
  background: linear-gradient(180deg, var(--deep-purple), var(--purple));
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.cs-service-icon {
  position: absolute;
  top: -15px;
  right: -14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(60deg, #fff 14%, rgba(255, 255, 255, .66) 87%);
  box-shadow: 0 0 12px 2px rgba(255, 255, 255, .24);
  color: var(--purple);
}

.cs-service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--purple);
  fill: currentColor;
}

.cs-service-icon svg * {
  vector-effect: non-scaling-stroke;
}

.cs-testimonials {
  position: relative;
  width: 100%;
  padding: 64px 24px 0;
  /* overflow: hidden; */
  background:
    radial-gradient(58% 50% at 50% 100%, var(--purple) 0%, var(--black) 100%);
}

.cs-testimonials-grid-bg,
.cs-testimonials-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cs-testimonials-grid-bg {
  z-index: 1;
  opacity: .1;
  background-image:
    linear-gradient(to right, #fff 0, #fff 1px, transparent 1px, transparent 100%),
    linear-gradient(to bottom, #fff 0, #fff 1px, transparent 1px, transparent 100%);
  background-position: 0 0;
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(#0000 0%, #000 20%, #000 89.9173%, #0000 100%);
  mask-image: linear-gradient(#0000 0%, #000 20%, #000 89.9173%, #0000 100%);
}

.cs-testimonials-noise {
  z-index: 2;
  opacity: .2;
  background-image: url("https://framerusercontent.com/images/6mcf62RlDfRfU61Yg5vb2pefpi4.png?width=256&height=256");
  background-position: left top;
  background-repeat: repeat;
  background-size: 143.5px auto;
  mix-blend-mode: screen;
}

.cs-testimonials-content {
  position: relative;
  z-index: 4;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.cs-testimonials-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.cs-testimonials h2 {
  margin: 0;
  color: transparent;
  background: linear-gradient(
    110deg,
    #5cc8ff 0%,
    #7b61ff 14%,
    var(--purple) 28%,
    #d65cff 42%,
    #ff6ec7 56%,
    #ffa200 70%,
    #ffe27a 84%,
    var(--white) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Outfit, "Outfit Placeholder", sans-serif;
  font-size: clamp(44px, 4.4vw, 65px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: 0;
  text-shadow: 1px 1px 4px rgba(255, 255, 255, .25);
}

.cs-testimonial-stage {
  display: grid;
  grid-template-columns: minmax(270px, 1fr) auto minmax(270px, 1fr);
  align-items: center;
  gap: clamp(44px, 5vw, 72px);
  height: 600px;
  margin-top: 64px;
  /* overflow: hidden; */
}

.cs-testimonial-column {
  position: relative;
  height: 505px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 11%, #000 88%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 11%, #000 88%, transparent 100%);
}

.cs-testimonial-left {
  transform: translateY(-30px);
}

.cs-testimonial-right {
  transform: translateY(30px);
}

.cs-review-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  will-change: transform;
}

.cs-testimonial-left .cs-review-track {
  animation: cs-review-scroll-up 15s linear infinite;
}

.cs-testimonial-right .cs-review-track {
  animation: cs-review-scroll-down 15s linear infinite;
}

.cs-testimonial-column:hover .cs-review-track {
  animation-play-state: paused;
}

@keyframes cs-review-scroll-up {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(calc(-50% - 8px));
  }
}

@keyframes cs-review-scroll-down {
  from {
    transform: translateY(calc(-50% - 8px));
  }

  to {
    transform: translateY(0);
  }
}

.cs-review-card {
  position: relative;
  min-height: 166px;
  padding: 22px 24px;
  border: 1px solid rgba(125, 125, 125, .72);
  border-radius: 12px;
  background: #000;
  box-shadow: 0 14px 38px rgba(0, 0, 0, .32);
  text-align: left;
}

.cs-review-card.is-muted {
  opacity: .66;
}

.cs-review-stars {
  color: #ffa200;
  font-size: 17px;
  letter-spacing: 3px;
  line-height: 1;
}

.cs-review-card p {
  margin: 18px 0 0;
  color: #fff;
  font-family: Outfit, "Outfit Placeholder", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
}

.cs-review-line {
  width: 100%;
  height: 1px;
  margin: 20px 0 14px;
  border-radius: 13px;
  background: radial-gradient(50% 50% at 50% 50%, #fff 0%, rgba(255, 255, 255, .66) 100%);
  opacity: .28;
  mask-image: linear-gradient(90deg, #000 0%, transparent 100%);
}

.cs-reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cs-reviewer img {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, .66);
  border-radius: 50%;
  object-fit: cover;
}

.cs-reviewer strong,
.cs-reviewer span {
  display: block;
  font-family: Outfit, "Outfit Placeholder", sans-serif;
  line-height: 18px;
}

.cs-reviewer strong {
  color: rgba(255, 255, 255, .85);
  font-size: 16px;
  font-weight: 500;
}

.cs-reviewer span {
  color: rgba(255, 255, 255, .66);
  font-size: 14px;
  font-weight: 500;
}

.cs-testimonial-video {
  position: relative;
  width: 306px;
  height: 566px;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  box-shadow: 0 24px 76px rgba(0, 0, 0, .56);
}

.cs-testimonial-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-testimonial-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, transparent 42%, rgba(0, 0, 0, .5) 100%);
  pointer-events: none;
}

.cs-story-controls {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cs-video-bars {
  flex: 1;
  display: flex;
  gap: 4px;
}

.cs-video-bars span {
  flex: 1;
  position: relative;
  overflow: hidden;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
}

.cs-video-bars span::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: #fff;
  border-radius: 2px;
  transition: width .3s;
}

.cs-video-bars span.is-complete::after {
  width: 100%;
}

.cs-video-bars span.is-active::after {
  animation: cs-story-progress 7s linear forwards;
}

@keyframes cs-story-progress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.cs-video-pause,
.cs-video-mute,
.cs-video-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  padding: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .3);
  color: #fff;
  opacity: .7;
  cursor: pointer;
  transition: opacity .2s ease;
  backdrop-filter: blur(4px);
}

.cs-video-pause:hover,
.cs-video-mute:hover,
.cs-video-arrow:hover {
  opacity: 1;
}

.cs-video-pause svg,
.cs-video-mute svg {
  display: block;
  width: 16px;
  height: 16px;
}

.cs-play-icon,
.cs-video-mute .cs-volume-on {
  display: none;
}

.cs-video-pause.is-paused .cs-pause-icon {
  display: none;
}

.cs-video-pause.is-paused .cs-play-icon {
  display: block;
}

.cs-video-mute:not(.is-muted) .cs-volume-muted {
  display: none;
}

.cs-video-mute:not(.is-muted) .cs-volume-on {
  display: block;
}

.cs-video-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  padding: 0;
  font-family: Outfit, "Outfit Placeholder", sans-serif;
  font-size: 22px;
  font-weight: 500;
}

.cs-video-arrow-left {
  left: 18px;
}

.cs-video-arrow-right {
  right: 18px;
}

.cs-video-hearts {
  position: absolute;
  right: 32px;
  bottom: 30px;
  z-index: 2;
  width: 64px;
  height: 190px;
  overflow: visible;
  pointer-events: none;
}

.cs-video-hearts span {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 13px;
  height: 13px;
  background: #ff2d55;
  opacity: 0;
  transform: translate3d(0, 0, 0) rotate(45deg) scale(.65);
  animation: cs-live-heart 3.2s ease-out forwards;
}

.cs-video-hearts span::before,
.cs-video-hearts span::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: inherit;
}

.cs-video-hearts span::before {
  left: -6px;
}

.cs-video-hearts span::after {
  top: -6px;
}

@keyframes cs-live-heart {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(45deg) scale(.62);
  }

  12% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--heart-x, -18px), -170px, 0) rotate(45deg) scale(var(--heart-scale, 1.1));
  }
}

.cs-cta {
  position: relative;
  width: 100%;
  min-height: 620px;
  padding: 72px 24px;
  overflow: hidden;
  background: radial-gradient(58% 50% at 50% 0%, var(--purple) 0%, var(--black) 100%);
}

.cs-cta-grid-bg,
.cs-cta-noise,
.cs-cta-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cs-cta-grid-bg {
  z-index: 1;
  opacity: .1;
  background-image:
    linear-gradient(to right, #fff 0, #fff 1px, transparent 1px, transparent 100%),
    linear-gradient(to bottom, #fff 0, #fff 1px, transparent 1px, transparent 100%);
  background-position: 0 0;
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(#0000 0%, #000 20%, #000 89.9173%, #0000 100%);
  mask-image: linear-gradient(#0000 0%, #000 20%, #000 89.9173%, #0000 100%);
}

.cs-cta-noise {
  z-index: 2;
  opacity: .2;
  background-image: url("https://framerusercontent.com/images/6mcf62RlDfRfU61Yg5vb2pefpi4.png?width=256&height=256");
  background-position: left top;
  background-repeat: repeat;
  background-size: 143.5px auto;
  mix-blend-mode: screen;
}

.cs-cta-glow {
  z-index: 3;
  background:
    radial-gradient(42% 52% at 34% 49%, rgba(121, 50, 236, .42) 0%, transparent 68%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .55) 100%);
}

.cs-cta-content {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 424px);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  width: min(1120px, 100%);
  min-height: 500px;
  margin: 0 auto;
}

.cs-cta-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 540px;
}

.cs-cta-copy h2 {
  max-width: 520px;
  margin: 24px 0 0;
  font-family: Outfit, "Outfit Placeholder", sans-serif;
  font-size: 50px;
  font-weight: 500;
  font-style: normal;
  line-height: 55px;
  letter-spacing: 0;
  color: transparent;
  background: linear-gradient(
    110deg,
    #5cc8ff 0%,
    #7b61ff 14%,
    var(--purple) 28%,
    #d65cff 42%,
    #ff6ec7 56%,
    #ffa200 70%,
    #ffe27a 84%,
    var(--white) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 1px 1px 4px rgba(255, 255, 255, .16);
}

.cs-cta-copy p {
  max-width: 430px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .7);
  font-family: Outfit, "Outfit Placeholder", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 21px;
}

.cs-cta-bottom {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 42px;
}

.cs-urgency {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .78);
  font-family: Outfit, "Outfit Placeholder", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.cs-urgency-dot {
  position: relative;
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ffa200;
}

.cs-urgency-dot::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  background: rgba(255, 162, 0, .32);
  animation: cs-pulse-dot 1.7s ease-in-out infinite;
}

@keyframes cs-pulse-dot {
  0%,
  100% {
    opacity: .28;
    transform: scale(.72);
  }

  50% {
    opacity: .76;
    transform: scale(1);
  }
}

.cs-cta-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 500px;
}

.cs-cta-phone {
  position: relative;
  z-index: 4;
  width: min(276px, 76vw);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 6px solid #000;
  border-radius: 32px;
  background: #000;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, .58),
    0 0 0 1px rgba(255, 255, 255, .12) inset;
}

.cs-cta-phone video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cs-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.cs-modal.is-open {
  display: flex;
}

.cs-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(10px);
}

.cs-modal-panel {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: calc(100svh - 44px);
  overflow-y: auto;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 18px;
  background:
    radial-gradient(80% 70% at 50% 0%, rgba(121, 50, 236, .42) 0%, rgba(0, 0, 0, 0) 58%),
    var(--black);
  box-shadow: 0 24px 76px rgba(0, 0, 0, .56), 0 0 20px rgba(255, 255, 255, .1);
}

.cs-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.cs-modal-panel h2 {
  margin: 22px 44px 12px 0;
  color: var(--white);
  font-family: Outfit, "Outfit Placeholder", sans-serif;
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: 0;
}

.cs-modal-panel > p {
  margin: 0 0 24px;
  color: var(--muted-white);
  font-family: Outfit, "Outfit Placeholder", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
}

.cs-modal-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cs-modal-form label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-family: Outfit, "Outfit Placeholder", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.cs-modal-form input,
.cs-modal-form select,
.cs-modal-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  font: inherit;
  font-weight: 400;
  outline: none;
}

.cs-modal-form input,
.cs-modal-form select {
  min-height: 46px;
  padding: 0 14px;
}

.cs-modal-form textarea {
  min-height: 118px;
  padding: 13px 14px;
  resize: vertical;
}

.cs-modal-form input:focus,
.cs-modal-form select:focus,
.cs-modal-form textarea:focus {
  border-color: rgba(255, 255, 255, .66);
  box-shadow: 0 0 0 3px rgba(121, 50, 236, .28);
}

.cs-modal-form option {
  background: var(--black);
  color: var(--white);
}

.cs-modal-full,
.cs-modal-submit {
  grid-column: 1 / -1;
}

.cs-modal-submit {
  justify-self: start;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.cs-modal-success {
  display: none;
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted-white);
  font-family: Outfit, "Outfit Placeholder", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
}

.cs-modal-form.is-submitted .cs-modal-success {
  display: block;
}

body.cs-modal-open {
  overflow: hidden;
}

.cs-cta-notch {
  position: absolute;
  top: 11px;
  left: 50%;
  z-index: 2;
  width: 74px;
  height: 20px;
  border-radius: 19px;
  background: linear-gradient(270deg, #000 -27%, #212121 50%, #000 127%);
  box-shadow: rgba(255, 255, 255, .12) 0 0 2px 1px inset;
  transform: translateX(-50%);
}

.cs-capsule-marquee {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translate(-50%, -50%);
  z-index: 9;
  width: 178px;
  height: 230px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 88%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 88%, transparent 100%);
}

.cs-capsule-track {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 24px;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  will-change: transform;
  animation: cs-capsule-scroll 13s linear infinite;
}

.cs-capsule-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  min-height: 28px;
  padding: 4px 9px 4px 6px;
  border: 1px solid rgba(255, 255, 255, .66);
  border-radius: 5px;
  background: linear-gradient(110deg, #fff 0%, rgba(255, 255, 255, .66) 89%);
  color: #000;
  font-family: Outfit, "Outfit Placeholder", sans-serif;
  font-size: 13px;
  font-weight: 500;
  font-style: normal;
  line-height: 18px;
  white-space: nowrap;
  box-shadow: rgba(255, 255, 255, .16) 0 0 2px 2px;
  backdrop-filter: blur(10px);
}

.cs-capsule-track span:nth-child(4n + 1),
.cs-capsule-track span:nth-child(4n + 2),
.cs-capsule-track span:nth-child(4n + 3) {
  width: 100%;
}

.cs-capsule-track i {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 999px;
  background: linear-gradient(180deg, #23005c 0%, var(--purple) 100%);
  color: #fff;
  font-style: normal;
  font-size: 10px;
  line-height: 1;
}

@keyframes cs-capsule-scroll {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(calc(-50% - 12px));
  }
}

.cs-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(250px, 14vw, 288px);
  aspect-ratio: 9 / 15;
  overflow: hidden;
  border: 1px solid #7d7d7d;
  border-radius: 32px;
  background: #080808;
  box-shadow: 0 20px 54px rgba(0, 0, 0, .42);
}

.cs-card video,
.cs-card img {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  object-fit: cover;
}

.cs-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, .72) 100%);
  pointer-events: none;
}

.cs-label {
  position: absolute;
  top: 19px;
  left: 18px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--deep-purple), var(--purple));
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

@keyframes cs-scroll {
  to {
    transform: translateX(calc(-50% - 12px));
  }
}

@keyframes cs-logo-scroll {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(calc(-25% - 12px));
  }
}

@media (max-width: 980px) {
  .cs-hero {
    padding-inline: 22px;
  }

  .cs-topbar {
    display: none;
  }

  .cs-mobile-topbar {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: min(520px, calc(100% - 44px));
    min-height: 58px;
    margin: 0 auto;
    padding: 8px 10px 8px 16px;
    border: 1px solid rgba(255, 255, 255, .66);
    border-radius: 12px;
    background: linear-gradient(272deg, rgba(255, 255, 255, .94) 22%, rgba(255, 255, 255, .66) 78%);
    box-shadow: 0 0 8px 2px rgba(255, 255, 255, .16);
    color: #050505;
    backdrop-filter: blur(6px);
  }

  .cs-mobile-topbar .cs-button {
    width: auto;
    min-height: 38px;
    padding: 0 18px;
    font-size: 14px;
  }

  .cs-content {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 54px;
  }

  .cs-right {
    max-width: 520px;
  }

  .cs-reels {
    width: calc(100% + 44px);
    margin: 48px -22px 0;
  }

  .cs-logo-track {
    width: min(620px, 100%);
  }

  .cs-work-content {
    width: min(720px, 100%);
  }

  .cs-work-categories {
    gap: 24px;
    margin-top: 24px;
  }

  .cs-work-video-grid {
    gap: 14px;
  }

  .cs-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cs-testimonial-stage {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 28px;
    height: auto;
    margin-top: 44px;
  }

  .cs-testimonial-video {
    order: 2;
    margin: 0 auto;
  }

  .cs-testimonial-left,
  .cs-testimonial-right {
    transform: none;
  }

  .cs-testimonial-column {
    display: block;
    width: 100%;
    height: auto;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-mask-image: none;
    mask-image: none;
    padding-inline: 4px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  .cs-testimonial-column::-webkit-scrollbar {
    display: none;
  }

  .cs-testimonial-left {
    order: 1;
  }

  .cs-testimonial-right {
    order: 3;
  }

  .cs-review-track {
    display: flex;
    flex-direction: row;
    gap: 16px;
    min-width: max-content;
    animation: none;
  }

  .cs-testimonial-left .cs-review-track {
    animation: cs-review-scroll-left-mobile 18s linear infinite;
  }

  .cs-testimonial-right .cs-review-track {
    animation: cs-review-scroll-right-mobile 18s linear infinite;
  }

  @keyframes cs-review-scroll-left-mobile {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(calc(-50% - 8px));
    }
  }

  @keyframes cs-review-scroll-right-mobile {
    from {
      transform: translateX(calc(-50% - 8px));
    }

    to {
      transform: translateX(0);
    }
  }

  .cs-review-card {
    width: min(337px, calc(100vw - 42px));
    min-height: 202px;
    flex: 0 0 min(337px, calc(100vw - 42px));
    scroll-snap-align: center;
  }

  .cs-review-card.is-muted {
    opacity: 1;
  }

  .cs-cta {
    padding: 72px 22px;
  }

  .cs-cta-content {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: auto;
  }

  .cs-cta-copy {
    align-items: center;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }

  .cs-cta-copy p {
    margin-inline: auto;
  }

  .cs-capsule-marquee {
    left: 30%;
  }

}

@media (max-width: 620px) {
  .cs-hero {
    min-height: 100svh;
    padding-top: 18px;
  }

  .cs-left h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .cs-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }

  .cs-proof-line {
    display: none;
  }

  .cs-right p {
    font-family: Outfit, "Outfit Placeholder", sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 21px;
    color: rgb(255, 255, 255);
  }

  .cs-card {
    width: 235px;
    border-radius: 28px;
  }

  .cs-logo {
    height: 34px;
  }

  .cs-logo {
    min-width: 104px;
    height: 36px;
    padding: 5px 12px;
  }

  .cs-logo img {
    max-width: 122px;
  }

  .cs-work {
    padding: 42px 18px 48px;
  }

  .cs-work-categories {
    gap: 24px;
    margin-top: 24px;
  }

  .cs-work-video-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cs-work-category-wide .cs-work-card,
  .cs-work-category-vertical .cs-work-card {
    width: 100%;
  }

  .cs-services {
    padding: 52px 18px 64px;
  }

  .cs-services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 48px;
  }

  .cs-service-card {
    min-height: auto;
    padding: 32px 24px 28px;
  }

  .cs-service-icon {
    right: -8px;
  }

  .cs-testimonials {
    padding: 52px 14px 0;
    overflow: hidden;
  }

  .cs-testimonials-top {
    gap: 18px;
  }

  .cs-testimonials h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .cs-testimonial-stage {
    gap: 28px;
    margin-top: 44px;
  }

  .cs-testimonial-video {
    width: min(306px, calc(100vw - 54px));
    height: min(566px, calc((100vw - 54px) * 1.85));
  }

  .cs-review-card {
    min-height: 202px;
    padding: 22px 20px;
  }

  .cs-cta {
    padding: 56px 18px;
  }

  .cs-cta-copy h2 {
    font-size: clamp(38px, 11vw, 50px);
    line-height: 1.1;
  }

  .cs-cta-copy p {
    line-height: 21px;
  }

  .cs-cta-bottom {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .cs-cta-visual {
    min-height: 500px;
  }

  .cs-capsule-marquee {
    top: 50%;
    left: 30%;
    width: min(168px, 54vw);
    height: 230px;
    opacity: .86;
    transform: translate(-50%, -50%);
  }

  .cs-capsule-track span {
    font-size: 12px;
    line-height: 16px;
    min-height: 26px;
    padding: 4px 8px 4px 5px;
  }

  .cs-capsule-track i {
    width: 16px;
    height: 16px;
    font-size: 9px;
  }

  .cs-capsule-track {
    gap: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cs-track,
  .cs-logo-track ul,
  .cs-phone-reel-track,
  .cs-review-track,
  .cs-capsule-track,
  .cs-video-bars span.is-active::after,
  .cs-video-hearts span,
  .cs-urgency-dot::before {
    animation: none;
  }

  .cs-button {
    transition: none;
  }

  .cs-button::before {
    animation: none;
  }

  .cs-left h1,
  .cs-right p,
  .cs-about h2,
  .cs-about-top p,
  .cs-benefit,
  .cs-service-card {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ============================================================
   Plugin contact form (Contact Form 7 / WPForms) styled to
   match the original modal form. The static .cs-modal-form
   markup was replaced by a [contact-form-7] shortcode slot.
   ============================================================ */
.cs-modal-panel .wpcf7-form,
.cs-modal-panel .wpforms-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cs-modal-panel .wpcf7-form > p {
  margin: 0;
}

.cs-modal-panel .wpcf7 label,
.cs-modal-panel .wpforms-field label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-family: Outfit, "Outfit Placeholder", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.cs-modal-panel input[type="text"],
.cs-modal-panel input[type="email"],
.cs-modal-panel input[type="tel"],
.cs-modal-panel input[type="url"],
.cs-modal-panel select,
.cs-modal-panel textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  font: inherit;
  font-weight: 400;
  outline: none;
}

.cs-modal-panel input[type="text"],
.cs-modal-panel input[type="email"],
.cs-modal-panel input[type="tel"],
.cs-modal-panel input[type="url"],
.cs-modal-panel select {
  min-height: 46px;
  padding: 0 14px;
}

.cs-modal-panel textarea {
  min-height: 118px;
  padding: 13px 14px;
  resize: vertical;
}

.cs-modal-panel input:focus,
.cs-modal-panel select:focus,
.cs-modal-panel textarea:focus {
  border-color: rgba(255, 255, 255, .66);
  box-shadow: 0 0 0 3px rgba(121, 50, 236, .28);
}

.cs-modal-panel option {
  background: var(--black);
  color: var(--white);
}

/* Utility hooks reused from the original form template */
.cs-modal-panel .cs-modal-full,
.cs-modal-panel .wpcf7-form .cs-modal-full {
  grid-column: 1 / -1;
}

/* Submit button: add class:cs-button class:cs-button-dark in the CF7 tag.
   These fallbacks keep it on its own row and styled if classes are missing. */
.cs-modal-panel .wpcf7-submit,
.cs-modal-panel .wpforms-submit,
.cs-modal-panel button[type="submit"] {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

/* Plugin status / validation messages span the full width */
.cs-modal-panel .wpcf7-response-output,
.cs-modal-panel .wpcf7 form .wpcf7-response-output,
.cs-modal-panel .wpforms-confirmation-container-full {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--muted-white);
  font-family: Outfit, "Outfit Placeholder", sans-serif;
  font-size: 15px;
  line-height: 21px;
}

.cs-modal-panel .wpcf7-not-valid-tip {
  color: #ff8585;
  font-size: 13px;
  font-weight: 500;
}

.cs-modal-panel .wpcf7-spinner {
  margin: 0 0 0 12px;
}
