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

body {
  font-family: 'Outfit', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  zoom: 0.67;
}

/* Navbar */
.navbar {
  background: transparent;
  width: 100%;
  position: relative;
  z-index: 10;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  max-width: 1581px;
  margin: 0 auto;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo-img {
  width: 201px;
  height: 51px;
  object-fit: contain;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 400;
  font-size: 20px;
  color: #FFFFFF;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #FF4C2B;
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: #FF4C2B;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: #FF4C2B;
}

.nav-link.active::after {
  width: 100%;
}

.nav-link-dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-plus-icon {
  width: 24px;
  height: 24px;
}

.nav-btn-signup {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: #FF4C2B;
  border-radius: 444px;
  font-weight: 400;
  font-size: 20px;
  color: #FFFFFF;
  text-decoration: none;
  white-space: nowrap;
}

.nav-btn-signup:hover {
  opacity: 0.9;
}

/* Hero Section */
.hero-section {
  background: #1A1A2E;
  padding: 0 64px 112px;
  border-radius: 0 0 50px 50px;
  box-shadow: 0px 12px 50px rgba(26, 26, 46, 0.5);
  position: relative;
}

/* Rolls Royce starfield canvas */
.hero-stars-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transform: translateZ(0);
}

/* Mouse comet trail canvas */
.hero-trail-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  will-change: transform;
  transform: translateZ(0);
}

/* Orange glow blob — animated pulse */
@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.12); }
}

.hero-glow {
  position: absolute;
  top: -80px;
  left: 35%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(255,76,43,0.22) 0%, rgba(254,134,4,0.1) 45%, transparent 70%);
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1581px;
  margin: 0 auto;
  padding-top: 112px;
  position: relative;
  z-index: 1;
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 8px;
}

.hero-titles {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-tag {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: #FF4C2B;
}

.hero-heading {
  font-weight: 800;
  font-size: 56px;
  line-height: 1.2;
  color: #FFFFFF;
}

.hero-description {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: #FFFFFF;
  text-align: justify;
}

.hero-description strong {
  font-weight: 600;
}

.hero-description .strikethrough {
  text-decoration: line-through;
  color: #888888;
  font-weight: 300;
}


.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 8px;
}

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

.hero-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: #FF4C2B;
  border-radius: 444px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: #FFFFFF;
  text-decoration: none;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s ease;
  cursor: pointer;
}
.hero-btn-primary:hover {
  transform: scale(1.08);
  box-shadow: 0 0 32px rgba(255,76,43,0.55), 0 8px 24px rgba(255,76,43,0.35);
}

.hero-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border: 2px solid #FF4C2B;
  border-radius: 444px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: #FF4C2B;
  text-decoration: none;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
  cursor: pointer;
}
.hero-btn-secondary:hover {
  transform: scale(1.08);
  background: rgba(255,76,43,0.08);
  box-shadow: 0 0 28px rgba(255,76,43,0.3), 0 8px 20px rgba(255,76,43,0.15);
}

.hero-disclaimer {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: #CCCCCC;
  padding-left: 4px;
}

/* Hero Trust Badges */
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 8px;
}

.hero-trust-logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: nowrap;
  opacity: 0.9;
  height: 62px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.trust-rating {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: #CCCCCC;
}

.trust-logo-img {
  object-fit: contain;
}

.trust-divider {
  width: 1px;
  height: 37px;
  background: rgba(255, 255, 255, 0.3);
}

.trust-stars {
  display: flex;
  gap: 3px;
}

.star-icon {
  width: 10px;
  height: 10px;
}

.trust-loved {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #CCCCCC;
}

/* Hero Right - Video */
.hero-right {
  flex: 1.5;
  position: relative;
  z-index: 1;
}

/* Video Lightbox */
.video-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.video-lightbox.active {
  display: flex;
}

.video-lightbox-inner {
  position: relative;
  width: 80vw;
  max-width: 1100px;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.video-lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  z-index: 10;
}

.hero-video {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 4px 15px rgba(102, 102, 102, 0.35);
  background: #FFFFFF;
  cursor: pointer;
}

.hero-video-img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
}

.hero-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
}

/* Hero Badge */
.hero-badge {
  position: absolute;
  top: 120px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1A1A2E;
  padding: 12px;
  border-radius: 444px 0 0 444px;
  z-index: 2;
  z-index: 10;
}

.badge-piggy {
  width: 64px;
  height: 64px;
}

.badge-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.5;
}

.badge-amount {
  font-weight: 500;
  font-size: 20px;
}

.badge-sub {
  font-weight: 300;
  font-size: 14px;
}

/* Case Study Slider Section */
/* Proof Strip Section */
.proof-section {
  background: #F4F4F4;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.proof-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 0 64px 36px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.proof-heading {
  font-size: 48px;
  font-weight: 700;
  color: #111111;
  line-height: 1.2;
}

.proof-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-stars {
  color: #FF4C2B;
  font-size: 20px;
  letter-spacing: 2px;
}

.proof-rating-text {
  font-size: 15px;
  color: #666;
  font-weight: 400;
}

.proof-ticker-wrap {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  padding-bottom: 48px;
}

.proof-ticker {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: proofScroll 30s linear infinite;
}

.proof-ticker:hover {
  animation-play-state: paused;
}

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

.proof-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px 24px;
  flex-shrink: 0;
  min-width: 360px;
  max-width: 420px;
  position: relative;
}

.proof-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255,107,53,0.4);
}

.proof-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.proof-quote {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.proof-author {
  font-size: 12px;
  font-weight: 600;
  color: #FF4C2B;
  white-space: nowrap;
}

.proof-sep {
  color: rgba(255,107,53,0.3);
  font-size: 18px;
  flex-shrink: 0;
}

.casestudy-section {
  background: #F4F4F4;
  padding: 0 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}

.casestudy-header {
  text-align: center;
}

.casestudy-heading {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #000;
}

.casestudy-slider-wrap {
  width: 100%;
  max-width: 1216px;
  overflow: hidden;
}

.casestudy-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.casestudy-card {
  min-width: 100%;
  display: flex;
  gap: 64px;
  align-items: flex-start;
  justify-content: center;
  padding: 64px 0;
  height: 520px;
  overflow: hidden;
  box-sizing: border-box;
}

.casestudy-profile {
  width: 275px;
  height: 275px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}

.casestudy-avatar {
  width: 100%;
  height: 100%;
}

.casestudy-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.casestudy-frame {
  display: none;
}

.casestudy-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

.casestudy-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.casestudy-logo-wrap {
  background: #444;
  display: inline-flex;
  align-items: center;
  padding: 4px 8px 8px;
  border-radius: 4px;
  width: fit-content;
  overflow: hidden;
}

.casestudy-logo {
  height: 40px;
  object-fit: contain;
}

.casestudy-logo-round {
  height: 70px;
  border-radius: 16px;
}

.casestudy-quote {
  font-weight: 500;
  font-size: 28px;
  line-height: 1.3;
  color: #222;
  text-align: justify;
}

.casestudy-quote-large {
  font-size: 36px;
  line-height: 1.2;
}

.casestudy-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.casestudy-person {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 206px;
}

.casestudy-name {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.3;
  color: #000;
}

.casestudy-role {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #444;
}

.casestudy-divider-v {
  width: 1px;
  height: 49px;
  background: #CCC;
  flex-shrink: 0;
}

.casestudy-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 206px;
}

.casestudy-stat-value {
  font-weight: 600;
  font-size: 36px;
  line-height: 1.2;
  color: #FF4C2B;
}

.casestudy-stat-line {
  width: 100%;
  height: 1px;
  background: #CCC;
}

.casestudy-stat-label {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #000;
}

.casestudy-link {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: #FF4C2B;
  white-space: nowrap;
}

.casestudy-link-icon {
  display: flex;
  align-items: center;
  padding: 4px;
  background: #FF4C2B;
  border-radius: 4px;
}

.casestudy-arrow {
  width: 24px;
  height: 24px;
}

.casestudy-pagination {
  display: flex;
  gap: 8px;
  width: 504px;
  justify-content: center;
}

.casestudy-dot {
  flex: 1;
  height: 8px;
  border-radius: 444px;
  background: #CCC;
  cursor: pointer;
  transition: background 0.3s ease;
}

.casestudy-dot.active {
  background: #FF4C2B;
}


/* Portfolio Section */
.portfolio-section {
  background: #f4f4f4;
  padding: 112px 0;
  overflow: hidden;
}

.portfolio-header {
  padding: 0 64px;
  margin-bottom: 40px;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #000;
  margin: 0 0 8px 0;
  max-width: 439px;
}

.portfolio-heading-red {
  color: #FF4C2B;
}

.portfolio-subheading {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #000;
  margin: 0;
}

.portfolio-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.portfolio-tags {
  display: flex;
  gap: 8px;
  padding: 0 64px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: 1216px;
  margin: 0 auto;
  box-sizing: border-box;
}

.portfolio-tags::-webkit-scrollbar { display: none; }

.portfolio-tag {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  padding: 4px 12px;
  border-radius: 44px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  background: #dfdfdf;
  color: #1e1e1e;
  flex-shrink: 0;
}

.portfolio-tag.active {
  background: #FF4C2B;
  color: #fff;
}

.portfolio-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 0 64px;
  scrollbar-width: none;
}

.portfolio-carousel::-webkit-scrollbar { display: none; }

.portfolio-card {
  flex-shrink: 0;
  width: 494px;
  height: 624px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.portfolio-card--overlay {
  display: flex;
  align-items: flex-end;
}

.portfolio-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.65));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}

.portfolio-card-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: #FF4C2B;
  margin: 0;
}

.portfolio-card-meta {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  margin: 0;
}

.portfolio-card-meta strong {
  font-weight: 800;
}

/* How it Works Section */
.howitworks-section {
  background: #F4F4F4;
  padding: 64px 64px 64px;
  position: relative;
}
.howitworks-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(26,26,46,0.18));
  pointer-events: none;
}

/* Centered header */
.howitworks-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.howitworks-heading {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #FF4C2B;
  margin-bottom: 16px;
}

.howitworks-subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

/* Horizontal timeline */
.howitworks-timeline-wrap {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 860px;
  margin: 0 auto 56px;
  position: relative;
}

.howitworks-track {
  position: absolute;
  top: 28px;
  left: calc(12.5% + 0px);
  right: calc(12.5% + 0px);
  height: 2px;
  background: linear-gradient(to right, #FF4C2B, rgba(255,76,43,0.25));
  pointer-events: none;
}

.howitworks-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  flex: 1;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.howitworks-step-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.howitworks-step.active .howitworks-step-dot {
  background: #FF4C2B;
  border-color: #FF4C2B;
  box-shadow: 0 4px 18px rgba(255,76,43,0.28);
}

.howitworks-step.active .howitworks-step-dot .howitworks-icon-img {
  filter: brightness(0) invert(1);
}

.howitworks-icon-img {
  width: 24px;
  height: 24px;
  transition: filter 0.2s;
}

.howitworks-step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #FF4C2B;
  opacity: 0.6;
}

.howitworks-step.active .howitworks-step-num {
  opacity: 1;
}

.howitworks-step-text {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: #888;
  text-align: center;
  transition: color 0.2s;
}

.howitworks-step.active .howitworks-step-text {
  color: #111;
}

/* Media card */
.howitworks-cards {
  max-width: 860px;
  margin: 0 auto 48px;
}

.howitworks-card {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.howitworks-card.active {
  display: flex;
}

.howitworks-card-media {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
}

.howitworks-card-text {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: #555;
  text-align: center;
  max-width: 620px;
}

/* CTA */
.howitworks-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.howitworks-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: #FF4C2B;
  border-radius: 444px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.2s;
}

.howitworks-btn:hover { opacity: 0.88; }

.howitworks-disclaimer {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: #888;
}

/* Pricing Overhead Section */
.pricing-section {
  background: #F4F4F4;
  padding: 64px 64px;
  position: relative;
}
.pricing-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(26,26,46,0.18));
  pointer-events: none;
}

.pricing-container {
  display: flex;
  flex-direction: column;
  gap: 64px;
  max-width: 1216px;
  margin: 0 auto;
  width: 100%;
}

.pricing-top {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.pricing-title-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}

.pricing-subtitle {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: #FF4C2B;
}

.pricing-heading {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #000000;
  white-space: normal;
  text-align: center;
  max-width: none;
}

.pricing-content-row {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.pricing-image-col {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mascot-badge-img {
  width: 100%;
  max-width: 593px;
  height: auto;
}

.pricing-text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pricing-description {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-body-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #000000;
  text-align: justify;
}

.pricing-highlight-text {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: #FF4C2B;
}

.pricing-card {
  background: #F9F9F9;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.pricing-card-header {
  display: flex;
  align-items: center;
  gap: 24px;
}

.pricing-card-icon {
  width: 56px;
  height: 56px;
  background: #FF4C2B;
  border-radius: 444px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
}

.pricing-icon-img {
  width: 100%;
  height: 100%;
}

.pricing-card-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  color: #000000;
}

.pricing-card-body {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #000000;
  text-align: justify;
}

/* Quote + Stats Row */
.pricing-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.pricing-quote-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 605px;
  flex-shrink: 0;
}

.pricing-quote {
  font-weight: 600;
  font-size: 36px;
  line-height: 1.2;
  color: #000000;
  text-align: justify;
}

.quote-highlight {
  color: #FF4C2B;
}

.pricing-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-avatar {
  width: 75px;
  height: 75px;
  border-radius: 444px;
  object-fit: cover;
}

.profile-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.profile-name {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: #000000;
}

.profile-role {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #444444;
}

.pricing-stats-col {
  flex: 1;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 682px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 64px;
  text-align: center;
  width: 317px;
}

.stat-divider {
  width: 1px;
  height: 112px;
  background: #E0E0E0;
}

.stat-value {
  font-weight: 600;
  font-size: 36px;
  line-height: 1.2;
  color: #114D49;
}

.stat-label {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #444444;
}

/* We're Not Cheap Section — now empty, kept for any future use */
.notcheap-section {
  display: none;
}

/* CTA banner — always-on starfield */
.cta-banner-stars-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  border-radius: 16px;
  will-change: transform;
  transform: translateZ(0);
}

/* CTA banner — comet trail on mousemove */
.cta-banner-trail-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  border-radius: 16px;
  will-change: transform;
  transform: translateZ(0);
}

/* CTA stars canvas — explosion particles on hover */
.cta-stars-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  will-change: transform;
  transform: translateZ(0);
}

/* CTA Banner — entire card is the link */
.cta-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
  background: #1A1A2E;
  border-radius: 11px;
  padding: 14px 22px;
  max-width: 851px;
  margin: 0 auto 32px;
  width: 100%;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;

  /* 5. Pulsing border glow */
  border: 2px solid rgba(255, 76, 43, 0);
  animation: ctaBorderPulse 3s ease-in-out infinite;

  /* 1. Hover lift base */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* 1. Hover lift + deeper shadow */
.cta-banner:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(26, 26, 46, 0.4);
  border-color: rgba(255, 76, 43, 0.6);
  animation: none;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 76, 43, 0.15) 40%,
    rgba(255, 140, 60, 0.25) 50%,
    rgba(255, 76, 43, 0.15) 60%,
    transparent 80%
  );
  transform: translateX(-120%) skewX(-20deg);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
}
.cta-banner:hover::before {
  animation: plan-shockwave 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* 5. Pulsing border glow keyframe */
@keyframes ctaBorderPulse {
  0%, 100% { border-color: rgba(255, 76, 43, 0);    box-shadow: 0 0 0px rgba(255,76,43,0); }
  50%       { border-color: rgba(255, 76, 43, 0.45); box-shadow: 0 0 24px rgba(255,76,43,0.2); }
}

/* 2. Shimmer sweep on hover */
.cta-shimmer {
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.07) 50%,
    rgba(255,255,255,0) 100%
  );
  pointer-events: none;
  transition: none;
}
.cta-banner:hover .cta-shimmer {
  animation: ctaShimmer 0.6s ease forwards;
}
@keyframes ctaShimmer {
  0%   { left: -75%; }
  100% { left: 125%; }
}


/* Mascot swap container */
.cta-mascot-wrap {
  position: relative;
  width: 98px;
  height: 147px;
  flex-shrink: 0;
  overflow: visible;
}

/* Static mascot — visible at rest, fades out on hover */
.cta-mascot {
  width: 98px;
  height: 147px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.cta-banner:hover .cta-mascot {
  opacity: 0;
}

/* Running GIF — overlays static mascot inside .cta-mascot-wrap */
.cta-running-gif {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}
.cta-banner:hover .cta-running-gif {
  opacity: 1;
  animation: ctaRun 3s linear 0s 1 forwards;
}
@keyframes ctaRun {
  0%   { transform: translateX(0); }
  100% { transform: translateX(1500px); }
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 794px;
  position: relative;
  z-index: 2;
}

.cta-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #FFFFFF;
}

.cta-heading {
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  max-width: 681px;
  color: #FFFFFF;
}

.cta-body {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #FFFFFF;
}

/* Why Teams Switch Section */
.switch-section {
  background: #1A1A2E;
  padding: 64px 64px 64px;
  position: relative;
  border-radius: 0 0 50px 50px;
  box-shadow: 0px 12px 50px rgba(26, 26, 46, 0.5);
}

.switch-stars-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transform: translateZ(0);
}

.switch-trail-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  will-change: transform;
  transform: translateZ(0);
}

.switch-section .switch-container {
  position: relative;
  z-index: 1;
}

.switch-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  max-width: 1312px;
  margin: 0 auto;
}

.switch-cols {
  display: flex;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.switch-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.switch-heading {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #FFFFFF;
  text-align: center;
}

.switch-subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #FFFFFF;
}

.switch-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.switch-body-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #EEEEEE;
}

.switch-bold-text {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: #FFFFFF;
}

.switch-list {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.switch-list-line {
  width: 10px;
  flex-shrink: 0;
}

.orange-line {
  width: 10px;
  height: 100%;
}

.switch-list-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.switch-list-item {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #EEEEEE;
}

.text-orange-bold {
  font-weight: 600;
  color: #FF4C2B;
}

.switch-bottom-quote {
  display: flex;
  align-items: center;
  gap: 24px;
}

.dashed-line {
  flex: 1;
  height: 1px;
  border-top: 1px dashed rgba(255, 255, 255, 0.3);
}

.switch-quote-text {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: #FFFFFF;
  white-space: nowrap;
}

.switch-right {
  flex: 1;
  background: #1A1A2E;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
}


/* Trusted By Section */
.trusted-section {
  padding: 64px 64px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  background: #F4F4F4;
}

.trusted-section .senja-embed {
  width: 100%;
  margin-top: 24px;
}

/* "Trusted by teams at" label */
.trusted-label {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  position: relative;
  text-align: center;
}
.trusted-label::before,
.trusted-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: #ddd;
}
.trusted-label::before { right: calc(100% + 12px); }
.trusted-label::after  { left:  calc(100% + 12px); }

/* Stat line */
.trusted-stat {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: #666;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.trusted-stat.visible {
  opacity: 1;
  transform: translateY(0);
}
.trusted-stat strong {
  color: #1A1A2E;
  font-weight: 700;
}

/* Marquee wrapper — clips the scrolling track */
.trusted-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  /* Edge fade using mask */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* The scrolling track — holds two sets of logos */
.trusted-marquee-track {
  display: flex;
  align-items: center;
  gap: 96px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.trusted-marquee-track:hover {
  animation-play-state: paused;
}

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

/* Individual logo: grayscale by default, colour on hover */
.trusted-logo {
  /* Height-only: every logo is exactly 30px tall, width scales naturally */
  height: 30px;
  width: auto;
  flex-shrink: 0;
  object-fit: unset;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.35s ease, transform 0.35s ease, opacity 0.5s ease;
}
/* Staggered fade-up only on the real (non-duplicate) logos */
.trusted-logo:not([aria-hidden]) {
  opacity: 0;
  transform: translateY(14px);
  transition: filter 0.35s ease, transform 0.5s ease, opacity 0.5s ease;
}
.trusted-logo:not([aria-hidden]).visible {
  opacity: 1;
  transform: translateY(0);
}
/* Per-logo height overrides matched by src so both original + aria-hidden duplicate get same size */
.trusted-logo[src*="logo-forbes"]      { height: 24px !important; }
.trusted-logo[src*="logo-usatoday"]    { height: 22px !important; }
.trusted-logo[src*="logo-buzzfeed"]    { height: 20px !important; }
.trusted-logo[src*="logo-business"]    { height: 22px !important; }
.trusted-logo[src*="logo-monday"]      { height: 60px !important; }
.trusted-logo[src*="Mashable"]         { height: 92px !important; }
.trusted-logo[src*="ranktracker"]      { height: 46px !important; }
.trusted-logo[src*="logo-entrepreneur"]{ height: 36px !important; }
.trusted-logo[src*="designrush"]       { height: 28px !important; }
.trusted-logo[src*="outranking"]       { height: 30px !important; }
.trusted-logo[src*="hive"]             { height: 24px !important; }

.trusted-logo:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.08);
}

/* Comparison Section */
.comparison-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 64px 64px 64px;
  background: #F4F4F4;
}

.comparison-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 1216px;
  max-width: 100%;
}

/* Heading */
.comparison-heading {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  text-align: center;
  color: #000000;
}

.comparison-heading .highlight {
  color: #FF4C2B;
}

/* Full-width CTA row inside comparison table */
.table-cta-row {
  width: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 0 0 16px 16px; /* match table bottom corners */
}
.table-cta-row .cta-banner {
  border-radius: 0 0 16px 16px;
  max-width: 100%;
  margin: 0;
  width: 100%;
}

/* Table */
.comparison-table {
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}


/* Table Row */
.table-row {
  display: flex;
  width: 100%;
  align-items: stretch;
}

/* Col wrap — holds the two data columns side by side */
.cell-cols-wrap {
  flex: 1;
  display: flex;
  align-items: stretch;
  position: relative;
}

/* Continuous divider between Graphically and competitor columns.
   Lives on cell-cols-wrap so it never overlaps the orange You Save row. */
.cell-cols-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 76, 43, 0.5);
  pointer-events: none;
  z-index: 5;
}

/* Cells - Base */
.cell {
  display: flex;
  align-items: center;
  min-height: 91px;
}

.cell-feature {
  width: 350px;
  flex-shrink: 0;
  padding: 32px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: #0D0D0D;
}

.cell-graphically {
  flex: 1;
  justify-content: center;
  padding: 8px 32px;
  border-left: 2px solid rgba(255, 76, 43, 0.5);
}

.cell-competitor {
  flex: 1;
  justify-content: center;
  padding: 8px 24px;
}

/* Header Row */
.table-header {
  border-radius: 8px 8px 0 0;
}

.table-header .cell {
  min-height: 103px;
}

.table-header .cell-cols-wrap {
  min-height: 103px;
}

.header-feature {
  background: rgba(240, 232, 231, 0.5);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  color: #000000;
}

.header-graphically {
  background: rgba(255, 219, 213, 0.8);
  border-top: 2px solid rgba(255, 76, 43, 0.5);
  justify-content: center;
  padding: 24px;
}

.header-competitor {
  background: #FAFAFA;
  justify-content: center;
  padding: 24px;
}

.logo-graphically {
  width: 224px;
  height: 55px;
  object-fit: contain;
}

.competitor-name {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.3;
  color: #666666;
}

/* Background Variants */
.bg-white {
  background: #FFFFFF;
}

.bg-beige {
  background: rgba(240, 232, 231, 0.5);
}

.bg-fafafa {
  background: #FAFAFA;
}

.bg-graphically-light {
  background: rgba(255, 237, 234, 0.5);
}

.bg-graphically-medium {
  background: rgba(255, 219, 213, 0.5);
}

/* Cell Content with Icon */
.cell-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Graphically Values */
.value-graphically {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  color: #7A4A3D;
}

.price-graphically {
  font-weight: 600;
  font-size: 28px;
  line-height: 1.4;
  text-align: center;
  color: #7A4A3D;
}

/* Competitor Values */
.value-competitor {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  color: #444444;
}

/* "You Save" Row */
.row-save .cell-feature,
.row-save .cell-save-value {
  background: #FF4C2B;
}

.row-save .cell-feature {
  min-height: 98px;
  align-items: center;
}

.row-save .cell-save-value {
  min-height: 98px;
  flex: 1;
}

.save-feature {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  color: #FFFFFF;
}

.cell-save-value {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 24px;
}

.save-text {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  text-align: center;
  color: #FFFFFF;
}

/* Bottom border on last Graphically cell */
.border-bottom {
  border-bottom: 2px solid rgba(255, 76, 43, 0.5);
}

/* ── Comparison enhancements ─────────────────────────────────────────── */

/* 2. Competitor column — slightly muted */
.cell-competitor {
  opacity: 0.72;
}
.header-competitor {
  opacity: 1;
}

/* 3. % savings badge next to $449 */
.savings-badge {
  display: inline-block;
  background: #FF4C2B;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 20px;
  margin-left: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* 4. Row entrance animation */
.comparison-row-animate {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.comparison-row-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 6. "You Save" banner glow/pulse */
.row-save .cell-feature,
.row-save .cell-save-value {
  animation: savePulse 2s ease-in-out infinite;
}
@keyframes savePulse {
  0%, 100% { background: #FF4C2B; box-shadow: inset 0 0 0px rgba(255,255,255,0); }
  50%       { background: #ff7a5c; box-shadow: inset 0 0 30px rgba(255,255,255,0.2); }
}

/* =============================================
   One Price. Everything Included. (Plans Section)
   ============================================= */

.plans-stars-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transform: translateZ(0);
}

.plans-trail-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  will-change: transform;
  transform: translateZ(0);
}

.plans-section .plans-content,
.plans-section .plans-bg-overlay {
  position: relative;
  z-index: auto;
}

.plans-section {
  position: relative;
  background: #1A1A2E;
  padding: 64px 64px 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0 0 50px 50px;
  box-shadow: 0px 12px 50px rgba(26, 26, 46, 0.5);
}

.plans-bg-overlay {
  position: absolute;
  inset: 0;
  background: #1A1A2E;
  pointer-events: none;
}

.plans-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1216px;
}

/* Heading */
.plans-heading-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.plans-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #FFFFFF;
}

.plans-heading-highlight {
  color: #FF4C2B;
}

.plans-subheading {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #FFFFFF;
}

/* Cards container */
.plans-cards {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

/* Card wrapper (holds card + mascot) */
.plan-card-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 480px;
  height: 821px;
  text-decoration: none;
  cursor: pointer;
  cursor: pointer;
}

.plan-mascot {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 243px;
  height: 110px;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
}

/* Video always in DOM and playing — toggled via opacity */
.plan-mascot-gif {
  display: block;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.plan-mascot-static {
  display: block;
  opacity: 1;
  transition: opacity 0.25s ease;
}

/* Hover: lift card + swap mascot to video */
.plan-card-wrapper:hover .plan-card {
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}

/* Diagonal orange shockwave on hover */
@keyframes plan-shockwave {
  0%   { transform: translateX(-120%) skewX(-20deg); opacity: 0.9; }
  60%  { opacity: 0.6; }
  100% { transform: translateX(160%) skewX(-20deg); opacity: 0; }
}
.plan-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 76, 43, 0.18) 40%,
    rgba(255, 140, 60, 0.28) 50%,
    rgba(255, 76, 43, 0.18) 60%,
    transparent 80%
  );
  transform: translateX(-120%) skewX(-20deg);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
}
.plan-card-wrapper:hover .plan-card::before {
  animation: plan-shockwave 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.plan-card-wrapper:hover .plan-mascot {
  transform: translateX(-50%) translateY(-10px);
}

.plan-card-wrapper:hover .plan-mascot-static { opacity: 0; }
.plan-card-wrapper:hover .plan-mascot-gif    { opacity: 1; }

/* Hover sign up text */
.plan-hover-cta {
  font-size: 26px;
  font-weight: 600;
  color: #FF4C2B;
  text-decoration: none;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: opacity 0.2s ease;
  text-align: center;
  padding: 4px 0 0;
}
.plan-card-wrapper:hover .plan-hover-cta { opacity: 1; }

/* Base card */
.plan-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 16px;
  width: 100%;
  height: 740px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 64px 32px 32px 32px;
  overflow: hidden;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.28s ease;
  z-index: 1;
}

.plan-card-premium {
  border: 3px solid #FF4C2B;
}

/* Most Popular banner */
.plan-most-popular {
  position: absolute;
  top: 0;
  right: -20px;
  width: 316px;
  background: #FF4C2B;
  padding: 2px 12px;
  transform: rotate(25deg);
  transform-origin: top right;
  text-align: center;
  z-index: 3;
}

.plan-most-popular span {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: #FFFFFF;
  white-space: nowrap;
}

/* Card top content */
.plan-card-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.plan-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: normal;
  color: #000000;
  text-align: center;
}

.plan-name-premium {
  color: #E57904;
}

.plan-price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.plan-price {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #000000;
}

.plan-period {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #000000;
}

/* Feature list */
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: 0;
}

.plan-feature-item {
  display: flex;
  gap: 4px;
  align-items: center;
}

.plan-feature-item-top {
  align-items: flex-start;
}

.plan-check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-feature-item span,
.plan-feature-content span {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #222222;
}

.plan-feature-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-info-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.15s;
}
.plan-tip-wrap {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  cursor: pointer;
}
.plan-tip-wrap:hover .plan-info-icon { opacity: 1; }

/* Global tooltip popup — positioned via JS */
.plan-tip-popup {
  position: fixed;
  z-index: 9999;
  display: none;
  background: #FFFFFF;
  color: #1A1A2E;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  max-width: 200px;
  pointer-events: none;
  white-space: normal;
  border-left: 3px solid #FF4C2B;
}

/* Competitor note (purple) */
.plan-competitor-note {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: #FF4C2B;
  text-align: center;
  width: 320px;
}


/* Bottom guarantees */
.plans-guarantees {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.plans-guarantee-item {
  display: flex;
  gap: 8px;
  align-items: center;
}

.guarantee-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.guarantee-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  color: #FFFFFF;
  white-space: nowrap;
}

/* =============================================
   FAQ Section
   ============================================= */

.faq-section {
  background: #F4F4F4;
  padding: 64px 92px 48px;
  position: relative;
}

.faq-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #FF4C2B;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0px 2px 4px 0px rgba(68, 68, 68, 0.15);
  overflow: hidden;
}

.faq-question {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 20px;
  width: 100%;
  background: #FFFFFF;
  border: none;
  cursor: pointer;
  text-align: left;
  border-radius: 8px;
}

.faq-question span {
  flex: 1;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: normal;
  color: #000000;
}

.faq-chevron {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  transform: rotate(0deg);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  color: #444444;
  transition: max-height 0.25s ease, padding 0.25s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 20px 20px;
}

/* =============================================
   CTA Banner Section
   ============================================= */

.cta-section {
  background: #F4F4F4;
  padding: 48px 64px 112px;
  position: relative;
}

.cta-section > .cta-card {
  max-width: 1216px;
  margin: 0 auto;
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid rgba(255, 76, 43, 0);
  animation: ctaBorderPulse 3s ease-in-out infinite;
}

.cta-section > .cta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(26, 26, 46, 0.5);
  border-color: rgba(255, 76, 43, 0.6);
  animation: none;
}

.cta-card-stars-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  border-radius: 32px;
  will-change: transform;
  transform: translateZ(0);
}

.cta-card-trail-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  border-radius: 32px;
  will-change: transform;
  transform: translateZ(0);
}

.cta-card {
  position: relative;
  background: #1A1A2E;
  border-radius: 32px;
  padding: 64px;
  display: flex;
  gap: 64px;
  align-items: center;
  overflow: hidden;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 76, 43, 0.15) 40%,
    rgba(255, 140, 60, 0.25) 50%,
    rgba(255, 76, 43, 0.15) 60%,
    transparent 80%
  );
  transform: translateX(-120%) skewX(-20deg);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
}
.cta-card:hover::before {
  animation: plan-shockwave 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.cta-ellipse {
  position: absolute;
  width: 647px;
  height: 647px;
  right: -120px;
  top: 50%;
  transform: translateY(-50%) translateY(13px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,76,43,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-person-img {
  position: absolute;
  right: 0;
  top: -28px;
  width: 532px;
  height: 480px;
  object-fit: cover;
  pointer-events: none;
}

.cta-card-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 637px;
  flex-shrink: 0;
}

.cta-card-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cta-card-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 12px;
}

.cta-card-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #FFFFFF;
}

.cta-card-sub {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #FFFFFF;
  white-space: nowrap;
}

.cta-card-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 0 12px;
}

.cta-badge-item {
  display: flex;
  gap: 8px;
  align-items: center;
}

.cta-badge-item span {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #FFFFFF;
  white-space: nowrap;
}

.cta-badge-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cta-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border-radius: 444px;
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  width: fit-content;
}

.cta-card-btn span:first-child {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: #FF4C2B;
  white-space: nowrap;
}

.cta-card-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FF4C2B;
  border-radius: 444px;
  padding: 4px;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.cta-arrow-img {
  width: 24px;
  height: 24px;
}

/* Trust logos inside CTA */
.cta-trust-logos {
  display: flex;
  gap: 0;
  align-items: center;
  padding: 0 10px;
  flex-wrap: wrap;
  row-gap: 4px;
}

.cta-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cta-trust-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #CCCCCC;
  white-space: nowrap;
}

.cta-trust-logo {
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.cta-trust-divider {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.3);
  margin: 0 16px;
  flex-shrink: 0;
}

.cta-trust-stars {
  display: flex;
  gap: 2px;
}

.cta-star {
  width: 8px;
  height: 8px;
}

.cta-trusted-since {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #CCCCCC;
  white-space: nowrap;
  width: 100%;
  margin-top: 2px;
  padding: 0 10px;
}

/* =============================================
   Footer
   ============================================= */

.footer {
  background: #FFFFFF;
  padding: 47px 41px 40px;
  position: relative;
  overflow: visible; /* let the cyclist peek above the footer edge */
}

/* Cycling alien on the footer top edge */
@keyframes cycleAcross {
  from { left: -140px; }
  to   { left: 105%; }
}

.footer-cyclist {
  position: absolute;
  top: 0;
  left: -140px;
  height: 120px;
  width: auto;
  transform: translateY(-100%); /* wheels touch the footer top edge, body above in the shadow strip */
  pointer-events: none;
  z-index: 20;
  animation: cycleAcross 16s linear infinite;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 1216px;
  margin: 0 auto;
}

/* Left col */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 300px;
  flex-shrink: 0;
  padding-left: 33px;
}

.footer-logo-wrap {
  position: relative;
  width: 233px;
  height: 80px;
  flex-shrink: 0;
}

.footer-mascot-icon {
  position: absolute;
  top: 0;
  left: -33px;
  width: 101px;
  height: 80px;
  object-fit: cover;
}

.footer-logo-orange {
  position: absolute;
  top: 28px;
  left: 0;
  width: 233px;
  height: 57px;
  object-fit: contain;
}

.footer-copyright {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #000000;
}

.footer-tos {
  color: #000000;
  text-decoration: none;
}

.footer-socials {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-social-link {
  display: flex;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
}

.footer-clutch {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-clutch-logo {
  width: 100px;
  height: 28px;
  object-fit: contain;
  object-position: left;
  filter: brightness(0);
}

.footer-clutch-stars {
  display: flex;
  gap: 5px;
}

.footer-star {
  width: 10px;
  height: 10px;
}

/* Nav columns */
.footer-nav {
  display: flex;
  gap: 20px;
  flex: 1;
  padding-top: 40px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 191px;
  flex-shrink: 0;
}

.footer-nav-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: normal;
  color: #000000;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-nav-list a {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: normal;
  color: #000000;
  text-decoration: none;
}

.footer-payments {
  display: flex;
  gap: 33px;
  align-items: center;
  margin-top: -20px;
}

.footer-payment-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Badges */
.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 23px;
  padding-top: 40px;
  flex-shrink: 0;
}

.footer-badge {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

/* ── Portfolio v2 ─────────────────────────────────────────────────────────── */
.pf2-section {
  background: #f4f4f4;
  padding: 112px 64px 48px;
  position: relative;
}
.pf2-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(26,26,46,0.25), transparent);
  pointer-events: none;
}
.pf2-header { margin-bottom: 40px; text-align: center; }
.pf2-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #1A1A2E;
  margin-bottom: 12px;
}
.pf2-red { color: #FF4C2B; }
.pf2-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: #666;
}

/* Sticky filter bar */
.pf2-filter-sticky {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #f4f4f4;
  padding: 16px 0 20px;
  margin-bottom: 8px;
}
.pf2-filters {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  justify-content: center;
}
.pf2-filters::-webkit-scrollbar { display: none; }
.pf2-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1.5px solid #ddd;
  background: #fff;
  color: #555;
  cursor: pointer;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
  white-space: nowrap;
}
.pf2-tag:hover {
  border-color: var(--cc, #FF4C2B);
  color: var(--cc, #FF4C2B);
}
.pf2-tag.pf2-active {
  background: var(--cc, #FF4C2B);
  border-color: var(--cc, #FF4C2B);
  color: #fff;
}

/* Grid — single horizontal row */
.pf2-grid {
  display: flex;
  flex-direction: row;
  gap: 16px;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  padding-bottom: 8px;
  transition: opacity 0.25s;
}
.pf2-grid::-webkit-scrollbar { display: none; }
.pf2-grid.pf2-fading { opacity: 0; }

/* Card */
.pf2-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #F4F4F4;
  transition: border-color 0.22s, transform 0.22s;
  background: #1A1A2E;
  flex-shrink: 0;
  width: 494px;
  height: 624px;
}
.pf2-item:hover {
  border-color: var(--cc, #FF4C2B);
  transform: translateY(-5px);
  z-index: 2;
}
.pf2-item.tall { width: 494px; height: 624px; }
.pf2-item img,
.pf2-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s, opacity 0.35s;
}
.pf2-item:hover img,
.pf2-item:hover video { transform: scale(1.06); }

/* Shimmer loading skeleton */
@keyframes pf2-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.pf2-item.pf2-loading {
  background: linear-gradient(90deg, #1A1A2E 25%, #262645 50%, #1A1A2E 75%);
  background-size: 200% 100%;
  animation: pf2-shimmer 1.5s infinite linear;
}
.pf2-item.pf2-loading img,
.pf2-item.pf2-loading video {
  opacity: 0;
}

/* Portfolio section hidden until JS kicks in */
.pf2-grid.pf2-pending {
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pf2-grid.pf2-pending::before {
  content: '';
  width: 72px; height: 72px;
  background: url('assets/favicon.webp') center / contain no-repeat;
  animation: pf2-favicon-pulse 1.1s ease-in-out infinite;
}
@keyframes pf2-favicon-pulse {
  0%, 100% { filter: grayscale(1) brightness(0.55); }
  50%       { filter: grayscale(0) brightness(1); }
}

/* Play badge on video poster cards */
.pf2-item img[data-video]::after { content: ''; }
.pf2-item:has(img[data-video]) .pf2-overlay::before {
  content: '▶';
  display: block;
  font-size: 28px;
  margin-bottom: 6px;
  opacity: 0.9;
}

/* 24hr badge — bottom-left, always visible */
.pf2-24badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(26,26,46,0.75);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  letter-spacing: 0.3px;
  z-index: 4;
  backdrop-filter: blur(4px);
}

/* Featured badge — top-left */
.pf2-feat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #FFD600;
  color: #1A1A2E;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.4px;
  z-index: 4;
  text-transform: uppercase;
}

/* Hover overlay */
.pf2-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.22s;
  z-index: 3;
}
.pf2-item:hover .pf2-overlay { opacity: 1; }
.pf2-ov-cat {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--cc, #FF4C2B);
  background: rgba(255,255,255,0.12);
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.pf2-ov-view {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--cc, #FF4C2B);
  padding: 9px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  pointer-events: none;
}

/* Load more */
.pf2-footer {
  text-align: right;
  margin-top: 24px;
}
.pf2-load-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #FF4C2B;
  background: transparent;
  border: 2px solid #FF4C2B;
  padding: 13px 44px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.pf2-load-btn:hover { background: #FF4C2B; color: #fff; }
.pf2-load-btn:disabled { opacity: 0.4; pointer-events: none; }

/* Lightbox */
.pf2-lb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.pf2-lb.open { opacity: 1; pointer-events: all; }
.pf2-lb-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  cursor: pointer;
}
.pf2-lb-media {
  position: relative;
  z-index: 1;
  transform: scale(0.88);
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
.pf2-lb.open .pf2-lb-media { transform: scale(1); }
.pf2-lb-img {
  display: block;
  max-width: 88vw;
  max-height: 88vh;
  border-radius: 14px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.55);
  object-fit: contain;
}
.pf2-lb-x {
  position: absolute;
  top: 24px;
  right: 32px;
  z-index: 2;
  background: rgba(255,255,255,0.14);
  border: none;
  color: #fff;
  font-size: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.pf2-lb-x:hover { background: rgba(255,255,255,0.28); }

/* Portfolio card skeleton loading state */
@keyframes portfolio-skeleton {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.portfolio-card-loading {
  background: linear-gradient(90deg, #e8e8e8 25%, #f0f0f0 50%, #e8e8e8 75%);
  background-size: 200% 100%;
  animation: portfolio-skeleton 1.5s infinite;
}

.portfolio-card-loading img {
  opacity: 0;
}

/* =============================================
   RESPONSIVE — Mobile & Tablet (≤ 768px)
   body has zoom: 0.67, so CSS px values appear
   at 67% of their written size on screen.
   e.g. 24px CSS → ~16px visual.
   ============================================= */

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 8px;
  padding: 8px 13px;
  color: #FFFFFF;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

/* ── edits.io CTA Section ───────────────────────────────────────────────── */
.edits-cta-section {
  background: #F4F4F4;
  padding: 64px 64px 64px;
}

.edits-cta-card {
  max-width: 1216px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #1A1A2E;
  border-radius: 32px;
  padding: 56px 80px 80px;
  overflow: hidden;
  box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
  text-decoration: none;
  border: 2px solid rgba(255,76,43,0);
  animation: ctaBorderPulse 3s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.edits-cta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(26,26,46,0.5);
  border-color: rgba(255,76,43,0.6);
  animation: none;
}

/* Shockwave */
.edits-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,76,43,0.18) 50%,
    transparent 80%
  );
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}
.edits-cta-card:hover::before {
  animation: plan-shockwave 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Slide-up CTA text */
.edits-cta-goto {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  font-family: 'Outfit', sans-serif;
  font-size: 21px;
  font-weight: 600;
  color: #FF4C2B;
  white-space: nowrap;
  pointer-events: none;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
}
.edits-cta-card:hover .edits-cta-goto {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.edits-cta-ellipse {
  position: absolute;
  width: 647px;
  height: 647px;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,76,43,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.edits-cta-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  width: 100%;
  max-width: 900px;
}

.edits-cta-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.edits-cta-eyebrow {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.edits-cta-badge {
  display: inline-block;
  background: #FF4C2B;
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.edits-cta-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}
.edits-logo-edit { color: #FFFFFF; }
.edits-logo-dot  { color: #FF4C2B; }
.edits-logo-io   { color: #FFFFFF; }

.edits-cta-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.edits-cta-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0;
  white-space: nowrap;
}

.edits-cta-sub {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin: 0;
  white-space: nowrap;
}
.edits-cta-sub strong { color: #FFFFFF; }

.edits-cta-footer-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.edits-cta-btn-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FF4C2B;
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.edits-cta-card:hover .edits-cta-btn-inline { opacity: 0.9; }
.edits-cta-arrow { width: 16px; height: 16px; }

.edits-cta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.edits-chip {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 5px 13px;
}

@media (max-width: 768px) {

  /* ── Navbar ─────────────────────────────── */
  .nav-hamburger { display: block; }

  .navbar-container { padding: 18px 0; }

  .navbar-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1A1A2E;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 0;
    z-index: 100;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  }

  .navbar-links.nav-open { display: flex; }

  .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 18px;
  }

  .nav-btn-signup {
    margin-top: 12px;
    font-size: 18px;
    text-align: center;
  }

  /* ── Hero ───────────────────────────────── */
  .hero-section {
    padding: 0 24px 56px;
    border-radius: 0 0 30px 30px;
  }

  .hero-container {
    flex-direction: column;
    padding-top: 72px;
    gap: 36px;
  }

  .hero-left { gap: 32px; }

  .hero-heading { font-size: 42px; }
  .hero-description { font-size: 18px; }

  .hero-buttons { flex-direction: column; gap: 12px; }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    font-size: 18px;
    justify-content: center;
  }

  .hero-trust-logos {
    flex-wrap: wrap;
    height: auto;
    gap: 12px;
  }
  .trust-divider { display: none; }

  .hero-badge { top: 78px; }

  /* ── Trusted ────────────────────────────── */
  .trusted-section { padding: 36px 0; }

  /* ── Comparison ─────────────────────────── */
  .comparison-section { padding: 40px 16px; }
  .comparison-heading { font-size: 34px; }
  .comparison-container { gap: 24px; }

  .comparison-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* override overflow:hidden so scroll works;
       border-radius still clips visually via the
       outer box-shadow card boundary */
    overflow: auto;
  }

  .table-row { min-width: 480px; }

  .cell-feature {
    width: 120px;
    min-width: 120px;
    flex-shrink: 0;
    font-size: 13px;
    padding: 8px 10px;
  }

  .header-feature { font-size: 14px; padding: 8px 10px; }
  .logo-graphically { width: 110px; }
  .competitor-name { font-size: 14px; }
  .value-graphically,
  .value-competitor { font-size: 13px; }
  .price-graphically { font-size: 26px; }
  .check-icon { width: 16px; height: 16px; }
  .cell-graphically { padding: 6px 10px; }
  .cell-competitor  { padding: 6px 8px; }
  .cell { min-height: 60px; }

  /* ── Pricing ────────────────────────────── */
  .pricing-section { padding: 40px 24px; }
  .pricing-heading { font-size: 34px; }
  .pricing-content-row { flex-direction: column; gap: 32px; }
  .mascot-badge-img { max-width: 280px; }
  .pricing-card-title { font-size: 20px; }
  .pricing-card-body { font-size: 16px; }

  /* ── Switch ─────────────────────────────── */
  .switch-section {
    padding: 48px 24px;
    border-radius: 0 0 30px 30px;
  }
  .switch-cols { flex-direction: column; gap: 36px; }
  .switch-heading { font-size: 34px; }
  .switch-right { min-height: 450px; width: 100%; }
  .switch-list-item { font-size: 16px; }
  .switch-quote-text { font-size: 17px; white-space: normal; }

  /* ── Portfolio ──────────────────────────── */
  .pf2-section { padding: 64px 0 48px; }
  .pf2-header { padding: 0 24px; }
  .pf2-heading { font-size: 34px; }
  .pf2-filter-sticky { padding: 12px 0; }
  .pf2-filters {
    padding: 0 24px;
    justify-content: flex-start;
  }
  .pf2-grid { padding: 0 24px 8px; }
  .pf2-footer { padding: 16px 24px 0; }

  /* ── How it Works ───────────────────────── */
  .howitworks-section { padding: 48px 24px; }
  .howitworks-heading { font-size: 34px; }
  .howitworks-header { margin-bottom: 48px; }
  .howitworks-step-text { font-size: 13px; }

  /* ── Plans ──────────────────────────────── */
  .plans-section {
    padding: 48px 24px 56px;
    border-radius: 0 0 30px 30px;
  }
  .plans-heading { font-size: 34px; }
  .plans-subheading { font-size: 17px; }

  .plans-cards {
    flex-direction: column;
    width: 100%;
    gap: 56px;
  }

  .plan-card-wrapper {
    width: 100%;
    height: auto;
  }

  .plan-card {
    height: auto;
    padding: 96px 24px 32px;
  }

  .plan-competitor-note { width: 100%; }

  .plans-guarantees {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .guarantee-text { font-size: 18px; white-space: normal; }

  /* ── FAQ ────────────────────────────────── */
  .faq-section { padding: 48px 20px 32px; }
  .faq-heading { font-size: 34px; }
  .faq-question span { font-size: 16px; }
  .faq-answer { font-size: 16px; }

  /* ── CTA ────────────────────────────────── */
  .cta-section { padding: 32px 20px 56px; }

  .cta-card {
    flex-direction: column;
    padding: 40px 24px 32px;
    gap: 24px;
    align-items: flex-start;
  }

  .cta-person-img { display: none; }
  .cta-ellipse { display: none; }

  .cta-card-content {
    width: 100%;
    flex-shrink: unset;
  }

  .cta-card-heading { font-size: 34px; }
  .cta-card-sub { white-space: normal; font-size: 16px; }
  .cta-card-badges { flex-direction: column; gap: 10px; }
  .cta-badge-item span { white-space: normal; font-size: 16px; }

  .cta-trust-logos { flex-wrap: wrap; gap: 12px; row-gap: 8px; }
  .cta-trust-divider { display: none; }
  .cta-trusted-since { padding: 0; }

  /* ── edits.io CTA ───────────────────────── */
  .edits-cta-section { padding: 0 16px 48px; }
  .edits-cta-card { padding: 40px 24px 40px; flex-direction: column; }
.edits-cta-ellipse { display: none; }
  .edits-cta-content { width: 100%; }
  .edits-cta-heading { font-size: 22px; white-space: normal; }
  .edits-cta-sub { font-size: 15px; white-space: normal; }
  .edits-cta-sub { font-size: 15px; }
  .edits-cta-logo { font-size: 28px; }
  .edits-cta-footer-row { flex-direction: column; align-items: center; }

  /* ── Footer ─────────────────────────────── */
  .footer { padding: 60px 24px 32px; }

  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer-left {
    width: 100%;
    padding-left: 40px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 32px;
    padding-top: 0;
  }

  .footer-nav-col {
    width: calc(50% - 16px);
    min-width: 130px;
    gap: 20px;
  }

  .footer-badges {
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 0;
    gap: 16px;
  }

}
