@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

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

:root {
  --purple: #7c3aed;
  --purple-light: #c8b6fd;
  --purple-pale: #ede9fe;
  --red: #e11d48;
  --dark: #111111;
  --gray: #6b7280;
  --gray-2: #9ca3af;
  --bg: #f5f5f5;
  --white: #ffffff;
  --card-bg: #1a0b2e;
  --radius: 18px;
  --border: #e5e7eb;
  --footer: #0f0f0f;
  --green: #22c55e;
  --star: #344054;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
}

.aline {
  max-width: 1300px;
  margin: 0 auto;
}

/* navbar */

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a:hover {
  color: var(--purple);
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-outline {
  border: 1.5px solid var(--dark);
  background: transparent;
  color: var(--dark);
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-purple-outline {
  border: 1.5px solid var(--purple);
  background: transparent;
  color: var(--purple);
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}
.btn-purple-outline:hover {
  background: var(--purple);
  color: var(--white);
}

/* hamburger */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 20px 5%;
  gap: 16px;
  border-top: 1px solid #eee;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  padding: 6px 0;
}
.mobile-menu a:hover {
  color: var(--purple);
}
.mobile-menu .mobile-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/*HERO */

.hero {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 5%;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-left {
  width: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right {
  width: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.85rem;
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 28px;
  width: fit-content;
}
.hero-badge .star {
  font-size: 1rem;
  color: var(--gray);
}

.hero-title .purple {
  background: linear-gradient(
    90deg,
    #2b034d 4%,
    #b564f7 35%,
    #d37ef0 65%,
    #ef90ff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .price {
  color: var(--red);
}

.hero-title {
  font-weight: 600;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  color: #2b034d;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-solid {
  background: linear-gradient(180deg, #c084fc 0%, #9333ea 50%, #7e22ce 100%);
  color: #ffffff;
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.15s;
  text-decoration: none;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.01em;
}
.btn-solid:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--purple);
  border: 1.5px solid var(--purple);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  font-family: "Poppins", sans-serif;
}
.btn-ghost:hover {
  background: var(--purple);
  color: var(--white);
}

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

.influencer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-float {
  position: absolute;
  right: -8px;
  top: 20%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sf-icon {
  width: 28px;
  height: 28px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
  z-index: 2;
}
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.play-btn svg {
  margin-left: 3px;
}

.vc-footer {
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.4);
}
.vc-footer p {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.vc-footer span {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.5);
}

/* SOCIAL CARD  */

.social-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 100%;
}
.social-card > p {
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.social-icons-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.si {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.si img {
  width: 18px;
  height: 18px;
  display: block;
  position: relative;
  z-index: 1;
}
.si::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
}
.si svg {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
}
.si-ig::before {
  background: #f1f1f1;
}
.si-fb::before {
  background: #f1f1f1;
}
.si-x::before {
  background: #f1f1f1;
}
.si-li::before {
  background: #f1f1f1;
}

/* clients-strip */

.clients-strip {
  background: var(--white);
  padding: 44px 5%;
  display: flex;
  align-items: center;
  gap: 0;
}
.clients-left {
  flex: 0 0 240px;
  padding-right: 40px;
  border-right: 1.5px solid #e5e7eb;
}
.clients-left .count {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--dark);
}
.clients-left p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 4px;
}
.clients-logos {
  flex: 1;
  overflow: hidden;
  padding-left: 40px;
}
.logos-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: scrollLogos 18s linear infinite;
  white-space: nowrap;
}
@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.logos-track:hover {
  animation-play-state: paused;
}
.logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  flex-shrink: 0;
}
.logo-item .ico {
  width: 32px;
  height: 32px;
  background: var(--dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
}
.logo-item.outline .ico {
  background: transparent;
  border: 2px solid var(--dark);
  color: var(--dark);
}

/* services */

.services-section {
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}
.services-section::before,
.services-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.services-section::before {
  width: 320px;
  height: 320px;
  background: rgba(167, 139, 250, 0.18);
  top: -60px;
  left: -80px;
}
.services-section::after {
  width: 260px;
  height: 260px;
  background: rgba(167, 139, 250, 0.12);
  bottom: 40px;
  right: -60px;
}

.section-inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
}

.section-heading {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--purple-light);
}
.section-heading h2 {
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.section-heading h2 span {
  color: var(--purple);
}
.section-heading p {
  max-width: 520px;
  margin: 14px auto 0;
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
}

.all {
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: var(--purple-light);
}
.all h2 {
  font-weight: 800;
  color: var(--dark);
}
.all h2 span {
  color: var(--purple);
}
.all p {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  margin: 14px auto 0;
  font-size: 0.92rem;
  color: var(--gray);
}

/* Big Card */
.big-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.card-left .card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.card-title-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.card-title-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.card-left .card-title h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--dark);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  list-style: none;
  margin-top: 8px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.fi-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.fi-icon svg {
  width: 13px;
  height: 13px;
}
.fi-text h4 {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}
.fi-text p {
  font-size: 0.88rem;
  color: #4b5563;
  line-height: 1.75;
}

/* Plan options */
.card-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-option {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  position: relative;
}
.plan-option:hover {
  border-color: var(--purple-light);
}
.plan-option.selected {
  border-color: var(--purple);
  background: #faf5ff;
}
.plan-badge {
  position: absolute;
  top: -10px;
  left: 16px;
  background: #475467;
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.plan-info h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.plan-info p {
  font-size: 0.78rem;
  color: var(--gray);
}
.plan-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.plan-option.selected .plan-radio {
  background: var(--purple);
  border-color: var(--purple);
}
.plan-option.selected .plan-radio::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}
.card-cta {
  text-align: center;
  margin-top: 8px;
}

/* raw */

.raw-section {
  margin: 0 auto;
  padding: 80px 5%;
  background: var(--bg);
}
.raw-section .section-inner {
  max-width: 1300px;
}
.raw-section .section-heading {
  margin-bottom: 44px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.feat-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.feat-card:hover {
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.1);
}
.feat-card-header {
  padding: 16px 16px 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.fch-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.fch-check img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.feat-card-header h3 {
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.35;
}
.feat-card-video {
  width: 100%;
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}
.feat-card-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}
.feat-card-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 8px
  );
}
.feat-card-body {
  padding: 14px 16px 18px;
}
.feat-card-body p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.65;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.content-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px;
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
}
.content-card:hover {
  border-color: var(--purple-light);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.08);
}
.content-card h4 {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.content-card p {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.65;
}

/* video section */

.video-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 56px 5% 20px;
}
.section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.section-title h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 600;
  color: var(--dark);
}
.section-title h2 span {
  color: var(--purple);
}
.title-img-pill {
  width: 120px;
  height: 44px;
  border-radius: 50px;
  overflow: hidden;
  border: 2.5px solid var(--purple);
  flex-shrink: 0;
}
.title-img-pill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Carousel */
.carousel-wrap {
  position: relative;
}
.carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.carousel::-webkit-scrollbar {
  display: none;
}
.vid-card {
  flex: 0 0 calc(25% - 12px);
  min-width: 200px;
  scroll-snap-align: start;
}
.vid-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 13;
  border-radius: 16px;
  overflow: hidden;
}
.vid-thumb .thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vid-thumb:hover .thumb-img {
  transform: scale(1.04);
}

.grad-1 {
  background: linear-gradient(135deg, #d4a96a 0%, #a0785a 50%, #6b4c3b 100%);
}
.grad-2 {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #111 100%);
}
.grad-3 {
  background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 50%, #be185d 100%);
}
.grad-4 {
  background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 50%, #1e40af 100%);
}
.grad-5 {
  background: linear-gradient(135deg, #1a1a1a 0%, #374151 100%);
}
.grad-6 {
  background: linear-gradient(135deg, #14532d 0%, #166534 50%, #15803d 100%);
}
.grad-7 {
  background: linear-gradient(135deg, #7f1d1d 0%, #dc2626 50%, #f87171 100%);
}
.grad-8 {
  background: linear-gradient(135deg, #312e81 0%, #4f46e5 50%, #818cf8 100%);
}

.thumb-illus {
  width: 100%;
  height: 100%;
}
.thumb-illus img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
}
.carousel-arrow {
  position: absolute;
  right: -16px;
  top: 38%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  z-index: 5;
  transition:
    background 0.2s,
    color 0.2s;
  font-size: 0.9rem;
}
.carousel-arrow:hover {
  background: var(--purple);
  color: var(--white);
}
.vid-label {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 10px;
  font-weight: 500;
}


/* why */
.why-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 5%;
}

.why-card {
  display: flex;
  gap: 40px;
  align-items: center;
}

.why-img {
  width: 50%;
  flex-shrink: 0;
}
.why-img img {
  width: 100%;
  height: 100%;
  display: block;
}
.why-person {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
}
.why-text {
  width: 50%;
  flex-shrink: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-text h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
}
.why-text p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 12px;
}
.btn-outline-purple {
  display: inline-block;
  border: 1.5px solid var(--purple);
  color: var(--purple);
  background: transparent;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 10px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}
.btn-outline-purple:hover {
  background: var(--purple);
  color: var(--white);
}

/* reviews */

.reviews {
  padding: 72px 5% 84px;
}
.reviews-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.reviews-head {
  text-align: center;
  margin-bottom: 44px;
}
.reviews-head .row1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.reviews-head .row1 h2,
.reviews-head .row2 {
  font-size: clamp(1.75rem, 3.8vw, 2.5rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
}
.reviews-head .row2 {
  color: var(--purple);
  display: block;
  margin-top: 6px;
}

.toggle-pill {
  display: inline-flex;
  align-items: center;
  background: var(--purple-pale);
  border: 1.5px solid var(--purple-light);
  border-radius: 50px;
  padding: 5px 10px;
  gap: 4px;
  flex-shrink: 0;
}
.tp-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--purple);
}
.tp-track {
  width: 30px;
  height: 12px;
  background: var(--purple-light);
  border-radius: 50px;
  opacity: 0.5;
}
.tp-dot2 {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--purple-light);
  background: transparent;
}

.vid-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  margin-bottom: 28px;
  padding-bottom: 2px;
  align-items: flex-start;
}
.vid-row:active {
  cursor: grabbing;
}
.vid-row::-webkit-scrollbar {
  display: none;
}
.vc {
  flex: 0 0 calc(25% - 9px);
  min-width: 170px;
  scroll-snap-align: start;
}
.vc.phone {
  flex: 0 0 calc(12% - 6px);
  min-width: 80px;
}
.vc-thumb {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.vc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}
.vc.phone .vc-thumb {
  border-radius: 18px;
  border: 2px solid var(--border);
  aspect-ratio: 9/16;
}
.vc-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  z-index: 2;
}
.vc-thumb:hover .vc-play {
  transform: translate(-50%, -50%) scale(1.1);
}
.vc-play svg {
  margin-left: 3px;
}
.vc-tag {
  position: absolute;
  bottom: 10px;
  left: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(6px);
  border-radius: 50px;
  padding: 4px 10px 4px 4px;
}
.vc.phone .vc-tag {
  display: none;
}
.vc-av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.vc-av svg {
  width: 100%;
  height: 100%;
  display: block;
}
.vc-nm strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.vc-nm span {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.65);
}

.tgrid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.tgrid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tc {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    box-shadow 0.25s,
    border-color 0.25s;
}
.tc:hover {
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.09);
  border-color: #c4b5fd;
}
.tc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.tc-author {
  display: flex;
  align-items: center;
  gap: 11px;
}
.tc-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #e5e7eb;
}
.tc-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.tc-meta strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}
.tc-meta span {
  font-size: 0.76rem;
  color: var(--gray);
}
.tc-rate {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.tc-rate .s {
  color: var(--star);
  font-size: 0.9rem;
}
.tc-rate .sc {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray);
}
.tc.sm .tc-top {
  flex-direction: column;
  gap: 4px;
}
.tc.sm .tc-rate {
  justify-content: flex-start;
  margin-top: 2px;
}
.tc-quote {
  position: relative;
  padding: 20px 28px;
}
.tc-quote p {
  font-size: 0.84rem;
  color: var(--gray);
  line-height: 1.7;
}
.q-mark {
  position: absolute;
  width: 40px;
  height: 40px;
}
.q-mark img {
  width: 100%;
  height: 100%;
  opacity: 0.4;
}
.q-open {
  top: 0;
  left: 0;
}
.q-close {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}

/* faq */

.faq-section {
  padding: 72px 5% 80px;
  max-width: 1300px;
  margin: 0 auto;
}
.faq-head {
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
.faq-head h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.faq-head h2 span {
  color: var(--purple);
}
.faq-head p {
  font-weight: 400;
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-trigger {
  font-weight: 500;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  text-align: left;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark);
  transition: background 0.15s;
  font-family: "Poppins", sans-serif;
}
.faq-trigger:hover {
  background: #faf9f7;
}
.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.3s;
  color: var(--gray);
  font-size: 1rem;
  line-height: 1;
}
.faq-item.open .faq-trigger {
  background: #faf9f7;
}
.faq-item.open .faq-icon {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}
.faq-item.open .faq-body {
  max-height: 400px;
}
.faq-body-inner {
  padding: 0 22px 20px;
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.75;
}

/* footer */

footer {
  background: var(--white);
  color: var(--dark);
  padding: 56px 6% 0;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 48px;
}
.foot-brand .logo-text {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.foot-brand .about-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  display: block;
}
.foot-brand p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.72;
  margin-bottom: 24px;
}
.foot-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.foot-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-col ul li a {
  text-decoration: none;
  font-size: 0.83rem;
  color: var(--gray);
  transition: color 0.2s;
}
.foot-col ul li a:hover {
  color: var(--purple);
}
.foot-contact h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cf-input {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.82rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  font-family: "Poppins", sans-serif;
}
.cf-input::placeholder {
  color: var(--gray-2);
}
.cf-input:focus {
  border-color: var(--purple);
}
.cf-textarea {
  resize: none;
  height: 74px;
}
.cf-submit {
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
  width: 100%;
  font-family: "Poppins", sans-serif;
}
.cf-submit:hover {
  background: #333;
}
.cf-submit .arrow {
  font-size: 0.9rem;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray);
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .hero {
    flex-direction: column;
    padding: 48px 5% 60px;
    gap: 32px;
  }
  .hero-left,
  .hero-right {
    width: 100%;
  }
  .hero-title {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  .clients-strip {
    flex-direction: column;
    gap: 24px;
  }
  .clients-left {
    border-right: none;
    border-bottom: 1.5px solid #e5e7eb;
    padding-right: 0;
    padding-bottom: 20px;
    flex: unset;
    width: 100%;
  }
  .clients-logos {
    padding-left: 0;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .foot-brand {
    grid-column: 1 / -1;
  }
  .foot-contact {
    grid-column: 1 / -1;
  }

  .big-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .feature-cards {
    grid-template-columns: 1fr;
  }
  .content-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .tgrid-2 {
    grid-template-columns: 1fr;
  }
  .tgrid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .vc {
    flex: 0 0 calc(56% - 8px);
  }
  .vc.phone {
    flex: 0 0 calc(28% - 6px);
    min-width: 60px;
  }

  .why-section {
    padding: 48px 5%;
  }
  .why-card {
    flex-direction: column;
    gap: 24px;
  }
  .why-img,
  .why-text {
    width: 100%;
  }

  .vid-card {
    flex: 0 0 calc(50% - 8px);
  }
  .reviews {
    padding: 52px 4% 64px;
  }
  .reviews-head .row1 h2,
  .reviews-head .row2 {
    font-size: 1.55rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 4% 48px;
  }
  .hero-title {
    font-size: 1.9rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn-solid,
  .btn-ghost {
    text-align: center;
  }

  .social-card {
    max-width: 100%;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .feature-cards {
    grid-template-columns: 1fr;
  }

  .vc {
    flex: 0 0 75%;
  }
  .vc.phone {
    flex: 0 0 35%;
  }
  .vid-card {
    flex: 0 0 calc(80% - 8px);
  }
  .video-section {
    padding: 40px 4% 16px;
  }

  .why-section {
    padding: 32px 4%;
  }
  .why-text {
    text-align: center;
  }

  .tgrid-2 {
    grid-template-columns: 1fr;
  }
  .tgrid-3 {
    grid-template-columns: 1fr;
  }

  .carousel-arrow {
    right: -10px;
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }
  .services-section,
  .raw-section {
    padding: 60px 4%;
  }
  .big-card {
    padding: 20px;
  }
  .faq-section {
    padding: 52px 4% 60px;
  }
  .faq-trigger {
    padding: 17px 16px;
    font-size: 0.88rem;
  }
  .faq-body-inner {
    padding: 0 16px 16px;
  }
  footer {
    padding: 44px 4% 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .foot-brand {
    grid-column: unset;
  }
  .foot-contact {
    grid-column: unset;
  }
}
