/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fafcfd;
  color: #141a20;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* ===== STICKY NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  background: rgba(250, 252, 253, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav__inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1536px;
  margin: 0 auto;
  height: 64px;
  padding: 0 20px;
  gap: 16px;
}

.nav__logo {
  flex-shrink: 0;
}

.nav__logo img {
  width: 110px;
  height: auto;
  object-fit: contain;
}

.nav__links {
  display: none;
}

.nav__menu-btn,
.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 32px 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: #141a20;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav__link:hover {
  color: #17d5ff;
}

.nav__chevron {
  width: 8px;
  height: 7px;
  flex-shrink: 0;
}

.nav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  min-width: 1px;
}

.nav__join {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #17d5ff;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.3px;
  color: #141a20;
  white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.25s ease;
}

.nav__join:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(23, 213, 255, 0.3);
}

.nav__join-arrow {
  width: 18px;
  height: 18px;
  overflow: hidden;
  flex-shrink: 0;
}

.nav__join-arrow img {
  width: 18px;
  height: 19px;
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  width: 100%;
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 16px 40px;
}

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__video {
  z-index: 1;
}
.hero__video:not([src]):not(:has(source[src])) {
  display: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 18, 0.45);
  z-index: 2;
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 32px 20px 60px;
  z-index: 3;
}

.hero__text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
}

.hero__eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 16px;
}

.hero__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -1.8px;
  color: #fafcfd;
  text-align: center;
  margin-bottom: 16px;
}

.hero__subtext {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.3px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  max-width: 340px;
}

.hero__cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  background: #17d5ff;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.3px;
  color: #141a20;
  white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.25s ease;
}

.hero__cta:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(23, 213, 255, 0.35);
}

.hero__cta-arrow {
  width: 18px;
  height: 18px;
  overflow: hidden;
  flex-shrink: 0;
}

.hero__cta-arrow img {
  width: 18px;
  height: 19px;
}

/* Testimonial card — hidden on mobile, overlay on desktop */
.hero__testimonial {
  display: none;
}

.hero__testimonial-quote,
.hero__testimonial-name {
  transition: opacity 0.5s ease;
}

.hero__testimonial--fading .hero__testimonial-quote,
.hero__testimonial--fading .hero__testimonial-name {
  opacity: 0;
}

.hero__testimonial-quote {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  color: #000;
  white-space: nowrap;
}

.hero__stars {
  display: flex;
  gap: 2px;
}

.hero__star {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #219653;
  padding: 3px;
}

.hero__star img {
  width: 12px;
  height: 12px;
}

.hero__testimonial-name {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  color: #000;
  white-space: nowrap;
}

/* ===== LOGO WALL ===== */
.logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 0;
  background: #fafcfd;
  overflow: hidden;
}

.logos__heading {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.3px;
  color: #6b7a8d;
  text-align: center;
  padding: 0 20px;
}

.logos__marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 18px;
}

.logos__track {
  display: flex;
  align-items: center;
  gap: 48px;
  height: 18px;
  animation: marquee-scroll 60s linear infinite;
  width: max-content;
}

.logos__marquee:hover .logos__track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .logos__track {
    animation: none;
  }
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logos__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  width: auto;
}

.logos__item img {
  height: 18px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.5;
  filter: grayscale(100%);
}

.logos__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
}

.logos__fade--left {
  left: 0;
  background: linear-gradient(90deg, #fafcfd 0%, rgba(250, 252, 253, 0) 100%);
}

.logos__fade--right {
  right: 0;
  background: linear-gradient(270deg, #fafcfd 0%, rgba(250, 252, 253, 0) 100%);
}

/* ===== DARK FEATURE SECTION ===== */
.features {
  background: #141a20;
  padding: 48px 20px;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1472px;
  margin: 0 auto;
}

.features__header {
  display: flex;
  align-items: flex-start;
}

.features__sparkle {
  flex-shrink: 0;
  width: 28px;
  height: 34px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
}

.features__sparkle img {
  width: 28px;
  height: 26px;
}

.features__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #fafcfd;
}

.features__image {
  order: 1;
}

.features__image-inner {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
}

.features__image-inner img,
.features__image-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features__accordion {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ===== UNIFIED ACCORDION ===== */
.acc {
  border-radius: 14px;
  overflow: hidden;
  transition: background 0.3s ease;
}

.acc--open {
  background: #192028;
}

.acc__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  text-align: left;
  transition: padding 0.3s ease;
}

.acc--open .acc__trigger {
  padding: 24px 20px 8px;
}

.acc__title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -0.3px;
  color: #fafcfd;
}

.acc__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acc__icon img {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.acc--open .acc__icon img {
  transform: rotate(45deg);
}

.acc__body {
  padding: 4px 20px 28px;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}

.acc__body[hidden] {
  display: block;
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  pointer-events: none;
}

.acc__text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.2px;
  color: #a9b2bc;
  margin-bottom: 16px;
}

.acc__text:last-child {
  margin-bottom: 0;
}

.acc__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #fafcfd;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.3px;
  color: #141a20;
  white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.25s ease;
}

.acc__cta:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.acc__cta-arrow {
  width: 18px;
  height: 18px;
  overflow: hidden;
  flex-shrink: 0;
}

.acc__cta-arrow img {
  width: 18px;
  height: 19px;
}

/* ===== CASE STUDIES ===== */
.cases {
  background: #fafcfd;
  padding: 64px 16px 0;
}

.cases__inner {
  max-width: 1472px;
  margin: 0 auto;
}

.cases__section-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -1.2px;
  color: #141a20;
  margin-bottom: 32px;
}

.cases__stack {
  position: relative;
}

.case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.case-card__text {
  display: flex;
  flex-direction: column;
}

.case-card__client {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 12px;
}

.case-card__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: #141a20;
  margin-bottom: 12px;
}

.case-card__body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.2px;
  color: #4b5563;
  margin-bottom: 24px;
}

.case-card__stats {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
}

.case-card__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.case-card__stat-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -1.4px;
  color: #141a20;
}

.case-card__stat-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  color: #6b7280;
}

.case-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  background: #141a20;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.3px;
  color: #fafcfd;
  white-space: nowrap;
  width: fit-content;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.2s ease, box-shadow 0.25s ease;
}

.case-card__cta:hover {
  background: #2a3340;
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.case-card__cta-arrow {
  width: 18px;
  height: 18px;
  overflow: hidden;
  flex-shrink: 0;
  filter: invert(1);
}

.case-card__cta-arrow img {
  width: 18px;
  height: 19px;
}

.case-card__media {
  width: 100%;
  min-height: 220px;
  border-radius: 14px;
  overflow: hidden;
}

.case-card__media img,
.case-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== 6 REASONS ===== */
.reasons {
  background: #fafcfd;
  padding: 64px 20px 80px;
}

.reasons__inner {
  max-width: 1472px;
  margin: 0 auto;
}

.reasons__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.reasons__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -1.2px;
  color: #0a0e12;
}

.reasons__sub {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.3px;
  color: #4c5864;
  max-width: 600px;
}

.reasons__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  background: #17d5ff;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.3px;
  color: #141a20;
  white-space: nowrap;
  width: fit-content;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.25s ease;
}

.reasons__cta:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(23, 213, 255, 0.3);
}

.reasons__cta-arrow {
  width: 18px;
  height: 18px;
  overflow: hidden;
  flex-shrink: 0;
}

.reasons__cta-arrow img {
  width: 18px;
  height: 19px;
}

.reasons__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.reasons__photo {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.reasons__photo img {
  width: 100%;
  height: auto;
  display: block;
}

.reasons__photo-caption {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  letter-spacing: -0.2px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.reasons__photo-caption:hover {
  background: rgba(0, 0, 0, 0.6);
}

.reasons__photo-caption img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.reasons__pills {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px;
  justify-content: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
  border-radius: 0 0 20px 20px;
}

.reasons__pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  letter-spacing: -0.1px;
  color: #fff;
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.2s ease;
}

.reasons__pill:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.08) rotate(-1deg);
}

.reasons__pill:nth-child(2n) {
  transform: rotate(1.5deg);
}

.reasons__pill:nth-child(3n) {
  transform: rotate(-2deg);
}

.reasons__pill:nth-child(4n+1) {
  transform: rotate(0.5deg);
}

.reasons__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.reasons__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.reasons__number {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.8px;
  color: #17d5ff;
  flex-shrink: 0;
  width: 32px;
}

.reasons__item-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reasons__item-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -0.3px;
  color: #141a20;
}

.reasons__item-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.2px;
  color: #4c5864;
}

/* ===== WORK GALLERY (Netflix-style) ===== */
.gallery {
  background: #0a0e12;
  padding: 0 0 40px;
  overflow: hidden;
}

/* Featured Hero */
.gallery__feature {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.gallery__feature-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__feature-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, #0a0e12 0%, rgba(10,14,18,0.6) 50%, transparent 80%),
    linear-gradient(90deg, rgba(10,14,18,0.7) 0%, transparent 70%);
  pointer-events: none;
}

.gallery__feature-content {
  position: absolute;
  bottom: 32px;
  left: 20px;
  right: 20px;
  z-index: 2;
}

.gallery__feature-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #17d5ff;
  margin-bottom: 10px;
}

.gallery__feature-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -1.6px;
  color: #fafcfd;
  margin-bottom: 10px;
}

.gallery__feature-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.2px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gallery__feature-btns {
  display: flex;
  gap: 10px;
}

.gallery__feature-play {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  background: #fafcfd;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.3px;
  color: #0a0e12;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.2s ease, box-shadow 0.25s ease;
}

.gallery__feature-play svg {
  width: 14px;
  height: 14px;
}

.gallery__feature-play:hover {
  background: #e2e8f0;
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.gallery__feature-more {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.3px;
  color: #fafcfd;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.2s ease, box-shadow 0.25s ease;
}

.gallery__feature-more:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

/* Carousel Row */
.gallery__row-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.3px;
  color: #fafcfd;
  padding: 0 20px;
  margin-bottom: 12px;
}

.gallery__rail {
  display: flex;
  gap: 12px;
  padding: 0 20px;
  margin-bottom: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.gallery__rail::-webkit-scrollbar {
  display: none;
}

.gallery__card {
  position: relative;
  flex: 0 0 72%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery__card:hover {
  transform: scale(1.02);
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.gallery__card video,
.gallery__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery__card-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, transparent 50%);
  pointer-events: none;
}

.gallery__card-info {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  pointer-events: none;
}

.gallery__card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.2px;
  color: #fff;
}

.gallery__card-tag {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.55);
}

/* ===== PRICING ===== */
.pricing {
  background: #0a0e12;
  padding: 64px 20px;
}

.pricing__inner {
  max-width: 1472px;
  margin: 0 auto;
}

.pricing__header {
  text-align: center;
  margin-bottom: 32px;
}

.pricing__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -1.2px;
  color: #fafcfd;
  margin-bottom: 12px;
}

.pricing__sub {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.2px;
  color: #6b7a8d;
  max-width: 480px;
  margin: 0 auto;
}

/* Toggle */
.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 32px;
}

.pricing__toggle-pill {
  display: flex;
  align-items: center;
  background: #1e2830;
  border-radius: 100px;
  padding: 3px;
}

.pricing__toggle-btn {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  letter-spacing: -0.2px;
  color: #6b7a8d;
  padding: 10px 18px;
  border-radius: 100px;
  border: none;
  transition: all 0.25s ease;
}

.pricing__toggle-btn--active {
  background: #fafcfd;
  color: #0a0e12;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pricing__save-badge {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.2px;
  color: #0a0e12;
  background: #17d5ff;
  padding: 6px 10px;
  border-radius: 100px;
}

/* Cards */
.pricing__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
}

.pricing__card {
  background: #141a20;
  border: 1px solid #1e2830;
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing__card--featured {
  background: #192028;
  border: 2px solid #7c3aed;
  z-index: 1;
  padding-top: 0;
}

.pricing__card--dark {
  background: #fafcfd;
  border-color: #fafcfd;
}

.pricing__recommended {
  background: #7c3aed;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.3px;
  text-align: center;
  padding: 10px 0;
  margin: 0 -24px 24px;
  border-radius: 18px 18px 0 0;
}

.pricing__plan-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: #6b7a8d;
  margin-bottom: 8px;
}

.pricing__card--dark .pricing__plan-name {
  color: #4c5864;
}

.pricing__price-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 6px;
}

.pricing__price {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -1.4px;
  color: #fafcfd;
  transition: opacity 0.2s ease;
}

.pricing__price-period {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #6b7a8d;
}

.pricing__card--dark .pricing__price {
  color: #141a20;
}

.pricing__card--dark .pricing__price-period {
  color: #4c5864;
}

.pricing__price--talk {
  font-size: 28px;
  letter-spacing: -1px;
}

.pricing__meta {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: -0.1px;
  color: #4c5864;
  margin-bottom: 24px;
}

.pricing__card--dark .pricing__meta {
  color: #6b7a8d;
}

.pricing__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #17d5ff;
  border: none;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.3px;
  color: #141a20;
  text-align: center;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.2s ease, box-shadow 0.25s ease;
  margin-bottom: 8px;
}

.pricing__cta:hover {
  background: #14bfe6;
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(23, 213, 255, 0.25);
}

.pricing__cta--featured {
  background: #17d5ff;
  color: #141a20;
}

.pricing__cta--dark {
  background: #fafcfd;
  color: #141a20;
  border: none;
}

.pricing__cta--dark:hover {
  background: #e2e8f0;
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.pricing__divider {
  width: 100%;
  height: 1px;
  background: #1e2830;
  margin: 20px 0;
}

.pricing__card--dark .pricing__divider {
  background: #e2e8f0;
}

.pricing__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing__features li {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.2px;
  color: #a9b2bc;
  padding-left: 22px;
  position: relative;
}

.pricing__card--dark .pricing__features li {
  color: #4c5864;
}

.pricing__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #a9b2bc;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.667 3.5L5.25 9.917 2.333 7' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.667 3.5L5.25 9.917 2.333 7' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}

.pricing__card--dark .pricing__features li::before {
  background: #4c5864;
}

/* ===== FAQ ===== */
.faq {
  background: #0a0e12;
  padding: 0 20px 64px;
}

.faq__inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -1.2px;
  color: #fafcfd;
  text-align: center;
  margin-bottom: 40px;
}

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-top: 1px solid #1e2830;
}

.faq__item:last-child {
  border-bottom: 1px solid #1e2830;
}

.faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  text-align: left;
  gap: 16px;
}

.faq__question {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.2px;
  color: #fafcfd;
}

.faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq__icon img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.faq__item--open .faq__icon img {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 0 20px;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}

.faq__answer[hidden] {
  display: block;
  max-height: 0;
  opacity: 0;
  padding-bottom: 0;
  pointer-events: none;
}

.faq__answer p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: -0.2px;
  color: #6b7a8d;
}

/* ===== STICKY FOOTER BAR ===== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  height: 80px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sticky-bar--visible {
  transform: translateY(0);
}

.sticky-bar__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.sticky-bar__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 16px;
  height: 100%;
  gap: 12px;
}

.sticky-bar__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.sticky-bar__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.4px;
  color: #141a20;
}


.sticky-bar__sub {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: -0.2px;
  color: #141a20;
  display: none;
}

.sticky-bar__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  background: #141a20;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  letter-spacing: -0.2px;
  color: #fafcfd;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.25s ease;
}

.sticky-bar__cta:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sticky-bar__cta-arrow {
  width: 16px;
  height: 16px;
  overflow: hidden;
  flex-shrink: 0;
  filter: invert(1);
}

.sticky-bar__cta-arrow img {
  width: 16px;
  height: 17px;
}

.sticky-bar__close {
  display: none;
}

.sticky-bar__close img {
  width: 16px;
  height: 20px;
}

.sticky-bar__heading strong {
  font-weight: 700;
}

/* ========================================
   TABLET — min-width: 768px
   ======================================== */
@media (min-width: 768px) {
  .nav {
    height: 72px;
  }

  .nav__inner {
    height: 72px;
    padding: 0 32px;
  }

  .nav__logo img {
    width: 120px;
  }

  .nav__join {
    padding: 10px 18px;
    font-size: 14px;
  }

  .hero-section {
    padding: 0 24px 48px;
  }

  .hero {
    aspect-ratio: 2 / 1;
    border-radius: 20px;
  }

  .hero__content {
    gap: 32px;
    padding: 40px 32px 72px;
  }

  .hero__eyebrow {
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }

  .hero__heading {
    font-size: 52px;
    letter-spacing: -2.6px;
    margin-bottom: 20px;
    white-space: nowrap;
  }

  .hero__subtext {
    font-size: 17px;
    max-width: 420px;
  }

  .hero__cta {
    padding: 12px 24px;
    font-size: 15px;
  }

  .hero__testimonial {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    position: absolute;
    bottom: 24px;
    right: 24px;
    max-width: 340px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 14px;
    z-index: 4;
  }

  .hero__testimonial-quote {
    flex-basis: 100%;
  }

  .logos {
    gap: 28px;
    padding: 48px 0;
  }

  .logos__heading {
    font-size: 17px;
  }

  .logos__track {
    gap: 72px;
  }

  .logos__fade {
    width: 64px;
  }

  .features {
    padding: 56px 32px;
  }

  .features__heading {
    font-size: 32px;
  }

  .features__accordion {
    gap: 16px;
  }

  .acc__trigger {
    padding: 18px 28px;
  }

  .acc--open .acc__trigger {
    padding: 28px 28px 8px;
  }

  .acc__body {
    padding: 4px 28px 32px;
  }

  .cases {
    padding: 72px 24px 0;
  }

  .cases__section-heading {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .case-card {
    padding: 32px;
    gap: 32px;
  }

  .case-card__heading {
    font-size: 26px;
  }

  .case-card__stat-number {
    font-size: 36px;
  }

  .case-card__media {
    min-height: 280px;
  }

  .reasons {
    padding: 72px 32px 88px;
  }

  .reasons__heading {
    font-size: 32px;
  }

  .reasons__body {
    gap: 48px;
  }

  .reasons__list {
    gap: 40px;
  }

  .reasons__item {
    gap: 24px;
  }

  .reasons__number {
    font-size: 28px;
    width: 36px;
  }

  .gallery__feature {
    aspect-ratio: 1.6 / 1;
  }

  .gallery__feature-content {
    bottom: 40px;
    left: 32px;
    right: auto;
    max-width: 440px;
  }

  .gallery__feature-title {
    font-size: 40px;
  }

  .gallery__feature-desc {
    font-size: 15px;
    line-height: 1.55;
    -webkit-line-clamp: unset;
  }

  .gallery__row-label {
    padding: 0 32px;
    font-size: 18px;
    margin-bottom: 14px;
  }

  .gallery__rail {
    padding: 0 32px;
    gap: 14px;
  }

  .gallery__card {
    flex: 0 0 42%;
  }

  .pricing {
    padding: 80px 32px;
  }

  .pricing__heading {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .pricing__sub {
    font-size: 17px;
  }

  .pricing__toggle {
    margin-bottom: 40px;
  }

  .pricing__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    gap: 16px;
  }

  .pricing__card {
    border-radius: 20px;
  }

  .pricing__price {
    font-size: 40px;
  }

  .faq {
    padding: 0 32px 80px;
  }

  .faq__heading {
    font-size: 32px;
    margin-bottom: 48px;
  }

  .faq__trigger {
    padding: 22px 0;
  }

  .faq__question {
    font-size: 16px;
  }

  .faq__answer p {
    font-size: 15px;
  }

  .sticky-bar {
    height: 88px;
  }

  .sticky-bar__inner {
    padding: 0 24px;
    gap: 24px;
  }

  .sticky-bar__heading {
    font-size: 22px;
  }

  .sticky-bar__sub {
    display: block;
    font-size: 13px;
  }

  .sticky-bar__cta {
    padding: 10px 18px;
    font-size: 13px;
  }

  .sticky-bar__close {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    background: rgba(241, 245, 249, 0.8);
    border-radius: 8px;
    flex-shrink: 0;
  }
}

/* ========================================
   DESKTOP — min-width: 1024px
   ======================================== */
@media (min-width: 1024px) {
  .nav {
    height: 80px;
  }

  .nav__inner {
    height: 80px;
    padding: 0 32px;
  }

  .nav__logo img {
    width: 132px;
  }

  .nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 40px;
    flex-shrink: 0;
  }

  .nav__join {
    padding: 12px 20px;
    font-size: 15px;
    gap: 8px;
  }

  .nav__join-arrow {
    width: 20px;
    height: 20px;
  }

  .nav__join-arrow img {
    width: 20px;
    height: 21px;
  }

  .hero-section {
    padding: 0 32px 56px;
  }

  .hero {
    border-radius: 20px;
  }

  .hero__heading {
    font-size: 64px;
    letter-spacing: -3.2px;
  }

  .hero__subtext {
    font-size: 18px;
    max-width: 443px;
  }

  .hero__cta {
    padding: 12px 24px;
    font-size: 16px;
  }

  .hero__cta-arrow {
    width: 22px;
    height: 22px;
  }

  .hero__cta-arrow img {
    width: 22px;
    height: 23px;
  }

  .hero__testimonial {
    bottom: 32px;
    right: 32px;
    padding: 20px 24px;
  }

  .features {
    padding: 56px 32px;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 80px minmax(0, 1fr);
    gap: 40px 64px;
  }

  .features__header {
    grid-column: 1;
    grid-row: 1;
  }

  .features__heading {
    font-size: 36px;
    white-space: nowrap;
  }

  .features__image {
    grid-column: 2;
    grid-row: 1 / span 2;
    order: unset;
  }

  .features__image-inner {
    aspect-ratio: 630.41 / 472.8;
    position: sticky;
    top: 100px;
  }

  .features__accordion {
    grid-column: 1;
    grid-row: 2;
    order: unset;
    gap: 20px;
  }

  .acc__trigger {
    padding: 20px 32px;
  }

  .acc--open .acc__trigger {
    padding: 32px 32px 8px;
  }

  .acc__title {
    font-size: 18px;
  }

  .acc__body {
    padding: 8px 32px 40px;
  }

  .acc__text {
    font-size: 17px;
    max-width: 495px;
  }

  .acc__cta {
    padding: 12px 20px;
    font-size: 15px;
  }

  .cases {
    padding: 80px 32px 0;
  }

  .cases__section-heading {
    font-size: 44px;
    margin-bottom: 48px;
  }

  .case-card {
    position: sticky;
    top: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    min-height: 480px;
    padding: 48px;
    margin-bottom: 28px;
  }

  .case-card:nth-child(1) { top: 100px; }
  .case-card:nth-child(2) { top: 120px; }
  .case-card:nth-child(3) { top: 140px; }
  .case-card:nth-child(4) { top: 160px; }

  .case-card__heading {
    font-size: 32px;
    line-height: 1.15;
  }

  .case-card__body {
    font-size: 16px;
    max-width: 480px;
  }

  .case-card__stats {
    gap: 40px;
  }

  .case-card__stat-number {
    font-size: 40px;
  }

  .case-card__cta {
    padding: 12px 22px;
    font-size: 15px;
  }

  .case-card__media {
    min-height: 380px;
    height: 100%;
  }

  .reasons {
    padding: 80px 32px 100px;
  }

  .reasons__heading {
    font-size: 40px;
  }

  .reasons__sub {
    font-size: 18px;
  }

  .reasons__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .reasons__list {
    position: sticky;
    top: 100px;
    align-self: start;
    gap: 48px;
    padding-top: 2px;
  }

  .reasons__item {
    gap: 32px;
  }

  .reasons__number {
    font-size: 32px;
    width: 40px;
  }

  .reasons__item-title {
    font-size: 17px;
  }

  .reasons__item-desc {
    font-size: 16px;
  }

  .reasons__photo-caption {
    top: 20px;
    left: 20px;
    font-size: 15px;
    padding: 10px 18px;
    gap: 10px;
  }

  .reasons__photo-caption img {
    width: 18px;
    height: 18px;
  }

  .reasons__pills {
    gap: 10px;
    padding: 20px;
  }

  .reasons__pill {
    padding: 10px 20px;
    font-size: 13px;
  }

  .gallery__feature {
    aspect-ratio: 2.2 / 1;
  }

  .gallery__feature-content {
    bottom: 72px;
    left: 48px;
    max-width: 520px;
  }

  .gallery__feature-tag {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .gallery__feature-title {
    font-size: 52px;
    margin-bottom: 14px;
  }

  .gallery__feature-desc {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .gallery__feature-play,
  .gallery__feature-more {
    padding: 14px 28px;
    font-size: 15px;
  }

  .gallery__row-label {
    padding: 0 48px;
    font-size: 20px;
    margin-bottom: 16px;
  }

  .gallery__rail {
    padding: 0 48px;
    gap: 16px;
  }

  .gallery__card {
    flex: 1 0 0;
    min-width: 0;
  }

  .gallery__card-title {
    font-size: 15px;
  }

  .gallery__card-info {
    bottom: 14px;
    left: 14px;
    right: 14px;
  }

  .pricing {
    padding: 100px 32px;
  }

  .pricing__heading {
    font-size: 44px;
    margin-bottom: 20px;
  }

  .pricing__sub {
    font-size: 18px;
    max-width: 560px;
  }

  .pricing__toggle {
    margin-bottom: 48px;
  }

  .pricing__toggle-btn {
    font-size: 15px;
    padding: 12px 24px;
  }

  .pricing__save-badge {
    font-size: 13px;
    padding: 8px 14px;
  }

  .pricing__cards {
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
  }

  .pricing__card {
    padding: 36px 28px;
  }

  .pricing__card--featured {
    padding-top: 0;
  }

  .pricing__recommended {
    margin: 0 -28px 28px;
    padding: 12px 0;
    font-size: 13px;
  }

  .pricing__plan-name {
    font-size: 20px;
  }

  .pricing__price {
    font-size: 44px;
    letter-spacing: -2px;
  }

  .pricing__cta {
    padding: 14px 24px;
    font-size: 15px;
  }

  .pricing__features li {
    font-size: 15px;
  }

  .faq {
    padding: 0 32px 100px;
  }

  .faq__heading {
    font-size: 40px;
    margin-bottom: 56px;
  }

  .faq__trigger {
    padding: 24px 0;
    gap: 24px;
  }

  .faq__question {
    font-size: 17px;
  }

  .faq__answer p {
    font-size: 16px;
    max-width: 680px;
  }

  .sticky-bar {
    height: 100px;
  }

  .sticky-bar__inner {
    padding: 0 32px;
    gap: 32px;
  }

  .sticky-bar__heading {
    font-size: 28px;
    letter-spacing: -1px;
  }

  .sticky-bar__sub {
    font-size: 16px;
  }

  .sticky-bar__cta {
    padding: 12px 20px;
    font-size: 15px;
    gap: 6px;
  }

  .sticky-bar__cta-arrow {
    width: 20px;
    height: 20px;
  }

  .sticky-bar__cta-arrow img {
    width: 20px;
    height: 21px;
  }

  .sticky-bar__close img {
    width: 20px;
    height: 24px;
  }
}

/* ========================================
   LARGE DESKTOP — min-width: 1280px
   ======================================== */
@media (min-width: 1280px) {
  .nav {
    height: 84px;
  }

  .nav__inner {
    height: 84px;
  }

  .nav__links {
    gap: 12px;
    padding-left: 52px;
  }

  .nav__menu-btn,
  .nav__link {
    font-size: 16px;
    padding: 32px 8px;
  }

  .hero__heading {
    font-size: 72px;
    letter-spacing: -3.6px;
  }

  .hero__eyebrow {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .features__heading {
    font-size: 40px;
  }

  .cases__section-heading {
    font-size: 48px;
    margin-bottom: 56px;
  }

  .case-card {
    gap: 64px;
    padding: 56px;
    min-height: 520px;
  }

  .case-card__heading {
    font-size: 36px;
  }

  .case-card__stat-number {
    font-size: 44px;
  }

  .case-card__media {
    min-height: 400px;
  }

  .gallery__feature-title {
    font-size: 56px;
    letter-spacing: -2.8px;
  }

  .pricing__heading {
    font-size: 48px;
  }

  .pricing__price {
    font-size: 48px;
    letter-spacing: -2px;
  }

  .sticky-bar__heading {
    font-size: 32px;
    letter-spacing: -1.28px;
  }

  .sticky-bar__sub {
    font-size: 18px;
  }
}
