/* 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: #1A1A2E;
  width: 100%;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 85px;
  max-width: 1440px;
  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;
}

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

.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: 10px 16px;
  background: #FF4C2B;
  border-radius: 8px;
  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: 112px 64px;
  border-radius: 0 0 50px 50px;
  box-shadow: 0px 12px 50px rgba(26, 26, 46, 0.5);
  position: relative;
  overflow: hidden;
}

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

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

/* 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;
  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: 150%;
  color: #FE8604;
}

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

.hero-description {
  font-weight: 300;
  font-size: 20px;
  line-height: 150%;
  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: 150%;
  color: #FFFFFF;
  text-decoration: none;
}

.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: 150%;
  color: #FF4C2B;
  text-decoration: none;
}

.hero-disclaimer {
  font-weight: 400;
  font-size: 13px;
  line-height: 150%;
  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: 150%;
  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: 150%;
  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: 24px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #186E68;
  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: 150%;
}

.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: #1A1A2E;
  padding: 48px 0 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: 32px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

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

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

.proof-rating-text {
  font-size: 15px;
  color: #8B8FA8;
  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: rgba(255,255,255,0.05);
  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;
  cursor: pointer;
  transition: border-color 0.2s;
}
.proof-item:hover {
  border-color: rgba(255,107,53,0.5);
}
.proof-item::after {
  content: 'Read Case Study \2192';
  position: absolute;
  inset: 0;
  background: rgba(20,20,40,0.88);
  color: #FF6B35;
  font-weight: 700;
  font-size: 15px;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.22s;
  display: grid;
  place-items: center;
  letter-spacing: 0.3px;
}
.proof-item:hover::after {
  opacity: 1;
}

.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: #C8CCED;
  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: #FF6B35;
  white-space: nowrap;
}

.proof-sep {
  color: rgba(255,107,53,0.4);
  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: #fe8604;
  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: 48px 64px 48px;
  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: 14px 40px;
  background: #FF4C2B;
  border-radius: 444px;
  font-weight: 600;
  font-size: 18px;
  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: 48px 64px;
}

.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: 150%;
  color: #FE8604;
}

.pricing-heading {
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  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: 150%;
  color: #000000;
  text-align: justify;
}

.pricing-highlight-text {
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  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: 140%;
  color: #000000;
}

.pricing-card-body {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  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: 120%;
  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: 150%;
  color: #000000;
}

.profile-role {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  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: 120%;
  color: #114D49;
}

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

/* We're Not Cheap Section */
.notcheap-section {
  background: #F4F4F4;
  padding: 0 64px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.notcheap-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;
}

/* 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;
}

/* 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;
}

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

/* CTA Banner — entire card is the link */
.cta-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  background: #1A1A2E;
  border-radius: 16px;
  padding: 20px 32px;
  max-width: 1216px;
  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;
}

/* 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: 140px;
  height: 210px;
  flex-shrink: 0;
  overflow: visible;
}

/* Static mascot — visible at rest, fades out on hover */
.cta-mascot {
  width: 140px;
  height: 210px;
  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: 40px;
  line-height: 120%;
  text-align: center;
  white-space: nowrap;
  max-width: 681px;
  color: #FFFFFF;
}

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

/* Why Teams Switch Section */
.switch-section {
  background: #1A1A2E;
  padding: 48px 64px 64px;
  position: relative;
  overflow: hidden;
}

.switch-stars-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.switch-trail-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.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: 120%;
  color: #FFFFFF;
  text-align: center;
}

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

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

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

.switch-bold-text {
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  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: 150%;
  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: 150%;
  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: 40px 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: 64px;
  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 {
  width: 140px;
  height: 36px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.35s ease, transform 0.35s ease;
  flex-shrink: 0;
  /* Staggered fade-up */
  opacity: 0;
  transform: translateY(14px);
}
.trusted-logo.visible {
  opacity: 1;
  transform: translateY(0);
}
.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: 48px 64px 48px;
  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: 120%;
  text-align: center;
  color: #000000;
}

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

/* 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: 150%;
  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: 140%;
  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: 130%;
  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: 150%;
  text-align: center;
  color: #7A4A3D;
}

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

/* Competitor Values */
.value-competitor {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  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: 140%;
  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: 140%;
  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: #22c55e;
  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;
}

.plans-trail-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

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

.plans-section {
  position: relative;
  background: #1A1A2E;
  padding: 64px 64px 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.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;
  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 hidden by default, static shown */
.plan-mascot-gif { display: none; mix-blend-mode: screen; }
.plan-mascot-static { display: block; }

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

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

.plan-card-wrapper:hover .plan-mascot-static { display: none; }
.plan-card-wrapper:hover .plan-mascot-gif    { display: block; }

/* Hover sign up text */
.plan-hover-cta {
  font-size: 20px;
  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;
}

/* Competitor note (purple) */
.plan-competitor-note {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: #A357EB;
  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: 92px 92px 48px;
  position: relative;
}
.faq-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;
}

.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::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;
}

.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;
}

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

.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-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;
}

.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;
}

.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 transparent;
  transition: border-color 0.22s, transform 0.22s;
  background: #e0e0e0;
  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 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.pf2-item:hover img { transform: scale(1.06); }

/* 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-img {
  position: relative;
  z-index: 1;
  max-width: 88vw;
  max-height: 88vh;
  border-radius: 14px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.55);
  transform: scale(0.88);
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
  object-fit: contain;
}
.pf2-lb.open .pf2-lb-img { transform: scale(1); }
.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;
}
