/* =====================================================
   PINMEET — STRICT REFERENCE DESIGN SYSTEM (style.css)
   Target: Exact 1:1 visual match with reference blueprint
   Canvas: 1440px desktop, 1220px container
   ===================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* =====================================================
   SMOOTH MOTION KEYFRAMES
   ===================================================== */
@keyframes pmFloat {
  0%, 100% { transform: translateY(0px);  }
  50%       { transform: translateY(-8px); }
}

@keyframes pmPulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(255, 101, 0, 0.45); transform: scale(1);    }
  50%       { box-shadow: 0 0 0 12px rgba(255, 101, 0, 0);    transform: scale(1.03); }
}

@keyframes pmSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes pmFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pmCursorBlink {
  0%, 100% { border-color: #FF6500; }
  50%       { border-color: transparent; }
}

/* Smooth transitions on ALL interactive elements */
a, button, .feature-card-item, .step-item-box,
.store-badge-card, .blog-item-card, .testimonial-card,
.accordion-item, .community-stat {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease,
              opacity 0.3s ease;
}

/* Hover lift effect */
.step-item-box:hover,
.blog-item-card:hover,
.testimonial-card:hover,
.store-badge-card:hover {
  transform: translateY(-6px) scale(1.02);
}


/* =====================================================
   2. DESIGN TOKENS (:root)
   ===================================================== */
:root {
  /* Exact Reference Color Palette */
  --pm-navy: #091537;
  --pm-navy-dark: #060E26;
  --pm-navy-card: #101F48;

  --pm-cream: #FFF3E1;
  --pm-cream-light: #FFF9F0;
  --pm-white: #FFFFFF;

  --pm-orange: #FF6500;
  --pm-orange-hover: #E55B00;
  --pm-orange-glow: rgba(255, 101, 0, 0.35);

  --pm-purple: #6236FF;
  --pm-purple-light: #7B55FF;
  --pm-purple-soft: #F0EDFF;

  --pm-pink: #FF6FA5;
  --pm-pink-soft: #FFF0F5;

  --pm-mint: #5CE1C6;
  --pm-mint-soft: #E6FAF6;

  --pm-yellow: #FFC42B;
  --pm-yellow-soft: #FFF9E6;

  --pm-text-dark: #091537;
  --pm-text-muted: #6B7280;
  --pm-text-light: rgba(255, 255, 255, 0.8);

  /* Typography */
  --pm-font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --pm-font-script: 'Caveat', cursive, sans-serif;

  /* Spacing & Sizes */
  --pm-container: 1220px;
  --pm-radius-sm: 14px;
  --pm-radius-md: 22px;
  --pm-radius-lg: 32px;
  --pm-radius-pill: 999px;

  /* Shadows */
  --pm-shadow-sm: 0 4px 18px rgba(9, 21, 55, 0.06);
  --pm-shadow-md: 0 10px 32px rgba(9, 21, 55, 0.08);
  --pm-shadow-lg: 0 20px 50px rgba(9, 21, 55, 0.12);
  --pm-shadow-orange: 0 10px 28px rgba(255, 101, 0, 0.38);
}

/* =====================================================
   3. GLOBAL STYLES & LAYOUT
   ===================================================== */
body {
  margin: 0;
  padding: 0;
  background-color: var(--pm-cream);
  color: var(--pm-text-dark);
  font-family: var(--pm-font-main);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

.container, .container-lg, .container-xl {
  max-width: var(--pm-container) !important;
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
}

section {
  position: relative;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

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

/* =====================================================
   4. TYPOGRAPHY & HANDWRITTEN ANNOTATIONS
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--pm-font-main);
  font-weight: 800;
  line-height: 1.1;
  color: var(--pm-navy);
}

.hero-title {
  font-size: clamp(52px, 4.6vw, 68px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--pm-white);
  margin-bottom: 22px;
}

.hero-title .highlight {
  color: var(--pm-orange);
  display: inline;
}

.section-title {
  font-size: clamp(36px, 3.2vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--pm-navy);
  margin-bottom: 14px;
}

.section-title.text-white {
  color: var(--pm-white) !important;
}

.section-sub {
  font-size: 16px;
  line-height: 1.65;
  color: #4B5563;
}

.section-sub.text-white-sub {
  color: rgba(255, 255, 255, 0.75);
}

/* Pink Hand-Drawn Marker Underline */
.heading-underline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.heading-underline::after {
  content: '';
  position: absolute;
  left: -2%;
  bottom: -4px;
  width: 104%;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 280 20' preserveAspectRatio='none'%3E%3Cpath d='M3 14 C 60 5, 160 17, 276 7' stroke='%23FF6FA5' stroke-width='9' stroke-linecap='round' fill='none' opacity='0.95'/%3E%3C/svg%3E") center no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 1;
}

/* Decorative Doodle Stars (Reference Section 2) */
.features-doodle-stars {
  position: absolute;
  left: -38px;
  bottom: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  pointer-events: none;
  z-index: 2;
}

.doodle-star {
  display: block;
}

.star-blue {
  transform: rotate(12deg);
  animation: pmStarTwinkle 3.2s ease-in-out infinite;
}

.star-pink {
  transform: rotate(-15deg);
  margin-left: -6px;
  animation: pmStarTwinkle 3.2s ease-in-out infinite 1.6s;
}

@keyframes pmStarTwinkle {
  0%, 100% { transform: scale(1) rotate(12deg); }
  50%       { transform: scale(1.18) rotate(22deg); }
}


/* Handwritten Cursive Doodles */
.script-note {
  font-family: var(--pm-font-script);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.5px;
  pointer-events: none;
  user-select: none;
  position: absolute;
  z-index: 5;
}

.crown-doodle {
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
}

/* =====================================================
   5. BUTTONS & BADGES
   ===================================================== */
.btn-pm-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--pm-orange);
  color: var(--pm-white) !important;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--pm-radius-pill);
  box-shadow: var(--pm-shadow-orange);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-height: 48px;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease, background-color 0.2s;
}

.btn-pm-orange:hover {
  background: var(--pm-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(255, 101, 0, 0.45);
}

.btn-pm-white-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--pm-white);
  color: var(--pm-navy) !important;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--pm-radius-pill);
  border: 1px solid rgba(9, 21, 55, 0.15);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  min-height: 48px;
  transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.btn-pm-white-outline:hover {
  background: #FFFDF9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.btn-pm-white-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--pm-white);
  color: var(--pm-purple) !important;
  font-size: 16px;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: var(--pm-radius-pill);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  min-height: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-pm-white-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  color: var(--pm-orange) !important;
}

/* App Store & Google Play Badges */
.store-badges-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.store-badge-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 8px 16px;
  color: var(--pm-white) !important;
  transition: transform 0.2s, border-color 0.2s;
}

.store-badge-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.6);
}

.store-badge-card i {
  font-size: 24px;
}

.store-badge-sub {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  opacity: 0.8;
  display: block;
  line-height: 1.1;
}

.store-badge-name {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  display: block;
}

/* =====================================================
   6. NAVBAR — Transparent Floating Navbar
   ===================================================== */
.pm-navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: 18px 0;
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: all 0.35s ease;
}

.pm-navbar.scrolled {
  position: fixed;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(9, 21, 55, 0.08);
}

/* Brand / Logo */
.pm-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  color: var(--pm-navy) !important;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.pm-brand-pin {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #FF6500, #ff8533);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(255, 101, 0, 0.40);
  position: relative;
  flex-shrink: 0;
}

.pm-brand-pin::after {
  content: '';
  width: 13px;
  height: 13px;
  background: #fff;
  border-radius: 50%;
  transform: rotate(45deg);
}

/* Nav Menu — pill container */
.pm-nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* Nav Links */
.pm-nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  padding: 7px 14px;
  border-radius: 50px;
  position: relative;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.pm-nav-link:hover {
  background: rgba(255, 101, 0, 0.08);
  color: var(--pm-orange);
}

.pm-nav-link.active {
  background: #fff;
  color: var(--pm-orange);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

/* CTA Button */
.pm-navbar-cta {
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  min-height: 44px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

/* Mobile toggler */
.pm-mobile-toggler {
  color: var(--pm-navy);
  line-height: 1;
}

/* =====================================================
   7. HERO SECTION (LIGHT SUNNY THEME WITH 3D SCENE)
   ===================================================== */
.hero-section {
  width: 100%;
  aspect-ratio: 1792 / 878;
  min-height: max(calc(100vw * 878 / 1792), 780px);
  background: #FFF8EE url('../images/backgorund-banner.png') no-repeat center center / 100% 100%;
  padding-top: clamp(125px, 9vw, 160px);
  padding-bottom: clamp(95px, 7.5vw, 135px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Left-side white overlay for text readability — smooth, no visible line */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 120% at -5% 50%,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.85) 25%,
    rgba(255, 255, 255, 0.55) 45%,
    rgba(255, 255, 255, 0.20) 60%,
    transparent 75%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EEF2F6;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--pm-radius-pill);
  padding: 8px 20px;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 22px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.hero-title {
  font-size: clamp(38px, 3.8vw, 58px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: #0F172A;
  margin-bottom: 22px;
}

.hero-title .highlight,
#hero-rotating-text {
  color: #FF5A1F;
  display: inline-block;
  white-space: nowrap;
}

.hero-description {
  font-size: 17px;
  line-height: 1.7;
  color: #475569;
  max-width: 480px;
  margin-bottom: 28px;
}

.hero-cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.btn-pm-watch-video {
  border: 1.5px solid #0F172A !important;
  color: #0F172A !important;
  background: #FFFFFF !important;
  font-weight: 700;
}

.btn-pm-watch-video:hover {
  background: #0F172A !important;
  color: #FFFFFF !important;
}

.btn-pm-watch-video i {
  font-size: 18px;
  margin-right: 4px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 8px 16px 8px 8px;
  display: inline-flex;
  width: fit-content;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 15px;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-group-img {
  height: 36px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
}

.hero-proof-badge {
  background: #EDE9FE;
  color: #3730A3;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 13px;
  padding: 4px 12px;
  display: inline-flex;
  align-items: center;
}

.proof-statement {
  font-size: 13px;
  line-height: 1.35;
  color: #0F172A;
  font-weight: 600;
  margin: 0;
}

.proof-statement strong {
  color: #0F172A;
}

/* =====================================================
   8. HERO VISUAL STAGES (DESKTOP & MOBILE)
   ===================================================== */
.hero-visual-stage {
  position: relative;
  width: 100%;
}

.hero-visual-col {
  min-height: 520px;
}

/* Desktop Stage */
.hero-desktop-stage {
  display: none;
  position: relative;
  width: 100%;
}

.hero-scene-card {
  position: relative;
  width: 100%;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(9, 21, 55, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-scene-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 65px rgba(9, 21, 55, 0.12);
}

.hero-scene-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Mobile Stage */
.hero-mobile-stage {
  display: none;
  position: relative;
  width: 100%;
}

.hero-mobile-card {
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(9, 21, 55, 0.10);
}

.hero-mobile-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Hero Bottom Organic Wave Curve */
.hero-bottom-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 4;
  pointer-events: none;
}

.hero-bottom-curve svg {
  display: block;
  width: 100%;
  height: 75px;
}

/* =====================================================
   9. SECTION 2: MORE THAN EVENTS (CREAM BG + LARGE CARDS)
   ===================================================== */
.section-features {
  background: var(--pm-cream);
  min-height: 440px;
  padding-top: 75px;
  padding-bottom: 95px;
}

.features-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 30px;
}

.features-cards-row {
  padding-top: 15px;
  padding-bottom: 25px;
}

.feature-card-item {
  border-radius: 28px;
  padding: 34px 22px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

/* 1. Peach Card: tilted counter-clockwise */
.fc-peach {
  background: #FFDEC9;
  box-shadow: 0 10px 30px rgba(255, 130, 80, 0.12);
  transform: rotate(-3.5deg) translateY(6px);
}
.fc-peach:hover {
  transform: rotate(0deg) translateY(-14px) scale(1.03);
  box-shadow: 0 22px 45px rgba(255, 130, 80, 0.24);
}

/* 2. Lavender Card: elevated higher, subtle tilt */
.fc-lavender {
  background: #E4DCFF;
  box-shadow: 0 10px 30px rgba(98, 54, 255, 0.12);
  transform: rotate(-0.5deg) translateY(-10px);
}
.fc-lavender:hover {
  transform: rotate(0deg) translateY(-20px) scale(1.03);
  box-shadow: 0 22px 45px rgba(98, 54, 255, 0.24);
}

/* 3. Mint Card: tilted clockwise, slightly lowered */
.fc-mint {
  background: #BFF2E5;
  box-shadow: 0 10px 30px rgba(45, 212, 175, 0.14);
  transform: rotate(1.8deg) translateY(6px);
}
.fc-mint:hover {
  transform: rotate(0deg) translateY(-14px) scale(1.03);
  box-shadow: 0 22px 45px rgba(45, 212, 175, 0.26);
}

/* 4. Butter Yellow Card: tilted clockwise */
.fc-yellow {
  background: #FFF0A8;
  box-shadow: 0 10px 30px rgba(245, 190, 40, 0.14);
  transform: rotate(3.8deg) translateY(-2px);
}
.fc-yellow:hover {
  transform: rotate(0deg) translateY(-14px) scale(1.03);
  box-shadow: 0 22px 45px rgba(245, 190, 40, 0.26);
}

/* Large 3D Illustration Area in Card */
.feature-3d-visual {
  width: 100%;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-3d-visual img {
  max-width: 135px;
  max-height: 115px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.10));
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fc-lavender .feature-3d-visual img {
  max-width: 170px;
}

.feature-card-item:hover .feature-3d-visual img {
  transform: scale(1.08) translateY(-4px);
}

.feature-card-title {
  font-size: 21px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  text-align: center;
}

.feature-card-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: #334155;
  margin: 0;
  font-weight: 500;
  text-align: center;
  max-width: 230px;
}

/* =====================================================
   10. SECTION 3: HOW PINMEET WORKS (NAVY + 4 CONNECTED STEPS)
   ===================================================== */
.section-how {
  background: #091537;
  min-height: 440px;
  padding-top: 135px;
  padding-bottom: 145px;
  position: relative;
  overflow: hidden;
}

.how-curve-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 4;
}

.how-curve-top svg {
  display: block;
  width: 100%;
  height: 55px;
}

.how-curve-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 4;
}

.how-curve-bottom svg {
  display: block;
  width: 100%;
  height: 55px;
}

.how-header-row {
  margin-bottom: 65px;
}

.how-heading-highlight {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.how-purple-zigzag {
  position: absolute;
  left: -20px;
  bottom: -12px;
  width: 135px;
  height: 14px;
  pointer-events: none;
  overflow: visible;
}

.steps-row-container {
  position: relative;
  margin-top: 20px;
}

.step-col {
  position: relative;
}

.step-arrow-connector {
  position: absolute;
  top: 15px;
  right: -24px;
  width: 48px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}

.step-item-box {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 8px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-item-box:hover {
  transform: translateY(-8px);
}

.step-icon-group {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 18px;
}

.step-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #071228;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-badge-pink {
  background: #FFA5C7;
}

.step-badge-purple {
  background: #A78BFA;
}

.step-badge-mint {
  background: #4EE0BA;
}

.step-badge-yellow {
  background: #FFE169;
}

.step-symbol {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-symbol svg {
  display: block;
}

.step-item-box:hover .step-badge {
  transform: scale(1.12) rotate(-6deg);
}

.step-item-box:hover .step-symbol {
  transform: scale(1.15) translateY(-2px);
}

.step-item-title {
  font-size: 17.5px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step-item-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0 auto;
  max-width: 210px;
  font-weight: 400;
}

/* =====================================================
   11. SECTION 4: SEE PINMEET IN ACTION (6 APP SCREENS)
   ===================================================== */
.section-showcase {
  background: var(--pm-cream);
  min-height: 500px;
  padding-top: 80px;
  padding-bottom: 90px;
}

.showcase-track-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
  margin-top: 40px;
  overflow: visible;
}

.app-phone-item {
  width: 175px;
  background: #000000;
  border-radius: 30px;
  border: 4px solid #FFFFFF;
  box-shadow: 0 18px 40px rgba(9, 21, 55, 0.14);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  flex-shrink: 0;
  position: relative;
}

.app-phone-item:hover {
  transform: translateY(-10px) scale(1.05) !important;
  box-shadow: 0 28px 55px rgba(9, 21, 55, 0.22);
  z-index: 10;
}

.tilt-1 { transform: rotate(-4deg) translateY(10px); }
.tilt-2 { transform: rotate(-2deg) translateY(5px); }
.tilt-3-hero { 
  width: 200px;
  transform: translateY(-12px) scale(1.04);
  border-color: var(--pm-orange);
  box-shadow: 0 24px 50px rgba(255, 101, 0, 0.28);
  z-index: 5;
}
.tilt-4 { transform: rotate(1deg) translateY(4px); }
.tilt-5 { transform: rotate(2deg) translateY(8px); }
.tilt-6 { transform: rotate(4deg) translateY(12px); }

.app-screen-body {
  background: #091537;
  height: 340px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  color: #FFFFFF;
}

.app-screen-notch {
  width: 44px;
  height: 10px;
  background: #000;
  border-radius: 0 0 6px 6px;
  margin: 0 auto 8px;
}

.screen-bottom-tag {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  padding: 6px 0 2px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.script-from-discovery {
  position: absolute;
  right: -20px;
  top: 30%;
  color: #091537;
  font-size: 24px;
  line-height: 1.1;
  text-align: left;
}

/* =====================================================
   12. SECTION 5: POPULAR EVENTS NEAR YOU
   ===================================================== */
.section-events {
  background: var(--pm-cream);
  min-height: 400px;
  padding-top: 70px;
  padding-bottom: 90px;
}

.event-card-box {
  background: var(--pm-white);
  border-radius: var(--pm-radius-md);
  overflow: hidden;
  box-shadow: var(--pm-shadow-sm);
  border: 1px solid rgba(9, 21, 55, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--pm-shadow-lg);
}

.event-thumbnail-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
}

.event-thumbnail-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.event-card-box:hover .event-thumbnail-wrap img {
  transform: scale(1.05);
}

.event-category-pill {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: rgba(9, 21, 55, 0.85);
  color: #FFF;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 6px;
}

.event-heart-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EF4444;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  border: none;
  cursor: pointer;
}

.event-details-content {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event-title-heading {
  font-size: 17px;
  font-weight: 800;
  color: var(--pm-navy);
  margin-bottom: 8px;
}

.event-info-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 4px;
}

.event-info-line i {
  color: var(--pm-orange);
}

/* =====================================================
   13. SECTION 6 & 7: CREATE YOUR OWN EVENT + SAFETY
   ===================================================== */
.section-create-safety {
  background: linear-gradient(180deg, var(--pm-cream) 0%, #FFF0F4 50%, var(--pm-cream) 100%);
  min-height: 440px;
  padding-top: 80px;
  padding-bottom: 90px;
}

.balanced-panel {
  background: var(--pm-white);
  border-radius: var(--pm-radius-lg);
  padding: 40px 36px;
  height: 100%;
  box-shadow: var(--pm-shadow-md);
  border: 1px solid rgba(9, 21, 55, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.panel-text-content {
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.panel-illustration-box {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 250px;
  position: relative;
  z-index: 2;
}

.panel-illustration-box img {
  max-height: 250px;
  object-fit: contain;
}

.shield-glow-wrap {
  position: relative;
}

.shield-glow-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(98, 54, 255, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.safety-check-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0;
}

.safety-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--pm-navy);
}

.safety-check-item i {
  color: #10B981;
  font-size: 18px;
}

/* =====================================================
   14. SECTION 8: JOIN A GROWING COMMUNITY (PURPLE SECTION)
   ===================================================== */
.section-community {
  background: var(--pm-purple);
  min-height: 450px;
  padding-top: 110px;
  padding-bottom: 110px;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.comm-curve-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 4;
}

.comm-curve-top svg {
  display: block;
  width: 100%;
  height: 60px;
}

.comm-curve-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 4;
}

.comm-curve-bottom svg {
  display: block;
  width: 100%;
  height: 60px;
}

.community-illustration-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.community-illustration-wrap img {
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

.community-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0 32px;
}

.community-stat-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--pm-radius-md);
  padding: 18px 22px;
  backdrop-filter: blur(10px);
}

.community-stat-number {
  font-size: clamp(34px, 3.8vw, 46px);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 4px;
}

.community-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* =====================================================
   15. SECTION 9: WHAT OUR USERS SAY
   ===================================================== */
.section-testimonials {
  background: var(--pm-cream);
  min-height: 360px;
  padding-top: 80px;
  padding-bottom: 90px;
}

.testi-card-box {
  background: var(--pm-white);
  border-radius: var(--pm-radius-md);
  padding: 32px 26px;
  box-shadow: var(--pm-shadow-sm);
  border: 1px solid rgba(9, 21, 55, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testi-card-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--pm-shadow-lg);
}

.testi-stars-row {
  color: var(--pm-yellow);
  font-size: 17px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testi-quote-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--pm-navy);
  margin-bottom: 22px;
}

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

.testi-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-author-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--pm-navy);
  margin: 0;
  line-height: 1.2;
}

.testi-author-role {
  font-size: 13px;
  color: #6B7280;
  margin: 0;
}

/* =====================================================
   16. SECTION 10: FAQ (FREQUENTLY ASKED QUESTIONS)
   ===================================================== */
.section-faq {
  background: var(--pm-cream);
  min-height: 500px;
  padding-top: 80px;
  padding-bottom: 90px;
}

.faq-accordion .accordion-item {
  background: var(--pm-white);
  border: 1px solid rgba(9, 21, 55, 0.06);
  border-radius: 16px !important;
  margin-bottom: 12px;
  box-shadow: var(--pm-shadow-sm);
  overflow: hidden;
}

.faq-accordion .accordion-button {
  background: var(--pm-white);
  color: var(--pm-navy);
  font-size: 16px;
  font-weight: 800;
  padding: 18px 22px;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--pm-orange);
  background: var(--pm-white);
}

.faq-accordion .accordion-body {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.65;
  padding: 0 22px 20px;
}

.faq-support-panel {
  background: var(--pm-white);
  border-radius: var(--pm-radius-lg);
  padding: 34px 28px;
  box-shadow: var(--pm-shadow-md);
  border: 1px solid rgba(9, 21, 55, 0.06);
  text-align: center;
  position: relative;
}

.faq-bubble-tag {
  background: var(--pm-navy);
  color: #FFF;
  padding: 12px 18px;
  border-radius: 18px 18px 18px 0;
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}

.faq-character-illustration {
  max-height: 260px;
  margin: 0 auto 16px;
}

/* =====================================================
   17. SECTION 11: FROM OUR BLOG
   ===================================================== */
.section-blog {
  background: var(--pm-cream);
  min-height: 380px;
  padding-top: 70px;
  padding-bottom: 90px;
}

.blog-item-card {
  background: var(--pm-white);
  border-radius: var(--pm-radius-md);
  overflow: hidden;
  box-shadow: var(--pm-shadow-sm);
  border: 1px solid rgba(9, 21, 55, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--pm-shadow-lg);
}

.blog-thumb-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-item-card:hover .blog-thumb-wrap img {
  transform: scale(1.05);
}

.blog-body-meta {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-date-line {
  font-size: 12px;
  font-weight: 700;
  color: var(--pm-orange);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.blog-card-headline {
  font-size: 17px;
  font-weight: 800;
  color: var(--pm-navy);
  line-height: 1.35;
  margin-bottom: 12px;
}

/* =====================================================
   18. SECTION 12: READY TO EXPLORE? (NAVY CTA)
   ===================================================== */
.section-final-cta {
  background: var(--pm-navy);
  min-height: 340px;
  padding-top: 100px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.final-cta-curve-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 4;
}

.final-cta-curve-top svg {
  display: block;
  width: 100%;
  height: 55px;
}

.mantra-sticky-note-card {
  background: #FFFBEA;
  border-radius: 18px;
  padding: 28px 24px;
  color: var(--pm-navy);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
  transform: rotate(2.5deg);
  border: 1px solid rgba(255, 196, 43, 0.4);
  max-width: 320px;
  margin-left: auto;
}

.mantra-note-header {
  font-size: 18px;
  font-weight: 900;
  color: var(--pm-navy);
  border-bottom: 2px dashed rgba(9, 21, 55, 0.15);
  padding-bottom: 10px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mantra-check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mantra-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  color: var(--pm-navy);
}

.mantra-check-item i {
  color: #10B981;
  font-size: 18px;
}

/* =====================================================
   19. SECTION 13: FOOTER
   ===================================================== */
.pm-footer {
  background: var(--pm-navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 75px;
  padding-bottom: 35px;
  position: relative;
}

.footer-brand-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  color: #FFFFFF !important;
  margin-bottom: 14px;
}

.footer-bio-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 22px;
  max-width: 300px;
}

.footer-social-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: all 0.2s ease;
}

.footer-social-link:hover {
  background: var(--pm-orange);
  color: #FFF;
  transform: translateY(-2px);
}

.footer-heading-col {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 18px;
}

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

.footer-menu-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.footer-menu-links a:hover {
  color: var(--pm-orange);
  transform: translateX(3px);
}

.footer-copyright-bar {
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* =====================================================
   20. REVEAL & ACCESSIBILITY
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.reveal-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.reveal-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
}
