/* ══════════════════════════════════════
   K3 Store — enhancements.css
   Added premium sections
══════════════════════════════════════ */

/* Shared utilities for new sections */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.08), transparent);
  margin: 0;
}


/* ============================================================
   SECTION 1 — COMMUNITY CREATIONS
   ============================================================ */

.showcase-section {
  background: #050507;
  padding: 90px 60px;
  position: relative;
  overflow: hidden;
}

.showcase-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(77,159,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.showcase-container {
  max-width: 1200px;
  margin: 0 auto;
}

.showcase-header {
  text-align: center;
  margin-bottom: 56px;
}

.showcase-eyebrow {
  display: inline-block;
  color: #e63946;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.showcase-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.15;
}

.showcase-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #6b6b88;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Masonry grid using CSS columns */
.showcase-grid {
  column-count: 3;
  column-gap: 20px;
}

.showcase-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  break-inside: avoid;
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  cursor: pointer;
}

.showcase-card:hover {
  transform: scale(1.03) translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255,255,255,0.06);
}

/* Gradient image areas */
.showcase-card-image {
  position: relative;
  width: 100%;
  padding-top: 58%;
  border-radius: 0;
  overflow: hidden;
}

/* Card 1: Golden Sunset */
.showcase-img-1 {
  background: linear-gradient(135deg, #ff8c00 0%, #ffb347 35%, #e63946 65%, #6b1a1a 100%);
}

/* Card 2: Storm Sky */
.showcase-img-2 {
  background: linear-gradient(160deg, #1a1a2e 0%, #2d3561 40%, #4a5568 70%, #718096 100%);
}

/* Card 3: Blood Moon */
.showcase-img-3 {
  background: linear-gradient(135deg, #0d0d0d 0%, #3d0000 40%, #8b0000 70%, #cc2200 100%);
}

/* Card 4: Neon City */
.showcase-img-4 {
  background: linear-gradient(135deg, #0a0a1a 0%, #1a0533 35%, #4d00b8 60%, #00d4ff 85%, #ff00ff 100%);
}

/* Card 5: Rain Atmosphere */
.showcase-img-5 {
  background: linear-gradient(160deg, #0c1220 0%, #1a2a3a 40%, #2d4a6e 70%, #3a6080 100%);
}

/* Card 6: Tracer Effects */
.showcase-img-6 {
  background: linear-gradient(135deg, #050510 0%, #0a0a30 35%, #1a1aff 60%, #00ffff 80%, #ffffff 100%);
}

/* Card 7: Blood FX */
.showcase-img-7 {
  background: linear-gradient(135deg, #0d0000 0%, #1a0000 30%, #660000 60%, #cc0000 80%, #ff3333 100%);
}

/* Card 8: Aurora */
.showcase-img-8 {
  background: linear-gradient(135deg, #000d1a 0%, #003322 30%, #006644 55%, #00cc88 75%, #66ffcc 90%, #aaffee 100%);
}

/* Shimmer overlay on images */
.showcase-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,5,7,0.75) 100%);
}

/* Tool badge */
.showcase-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.showcase-badge-gp {
  background: rgba(77, 159, 255, 0.20);
  color: #4d9fff;
  border: 1px solid rgba(77, 159, 255, 0.35);
}

.showcase-badge-bfx {
  background: rgba(230, 57, 70, 0.20);
  color: #e63946;
  border: 1px solid rgba(230, 57, 70, 0.35);
}

/* Card body */
.showcase-card-body {
  padding: 14px 16px 16px;
}

.showcase-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e0e0f0;
  margin: 0 0 5px;
  line-height: 1.3;
}

.showcase-card-creator {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #6b6b88;
  margin: 0 0 10px;
}

.showcase-card-creator span {
  color: #a0a0c0;
  font-weight: 500;
}

.showcase-card-meta {
  display: flex;
  gap: 14px;
  align-items: center;
}

.showcase-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  color: #6b6b88;
}

.showcase-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: #6b6b88;
}

/* Responsive: tablet */
@media (max-width: 900px) {
  .showcase-section {
    padding: 70px 30px;
  }
  .showcase-grid {
    column-count: 2;
  }
}

/* Responsive: mobile */
@media (max-width: 540px) {
  .showcase-section {
    padding: 60px 18px;
  }
  .showcase-grid {
    column-count: 1;
  }
}

/* ============================================================
   SECTION 2 — MEET THE TEAM
   ============================================================ */

.team-section {
  background: #050507;
  padding: 90px 60px;
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: '';
  position: absolute;
  bottom: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 380px;
  background: radial-gradient(ellipse, rgba(230,57,70,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.team-container {
  max-width: 820px;
  margin: 0 auto;
}

.team-header {
  text-align: center;
  margin-bottom: 56px;
}

.team-eyebrow {
  display: inline-block;
  color: #e63946;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.team-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.15;
}

.team-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.team-card {
  flex: 1 1 320px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255,255,255,0.06);
}

.team-card-inner {
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

/* Avatar */
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.team-avatar-k3 {
  background: linear-gradient(135deg, #1a4a8a 0%, #4d9fff 100%);
  box-shadow: 0 0 0 3px rgba(77, 159, 255, 0.18), 0 8px 24px rgba(77, 159, 255, 0.25);
}

.team-avatar-cg {
  background: linear-gradient(135deg, #6b0000 0%, #e63946 100%);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.18), 0 8px 24px rgba(230, 57, 70, 0.25);
}

.team-avatar-initials {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

.team-avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  pointer-events: none;
}

/* Role badge */
.team-role-badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  display: inline-block;
}

.team-role-blue {
  background: rgba(77, 159, 255, 0.14);
  color: #4d9fff;
  border: 1px solid rgba(77, 159, 255, 0.28);
}

.team-role-red {
  background: rgba(230, 57, 70, 0.14);
  color: #e63946;
  border: 1px solid rgba(230, 57, 70, 0.28);
}

/* Name */
.team-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}

/* Description */
.team-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #6b6b88;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 280px;
}

/* Socials */
.team-socials {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.team-social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b6b88;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.team-social-link:hover {
  color: #e0e0f0;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.team-social-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #5865F2;
  transition: color 0.25s ease;
}

.team-social-link:hover .team-social-icon {
  color: #7289da;
}

/* Responsive: tablet and mobile */
@media (max-width: 720px) {
  .team-section {
    padding: 70px 30px;
  }
  .team-grid {
    flex-direction: column;
    align-items: center;
  }
  .team-card {
    max-width: 440px;
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (max-width: 540px) {
  .team-section {
    padding: 60px 18px;
  }
}


/* ============================================================
   SECTION 3 — ROADMAP
   ============================================================ */

.roadmap-section {
  padding: 90px 60px;
  background: #050507;
  overflow: hidden;
  position: relative;
}

.roadmap-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
}

.roadmap-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.roadmap-header {
  text-align: center;
  margin-bottom: 64px;
}

/* Timeline wrapper */
.roadmap-timeline {
  position: relative;
}

/* Horizontal connecting line (desktop) */
.roadmap-track {
  display: none;
}

.roadmap-items {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}

/* The horizontal line between cards */
.roadmap-items::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 2px;
  background: linear-gradient(
    90deg,
    #2a9d4f 0%,
    #2a9d4f 33%,
    #d97706 33%,
    #d97706 66%,
    rgba(255,255,255,0.1) 66%,
    rgba(255,255,255,0.1) 100%
  );
  z-index: 0;
}

/* Individual timeline item */
.roadmap-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  padding: 0 8px;
  transition-delay: 0.1s;
}

.roadmap-item:nth-child(2) { transition-delay: 0.15s; }
.roadmap-item:nth-child(3) { transition-delay: 0.2s; }
.roadmap-item:nth-child(4) { transition-delay: 0.25s; }
.roadmap-item:nth-child(5) { transition-delay: 0.3s; }
.roadmap-item:nth-child(6) { transition-delay: 0.35s; }

/* Node dot on the timeline */
.roadmap-node {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #050507;
  z-index: 2;
  flex-shrink: 0;
  margin-bottom: 20px;
  position: relative;
}

.roadmap-node::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  opacity: 0.25;
}

.roadmap-node--released {
  background: #2a9d4f;
  box-shadow: 0 0 12px rgba(42, 157, 79, 0.5);
}

.roadmap-node--released::after {
  background: #2a9d4f;
}

.roadmap-node--progress {
  background: #d97706;
  box-shadow: 0 0 12px rgba(217, 119, 6, 0.5);
  animation: roadmap-node-pulse 2s ease-in-out infinite;
}

.roadmap-node--progress::after {
  background: #d97706;
  animation: roadmap-ring-pulse 2s ease-in-out infinite;
}

.roadmap-node--planned {
  background: #6b6b88;
  border-color: rgba(255,255,255,0.08);
}

@keyframes roadmap-node-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(217, 119, 6, 0.4); }
  50%       { box-shadow: 0 0 20px rgba(217, 119, 6, 0.8); }
}

@keyframes roadmap-ring-pulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

/* Card */
.roadmap-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px 16px;
  width: 100%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.roadmap-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.roadmap-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.roadmap-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 8px;
}

/* Icon */
.roadmap-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(230, 57, 70, 0.12);
  border: 1px solid rgba(230, 57, 70, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e63946;
  flex-shrink: 0;
}

.roadmap-icon--blue {
  background: rgba(77, 159, 255, 0.12);
  border-color: rgba(77, 159, 255, 0.2);
  color: #4d9fff;
}

.roadmap-icon--amber {
  background: rgba(217, 119, 6, 0.12);
  border-color: rgba(217, 119, 6, 0.2);
  color: #f59e0b;
}

.roadmap-icon--muted {
  background: rgba(107, 107, 136, 0.1);
  border-color: rgba(107, 107, 136, 0.15);
  color: #6b6b88;
}

/* Badge */
.roadmap-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.roadmap-badge--released {
  background: rgba(42, 157, 79, 0.15);
  border: 1px solid rgba(42, 157, 79, 0.3);
  color: #4ade80;
}

.roadmap-badge--progress {
  background: rgba(217, 119, 6, 0.15);
  border: 1px solid rgba(217, 119, 6, 0.3);
  color: #fbbf24;
}

.roadmap-badge--planned {
  background: rgba(107, 107, 136, 0.12);
  border: 1px solid rgba(107, 107, 136, 0.2);
  color: #6b6b88;
}

.roadmap-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.roadmap-badge--released .roadmap-badge-dot {
  background: #4ade80;
}

.roadmap-badge--progress .roadmap-badge-dot {
  background: #fbbf24;
}

.roadmap-badge-dot--pulse {
  animation: roadmap-dot-pulse 1.5s ease-in-out infinite;
}

.roadmap-badge-dot--muted {
  background: #6b6b88;
}

@keyframes roadmap-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.roadmap-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.roadmap-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #6b6b88;
  margin: 0;
  line-height: 1.5;
}

/* Mobile: vertical layout */
@media (max-width: 900px) {
  .roadmap-section {
    padding: 72px 24px;
  }

  .roadmap-items {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .roadmap-items::before {
    top: 0;
    bottom: 0;
    left: 20px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(
      180deg,
      #2a9d4f 0%,
      #2a9d4f 33%,
      #d97706 33%,
      #d97706 66%,
      rgba(255,255,255,0.1) 66%,
      rgba(255,255,255,0.1) 100%
    );
  }

  .roadmap-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 0 0 24px 0;
  }

  .roadmap-node {
    margin-bottom: 0;
    margin-top: 20px;
    flex-shrink: 0;
  }

  .roadmap-card {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .roadmap-section {
    padding: 60px 16px;
  }
}


/* ============================================================
   SECTION 4 — DISCORD REVIEW WALL
   ============================================================ */

.reviews-section {
  padding: 90px 0;
  background: #050507;
  overflow: hidden;
  position: relative;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
}

.reviews-inner {
  padding: 0 60px;
  max-width: 1200px;
  margin: 0 auto 56px;
}

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

/* Carousel */
.reviews-carousel-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

/* Fade edges */
.reviews-carousel-wrap::before,
.reviews-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 10;
  pointer-events: none;
}

.reviews-carousel-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #050507, transparent);
}

.reviews-carousel-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, #050507, transparent);
}

/* Row */
.reviews-row {
  overflow: hidden;
  width: 100%;
}

/* Track — holds all cards in a single flex row */
.reviews-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: reviews-scroll-left 55s linear infinite;
}

.reviews-track--reverse {
  animation: reviews-scroll-right 60s linear infinite;
}

/* Pause on hover anywhere in the section */
.reviews-row:hover .reviews-track {
  animation-play-state: paused;
}

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

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

/* Card */
.reviews-card {
  width: 280px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.reviews-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.025) 0%, transparent 60%);
  pointer-events: none;
}

.reviews-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

/* Card header: avatar + username */
.reviews-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

/* Avatar circle */
.reviews-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.reviews-avatar--purple {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.reviews-avatar--blue {
  background: linear-gradient(135deg, #1d4ed8, #4d9fff);
}

.reviews-avatar--red {
  background: linear-gradient(135deg, #b91c1c, #e63946);
}

.reviews-avatar--green {
  background: linear-gradient(135deg, #166534, #22c55e);
}

.reviews-avatar--orange {
  background: linear-gradient(135deg, #c2410c, #f97316);
}

.reviews-avatar--teal {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
}

/* Meta: username + purchase badge */
.reviews-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.reviews-username {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #e0e0f0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Purchase badge */
.reviews-purchase {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 20px;
  width: fit-content;
}

.reviews-purchase--gp {
  background: rgba(230, 57, 70, 0.15);
  border: 1px solid rgba(230, 57, 70, 0.25);
  color: #e63946;
}

.reviews-purchase--bfx {
  background: rgba(77, 159, 255, 0.15);
  border: 1px solid rgba(77, 159, 255, 0.25);
  color: #4d9fff;
}

/* Stars */
.reviews-stars {
  font-size: 13px;
  color: #f59e0b;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* Review text */
.reviews-text {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: #6b6b88;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .reviews-inner {
    padding: 0 24px;
  }

  .reviews-section {
    padding: 72px 0;
  }

  .reviews-carousel-wrap::before,
  .reviews-carousel-wrap::after {
    width: 60px;
  }
}

@media (max-width: 480px) {
  .reviews-section {
    padding: 60px 0;
  }
}

/* ===== TUTORIALS SECTION ===== */
.tutorials-section {
  background: #050507;
  padding: 90px 60px;
  position: relative;
  overflow: hidden;
}

.tutorials-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(77, 159, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.tutorials-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.tutorials-header {
  text-align: center;
  margin-bottom: 60px;
}

.tutorials-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e63946;
  margin-bottom: 14px;
}

.tutorials-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px 0;
  line-height: 1.15;
}

.tutorials-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #6b6b88;
  margin: 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Grid */
.tutorials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}

/* Cards */
.tutorials-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.tutorials-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.tutorials-card--blue::after {
  box-shadow: inset 0 0 0 1px rgba(77, 159, 255, 0.4);
}

.tutorials-card--red::after {
  box-shadow: inset 0 0 0 1px rgba(230, 57, 70, 0.4);
}

.tutorials-card--blue {
  border-color: rgba(77, 159, 255, 0.25);
}

.tutorials-card--red {
  border-color: rgba(230, 57, 70, 0.25);
}

.tutorials-card:hover {
  transform: translateY(-6px);
}

.tutorials-card--blue:hover {
  border-color: rgba(77, 159, 255, 0.5);
  box-shadow: 0 12px 40px rgba(77, 159, 255, 0.12), 0 0 0 1px rgba(77, 159, 255, 0.2);
}

.tutorials-card--red:hover {
  border-color: rgba(230, 57, 70, 0.5);
  box-shadow: 0 12px 40px rgba(230, 57, 70, 0.12), 0 0 0 1px rgba(230, 57, 70, 0.2);
}

.tutorials-card:hover::after {
  opacity: 1;
}

/* Featured cards subtle glow bg */
.tutorials-card--featured {
  background: rgba(77, 159, 255, 0.05);
}

.tutorials-card--featured-red {
  background: rgba(230, 57, 70, 0.05);
}

/* Badge */
.tutorials-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.tutorials-badge--blue {
  background: rgba(77, 159, 255, 0.15);
  color: #4d9fff;
  border: 1px solid rgba(77, 159, 255, 0.3);
}

.tutorials-badge--red {
  background: rgba(230, 57, 70, 0.15);
  color: #e63946;
  border: 1px solid rgba(230, 57, 70, 0.3);
}

/* Card top */
.tutorials-card-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tutorials-tool-label {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 6px;
  width: fit-content;
}

.tutorials-tool-label--blue {
  background: rgba(77, 159, 255, 0.1);
  color: #4d9fff;
  border: 1px solid rgba(77, 159, 255, 0.2);
}

.tutorials-tool-label--red {
  background: rgba(230, 57, 70, 0.1);
  color: #e63946;
  border: 1px solid rgba(230, 57, 70, 0.2);
}

.tutorials-card-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-top: 4px;
}

.tutorials-card-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-top: 6px;
  display: flex;
  align-items: flex-start;
  gap: 2px;
}

.tutorials-price-dollar {
  font-size: 22px;
  font-weight: 600;
  color: #6b6b88;
  margin-top: 8px;
}

/* Features list */
.tutorials-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.tutorials-features li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #e0e0f0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.tutorials-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

.tutorials-check--blue {
  background: rgba(77, 159, 255, 0.15);
  color: #4d9fff;
  border: 1px solid rgba(77, 159, 255, 0.3);
}

.tutorials-check--red {
  background: rgba(230, 57, 70, 0.15);
  color: #e63946;
  border: 1px solid rgba(230, 57, 70, 0.3);
}

/* Buttons */
.tutorials-btn {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  margin-top: auto;
}

.tutorials-btn--blue {
  background: rgba(77, 159, 255, 0.12);
  color: #4d9fff;
  border: 1px solid rgba(77, 159, 255, 0.3);
}

.tutorials-btn--blue:hover {
  background: rgba(77, 159, 255, 0.22);
  border-color: rgba(77, 159, 255, 0.55);
  box-shadow: 0 4px 20px rgba(77, 159, 255, 0.2);
  transform: translateY(-1px);
}

.tutorials-btn--red {
  background: rgba(230, 57, 70, 0.12);
  color: #e63946;
  border: 1px solid rgba(230, 57, 70, 0.3);
}

.tutorials-btn--red:hover {
  background: rgba(230, 57, 70, 0.22);
  border-color: rgba(230, 57, 70, 0.55);
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.2);
  transform: translateY(-1px);
}

/* Instructor chips */
.tutorials-instructors {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.tutorials-instructor-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 10px 22px 10px 10px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.tutorials-instructor-chip:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.tutorials-instructor-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.tutorials-instructor-avatar--blue {
  background: rgba(77, 159, 255, 0.15);
  color: #4d9fff;
  border: 1px solid rgba(77, 159, 255, 0.35);
}

.tutorials-instructor-avatar--red {
  background: rgba(230, 57, 70, 0.15);
  color: #e63946;
  border: 1px solid rgba(230, 57, 70, 0.35);
}

.tutorials-instructor-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tutorials-instructor-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.tutorials-instructor-role {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #6b6b88;
}

/* CTA */
.tutorials-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.tutorials-cta-btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #e63946 0%, #c0303b 100%);
  padding: 16px 44px;
  border-radius: 12px;
  border: 1px solid rgba(230, 57, 70, 0.4);
  box-shadow: 0 4px 24px rgba(230, 57, 70, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.tutorials-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(230, 57, 70, 0.38);
  background: linear-gradient(135deg, #f04050 0%, #d03545 100%);
}

.tutorials-cta-sub {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #6b6b88;
  margin: 0;
}

/* Reveal animation stagger for cards */
.tutorials-grid .tutorials-card:nth-child(1) { transition-delay: 0.05s; }
.tutorials-grid .tutorials-card:nth-child(2) { transition-delay: 0.12s; }
.tutorials-grid .tutorials-card:nth-child(3) { transition-delay: 0.19s; }
.tutorials-grid .tutorials-card:nth-child(4) { transition-delay: 0.26s; }

/* Responsive */
@media (max-width: 768px) {
  .tutorials-section {
    padding: 70px 20px;
  }

  .tutorials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tutorials-instructors {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .tutorials-cta-btn {
    width: 100%;
    max-width: 340px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .tutorials-card {
    padding: 26px 20px 22px;
  }

  .tutorials-card-price {
    font-size: 40px;
  }
}

/* ── Trust Section ── */
.trust-section {
  position: relative;
  padding: 90px 60px;
  background: #050507;
  overflow: hidden;
}

/* Radial red gradient overlay */
.trust-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(230, 57, 70, 0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(77, 159, 255, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.trust-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.trust-header {
  text-align: center;
  margin-bottom: 64px;
}

.trust-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e63946;
  margin-bottom: 16px;
}

.trust-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

.trust-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #6b6b88;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Stat grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

/* Individual stat card */
.trust-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: default;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(230, 57, 70, 0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.trust-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(230, 57, 70, 0.08);
}

.trust-card:hover::before {
  opacity: 1;
}

/* Icon */
.trust-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(230, 57, 70, 0.10);
  border: 1px solid rgba(230, 57, 70, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e63946;
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.trust-card:hover .trust-card-icon {
  background: rgba(230, 57, 70, 0.16);
  border-color: rgba(230, 57, 70, 0.30);
  transform: scale(1.06);
}

/* Alternate cards get blue accent */
.trust-card:nth-child(2) .trust-card-icon,
.trust-card:nth-child(5) .trust-card-icon {
  background: rgba(77, 159, 255, 0.10);
  border-color: rgba(77, 159, 255, 0.18);
  color: #4d9fff;
}
.trust-card:nth-child(2):hover .trust-card-icon,
.trust-card:nth-child(5):hover .trust-card-icon {
  background: rgba(77, 159, 255, 0.16);
  border-color: rgba(77, 159, 255, 0.30);
}

/* Stat number */
.trust-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.trust-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 60%, rgba(255,255,255,0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.25s ease;
}

.trust-card:hover .trust-stat-num {
  transform: scale(1.04);
}

.trust-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #6b6b88;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Badges row */
.trust-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.trust-badges-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: #6b6b88;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 14px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #e0e0f0;
  padding: 0 20px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.trust-badge:hover {
  color: #fff;
}

.trust-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.trust-badge-dot--red {
  background: #e63946;
  box-shadow: 0 0 6px rgba(230, 57, 70, 0.7);
}

.trust-badge-dot--blue {
  background: #4d9fff;
  box-shadow: 0 0 6px rgba(77, 159, 255, 0.7);
}

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

/* Responsive */
@media (max-width: 900px) {
  .trust-section {
    padding: 70px 30px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .trust-section {
    padding: 60px 20px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-badges-row {
    flex-direction: column;
    border-radius: 16px;
    gap: 4px;
    padding: 16px 24px;
  }
  .trust-divider {
    width: 40px;
    height: 1px;
  }
  .trust-badge {
    padding: 6px 0;
  }
}


/* ================================================
   FOOTER — .pfooter-
   ================================================ */

.pfooter-root {
  background: rgba(0, 0, 0, 0.70);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 60px 40px;
  font-family: 'Inter', sans-serif;
  color: #e0e0f0;
  position: relative;
  overflow: hidden;
}

/* Subtle background glow accent */
.pfooter-root::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(230, 57, 70, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.pfooter-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* 4-column grid */
.pfooter-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px 40px;
  margin-bottom: 64px;
}

/* Brand column */
.pfooter-col--brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Logo */
.pfooter-logo-wrap {
  margin-bottom: 4px;
}

.pfooter-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
}

.pfooter-logo-fallback {
  height: 56px;
  width: 56px;
  background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
  border-radius: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.5px;
}

.pfooter-tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: #e63946;
  text-transform: uppercase;
  margin: 0;
}

.pfooter-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #6b6b88;
  margin: 0;
  max-width: 280px;
}

/* Discord button */
.pfooter-discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e0e0f0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  width: fit-content;
  margin-top: 4px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

.pfooter-discord-btn:hover {
  background: rgba(230, 57, 70, 0.12);
  border-color: rgba(230, 57, 70, 0.35);
  color: #fff;
  transform: translateY(-1px);
}

.pfooter-discord-icon {
  width: 16px;
  height: 16px;
  color: #5865F2;
  flex-shrink: 0;
}

/* Link columns */
.pfooter-col {
  display: flex;
  flex-direction: column;
}

.pfooter-col-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 20px 0;
}

.pfooter-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pfooter-links li a {
  font-size: 14px;
  color: #6b6b88;
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
  display: inline-block;
  position: relative;
}

.pfooter-links li a::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #e63946;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.pfooter-links li a:hover {
  color: #e0e0f0;
  padding-left: 12px;
}

.pfooter-links li a:hover::before {
  opacity: 1;
}

/* Divider */
.pfooter-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 28px;
}

/* Bottom bar */
.pfooter-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.pfooter-copy {
  font-size: 13px;
  color: #6b6b88;
}

.pfooter-site-link {
  font-size: 13px;
  color: #6b6b88;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}

.pfooter-site-link:hover {
  color: #4d9fff;
}

/* Responsive */
@media (max-width: 900px) {
  .pfooter-root {
    padding: 60px 28px 32px;
  }

  .pfooter-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 28px;
  }

  .pfooter-col--brand {
    grid-column: 1 / -1;
  }

  .pfooter-desc {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .pfooter-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}


/* ================================================
   FLOATING SUPPORT WIDGET — .support-widget-
   ================================================ */

.support-widget-root {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  font-family: 'Inter', sans-serif;
}

/* Panel */
.support-widget-panel {
  background: rgba(10, 10, 18, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  width: 280px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.60), 0 0 0 1px rgba(230, 57, 70, 0.08);

  /* Collapsed by default */
  opacity: 0;
  transform: translateY(14px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.30s ease, transform 0.30s ease;
}

/* Open state — toggled by JS adding class to root */
.support-widget-root--open .support-widget-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* Panel header */
.support-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.support-widget-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

.support-widget-close {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #6b6b88;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
  line-height: 0;
}

.support-widget-close:hover {
  color: #e0e0f0;
  background: rgba(255, 255, 255, 0.06);
}

.support-widget-close svg {
  width: 16px;
  height: 16px;
}

/* Options */
.support-widget-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
}

.support-widget-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  text-decoration: none;
  color: #e0e0f0;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
  cursor: pointer;
}

.support-widget-option:hover {
  background: rgba(230, 57, 70, 0.10);
  border-color: rgba(230, 57, 70, 0.28);
  color: #fff;
  transform: translateX(-2px);
}

.support-widget-option-icon {
  font-size: 15px;
  flex-shrink: 0;
  line-height: 1;
}

.support-widget-option span:nth-child(2) {
  flex: 1;
}

.support-widget-arrow {
  width: 13px;
  height: 13px;
  color: #6b6b88;
  flex-shrink: 0;
  transition: color 0.22s ease, transform 0.22s ease;
}

.support-widget-option:hover .support-widget-arrow {
  color: #e63946;
  transform: translateX(2px);
}

/* Panel footer */
.support-widget-footer {
  padding: 10px 16px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.support-widget-response {
  font-size: 11px;
  color: #6b6b88;
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* Trigger button */
.support-widget-trigger {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.45), 0 0 0 0 rgba(230, 57, 70, 0.30);
  animation: support-widget-pulse 2.8s ease infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  flex-shrink: 0;
}

.support-widget-trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(230, 57, 70, 0.60), 0 0 0 0 rgba(230, 57, 70, 0.30);
  animation: none;
}

/* Pulse ring animation */
@keyframes support-widget-pulse {
  0%   { box-shadow: 0 4px 20px rgba(230,57,70,0.45), 0 0 0 0 rgba(230,57,70,0.28); }
  60%  { box-shadow: 0 4px 20px rgba(230,57,70,0.45), 0 0 0 12px rgba(230,57,70,0.00); }
  100% { box-shadow: 0 4px 20px rgba(230,57,70,0.45), 0 0 0 0 rgba(230,57,70,0.00); }
}

/* Stop pulse when open */
.support-widget-root--open .support-widget-trigger {
  animation: none;
}

/* Icon swap */
.support-widget-trigger-icon {
  width: 20px;
  height: 20px;
  color: #fff;
  position: absolute;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.support-widget-trigger-icon--chat {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.support-widget-trigger-icon--close {
  opacity: 0;
  transform: scale(0.7) rotate(-45deg);
}

.support-widget-root--open .support-widget-trigger-icon--chat {
  opacity: 0;
  transform: scale(0.7) rotate(45deg);
}

.support-widget-root--open .support-widget-trigger-icon--close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Mobile adjustment */
@media (max-width: 480px) {
  .support-widget-root {
    bottom: 18px;
    right: 16px;
  }

  .support-widget-panel {
    width: calc(100vw - 48px);
    max-width: 280px;
  }
}


/* ── Responsive overrides ── */
@media (max-width: 768px) {
  .showcase-grid { columns: 1 !important; }
  .team-grid, .tutorials-grid { grid-template-columns: 1fr !important; }
  .roadmap-grid { flex-direction: column !important; }
  .trust-grid { grid-template-columns: 1fr 1fr !important; }
  .pfooter-cols { flex-direction: column !important; gap: 32px !important; }
  .support-widget { bottom: 16px !important; right: 16px !important; }
}
