/* ============================================================
   PrimePic – style.css
   Font: Outfit | Framework: Bootstrap 5.3.0
   ============================================================ */

:root {
  --pp-dark: #0a1628;
  --pp-dark-2: #0d1e38;
  --pp-dark-card: #0f2040;
  --pp-blue-mid: #0e3a6e;
  --pp-pink: #EC4899;
  --pp-blue: #8B5CF6;
  --pp-pink-light: #ff4dab;
  --pp-cyan: #00d4ff;
  --pp-white: #ffffff;
  --pp-muted: rgba(255, 255, 255, 0.55);
  --pp-border: rgba(255, 255, 255, 0.08);
  --pp-gradient: linear-gradient(135deg, #e91e8c 0%, #00d4ff 100%);
  --pp-glow-pink: 0 0 30px rgba(233, 30, 140, 0.35);
  --pp-glow-blue: 0 0 30px rgba(0, 212, 255, 0.25);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(180.25deg, #0C6398 0.22%, #021A29 167.09%);
  color: var(--pp-white);
  overflow-x: hidden;
}

/* ── NAVBAR ── */

.navbar-nav .nav-item {
  position: relative;
}

.navbar-nav .nav-item::after {
  content: '';
  width: 1px;
  height: 21px;
  background-color: var(--pp-white);
  position: absolute;
  right: -8px;
  top: 12px;
}

.navbar-nav .nav-item:last-of-type::after {
  display: none;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--pp-pink);
}

.pp-navbar {
  padding: 0;
  min-height: 74px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.is-scroll .pp-navbar {
  background: #0C6398;
  border-bottom: 1px solid #198cd2;
}

.pp-navbar .nav-link {
  color: var(--pp-white);
  font-weight: 600;
  font-size: 20px;
  transition: color 0.2s;
}

.pp-navbar .nav-link:hover {
  color: var(--pp-pink) !important;
}

.pp-logo {
  text-decoration: none;
  padding: 0;
}

.pp-logo img {
  max-height: 64px;
}

@media screen and (max-width: 991.98px) {
  .pp-logo img {
    max-height: 54px;
  }
}

.pp-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.18);
}

/* ── BUTTONS ── */
.pp-btn-pink {
  background: linear-gradient(93.52deg, var(--pp-blue) 0%, var(--pp-pink) 97.1%);
  color: var(--pp-white);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 15px;
}

.pp-btn-pink:hover {
  background: linear-gradient(93.52deg, var(--pp-pink) 0%, var(--pp-blue) 97.1%);
  box-shadow: var(--pp-glow-pink);
  color: var(--pp-white);
  transform: translateY(-1px);
}

.pp-navbar .pp-btn-pink:hover {
  color: var(--pp-white) !important;
}

.pp-btn-outline {
  background: transparent;
  color: var(--pp-white);
  font-weight: 600;
  font-size: 16px;
  border: 1px solid var(--pp-white);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  padding: 16px 15px;
  border-radius: 30px;
}

.mx-303 {
  max-width: 303px;
}

.pp-btn-outline.bg-white {
  color: #042032;
}

.mx-150 {
  max-width: 150px;
  margin: 0 auto;
}

.pp-btn-outline:hover {
  background-color: var(--pp-white);
  border-color: var(--pp-white);
  color: var(--pp-dark);
  transform: translateY(-1px);
}

/* ── HERO ── */
.pp-hero {
  position: relative;
  overflow: hidden;
  padding-top: 200px;
  padding-bottom: 180px;
}

.pp-hero-bg {
  background: url('../images/hero-background.webp')no-repeat center center;
  mix-blend-mode: lighten;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: bottom;
}

.pp-hero .container {
  position: relative;
  z-index: 1;
}

.pp-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.text-shadow-2 {
  background: linear-gradient(190deg, #8B5CF6 0%, #EC4899 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pp-hero-sub {
  font-size: 30px;
  font-weight: 500;
  color: var(--pp-white);
  max-width: 940px;
  line-height: 1.2;
  margin-bottom: 50px;
}

.pp-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pp-muted);
}

.pp-section-image-generator {
  margin-top: -80px;
}

/* ── GRADIENT TEXT ── */
.pp-gradient-text {
  color: var(--pp-pink);
}

/* ── SECTIONS ── */
.pp-section-dark {
  background-color: var(--pp-dark);
  position: relative;
}

.pp-section-dark:nth-child(even) {
  background-color: var(--pp-dark-2);
}

.pp-section-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}

.pp-section-sub {
  color: var(--pp-white);
  font-size: 30px;
  margin: 0 auto 50px;
  font-weight: 200;
  line-height: 1.2;
}

.mx-950 {
  max-width: 950px;
}

/* ── CHIP ── */
.pp-chip {
  background: #0C6398;
  color: #fff;
  font-size: 30px;
  font-weight: 300;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  min-width: 344px;
  margin-bottom: 40px;
  line-height: 1.2;
}

/* ── PROMPT BAR ── */
.pp-prompt-bar {
  max-width: 760px;
  border: 1px solid var(--pp-border);
  border-radius: 30px;
  padding: 20px 20px 20px 20px;
  backdrop-filter: blur(8px);
  background: linear-gradient(90deg, rgba(52, 173, 248, 0.4) 0%, rgba(255, 255, 255, 0.4) 100%);
  position: relative;
}

.pp-prompt-bar::before {
  content: '';
  width: 24px;
  height: 24px;
  background: url('../images/edit.svg')no-repeat center center;
  display: inline-block;
  left: 0;
  top: 0;
}

.pp-prompt-input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--pp-white);
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 100;
  width: 100%;
}

/* ── CONTACT PAGE ── */
.pp-contact-hero {
  padding: 180px 0 120px;
}

.pp-contact-hero .pp-chip {
  margin-bottom: 24px !important;
  display: inline-block;
}

.pp-contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(20px);
}

.pp-contact-card h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--pp-white);
}

.pp-contact-info {
  font-size: 22px;
  margin-bottom: 1rem;
}

.pp-contact-info a {
  color: var(--pp-white);
  text-decoration: none;
  transition: color 0.25s ease;
}

.pp-contact-info a:hover {
  color: var(--pp-cyan);
}

.pp-contact-hours {
  display: grid;
  gap: 18px;
}

.pp-contact-hour span {
  display: block;
  color: var(--pp-muted);
  font-size: 15px;
  margin-bottom: 8px;
}

.pp-contact-hour strong {
  display: block;
  color: var(--pp-white);
  font-size: 18px;
  line-height: 1.4;
}

.pp-contact-note {
  color: var(--pp-muted);
  margin-top: 26px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .pp-contact-hero {
    padding: 120px 0 80px;
  }

  .pp-contact-card {
    padding: 28px 24px;
  }

  .pp-contact-info {
    font-size: 18px;
  }
}

/* ── TERMS PAGE ── */
.pp-terms-hero {
  padding: 180px 0 0;
}

.pp-terms-hero .pp-chip {
  margin-bottom: 24px;
  display: inline-block;
}

.pp-terms-content {
  padding: 80px 0;
}

.pp-terms-text {
  color: var(--pp-white);
  line-height: 1.7;
}

.pp-terms-text h2 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 60px;
  margin-bottom: 20px;
  color: var(--pp-white);
}

.pp-terms-text h2:first-of-type {
  margin-top: 0;
}

.pp-terms-text h3 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--pp-cyan);
}

.pp-terms-text h4 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 12px;
  color: var(--pp-pink);
}

.pp-terms-text p {
  margin-bottom: 20px;
  font-size: 18px;
}

.pp-terms-text ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.pp-terms-text li {
  margin-bottom: 10px;
  font-size: 18px;
}

.pp-terms-text a {
  color: var(--pp-cyan);
  text-decoration: none;
}

.pp-terms-text a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .pp-terms-hero {
    padding: 120px 0 80px;
  }

  .pp-terms-content {
    padding: 60px 0;
  }

  .pp-terms-text h2 {
    font-size: 24px;
  }

  .pp-terms-text h3 {
    font-size: 20px;
  }

  .pp-terms-text h4 {
    font-size: 18px;
  }

  .pp-terms-text p,
  .pp-terms-text li {
    font-size: 16px;
  }
}

/* ── PRIVACY PAGE ── */
.pp-privacy-hero {
  padding: 180px 0 0;
}

.pp-privacy-hero .pp-chip {
  margin-bottom: 24px;
  display: inline-block;
}

.pp-privacy-content {
  padding: 80px 0;
}

.pp-privacy-text {
  color: var(--pp-white);
  line-height: 1.7;
}

.pp-privacy-text h2 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 60px;
  margin-bottom: 20px;
  color: var(--pp-white);
}

.pp-privacy-text h2:first-of-type {
  margin-top: 0;
}

.pp-privacy-text h3 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--pp-cyan);
}

.pp-privacy-text p {
  margin-bottom: 20px;
  font-size: 18px;
}

.pp-privacy-text ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.pp-privacy-text li {
  margin-bottom: 10px;
  font-size: 18px;
}

.pp-privacy-text a {
  color: var(--pp-cyan);
  text-decoration: none;
}

.pp-privacy-text a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .pp-privacy-hero {
    padding: 120px 0 80px;
  }

  .pp-privacy-content {
    padding: 60px 0;
  }

  .pp-privacy-text h2 {
    font-size: 24px;
  }

  .pp-privacy-text h3 {
    font-size: 20px;
  }

  .pp-privacy-text p,
  .pp-privacy-text li {
    font-size: 16px;
  }
}

/* ── REFUND PAGE ── */
.pp-refund-hero {
  padding: 180px 0 0;
}

.pp-refund-hero .pp-chip {
  margin-bottom: 24px;
  display: inline-block;
}

.pp-refund-content {
  padding: 80px 0;
}

.pp-refund-text {
  color: var(--pp-white);
  line-height: 1.7;
}

.pp-refund-text h2 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 60px;
  margin-bottom: 20px;
  color: var(--pp-white);
}

.pp-refund-text h2:first-of-type {
  margin-top: 0;
}

.pp-refund-text h3 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--pp-cyan);
}

.pp-refund-text p {
  margin-bottom: 20px;
  font-size: 18px;
}

.pp-refund-text ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.pp-refund-text li {
  margin-bottom: 10px;
  font-size: 18px;
}

.pp-refund-text a {
  color: var(--pp-cyan);
  text-decoration: none;
}

.pp-refund-text a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .pp-refund-hero {
    padding: 120px 0 80px;
  }

  .pp-refund-content {
    padding: 60px 0;
  }

  .pp-refund-text h2 {
    font-size: 24px;
  }

  .pp-refund-text h3 {
    font-size: 20px;
  }

  .pp-refund-text p,
  .pp-refund-text li {
    font-size: 16px;
  }
}

.pp-prompt-input::placeholder {
  font-family: 'Outfit', sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  font-weight: 100;
}

/* ── GALLERY ── */
.pp-gallery-item {
  height: 420px;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.pp-gallery-item.tall {
  height: 400px;
  background-repeat: no-repeat;
}

.pp-gallery-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.18);
}

/* ── FEATURE CARDS ── */
.pp-feature-card {
  border: 1px solid var(--pp-pink);
  padding: 32px 26px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.25s;
  box-shadow: 4px 4px 10px 0px rgba(4, 32, 50, 0.2);
}

.pp-feature-card:hover {
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  transform: translateY(-6px);
}

.pp-feature-card h5 {
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 15px;
}

.pp-feature-card p {
  font-size: 19px;
  line-height: 1.2;
  margin: 0;
}

.pp-feature-icon {
  width: 99px;
  height: 99px;
  background: linear-gradient(130.6deg, #8B5CF6 13.85%, #EC4899 79.23%);
  box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.3) inset;
  border-radius: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.pp-feature-border {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-feature-border img {
  max-width: 100%;
}

/* ── POSE BANNER ── */
.pp-pose-banner {
  background: url('../images/process.webp')no-repeat center center;
  overflow: hidden;
  position: relative;
  background-size: cover;
}


.pp-pose-left,
.pp-pose-right {
  font-size: 64px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  z-index: 1;
  position: relative;
}

.pp-pose-left {
  color: var(--pp-pink);
}

.pp-pose-right {
  text-align: right;
  color: var(--pp-cyan);
}

.pp-pose-left span,
.pp-pose-right span {
  display: block;
}

.pp-pose-left .text-image,
.pp-pose-right .text-reimagine {
  color: transparent;
  -webkit-text-stroke: 1px rgba(26, 166, 254, 1);
  font-family: sans-serif;
}

.pp-pose-left .text-your,
.pp-pose-right .text-every {
  background: linear-gradient(96.13deg, #8B5CF6 13.84%, #1AA6FE 60.78%, #EC4899 95.18%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pp-pose-right .text-every,
.pp-pose-right .text-pose {
  color: var(--pp-white);
  margin-right: 20px;
}

.pp-pose-left .text-image {
  margin-left: 30px;
}

.pp-pose-models {
  z-index: 1;
  position: relative;
  width: 100%;
}

.pp-pose-models img {
  max-width: 100%;
}



/* ── STEPS ── */
.pp-step-card {
  padding: 32px 24px;
  transition: border-color 0.3s, transform 0.25s;
  box-shadow: 4px 4px 4px 0px rgba(12, 99, 152, 1);
  border: 1px solid var(--pp-pink);
  position: relative;
}

.pp-step-card::after {
  content: '';
  width: 40px;
  height: 40px;
  position: absolute;
  right: -47px;
  top: 50%;
  background: url('../images/circled-up-right.svg') no-repeat center center;
}

.pp-step-card.last::after {
  display: none;
}

.pp-step-card:hover {
  border-color: rgba(0, 212, 255, 0.35);
  transform: translateY(-4px);
}

.pp-step-num {
  font-size: 30px;
  font-weight: 800;
  margin: 0 auto;
}

.pp-step-num span {
  display: inline-block;
  position: relative;
}

.pp-step-num span b {
  position: absolute;
  left: 50%;
  top: 50%;
  line-height: 1;
  margin-top: -15px;
  margin-left: -10px;
  width: 20px;
  text-align: center;
}

.pp-step-card h5 {
  font-weight: 800;
  font-size: 30px;
  margin-bottom: 25px;
}

.pp-step-card p {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  margin: 0;
}

/* ── DEMO VIDEO ── */

.pp-demo-video {
  max-width: 800px;
}

.pp-demo-video video {
  height: 420px;
}

.pp-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  cursor: pointer;
}

.pp-play-btn .icon {
  width: 80px;
}

.pp-demo-video {
  border-radius: 0;
  overflow: hidden;
  max-width: 1024px;
}

.pp-demo-video img {
  display: block;
  object-fit: cover;
  height: 420px;
}

.pp-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.pp-play-btn img {
  max-width: 90px;
  height: auto;
}

.pp-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

/* ── CTA STRIP ── */
.pp-cta-strip .pp-cta-data {
  max-width: 710px;
  box-shadow: 0px 4px 10px 0px rgba(255, 255, 255, 0.2);
  padding: 10px;
  margin: 0 auto;
}

.pp-cta-data-border {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 20px;
}

.pp-cta-text {
  font-size: 30px;
  font-weight: 800;
  line-height: 50px;
}

.pp-cta-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(137.6deg, #8B5CF6 7.05%, #EC4899 95.23%);
}

/* ── PRICING ── */
.pp-pricing-card {
  border: 1px solid var(--pp-white);
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.25s, box-shadow 0.3s;
}

.pp-pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.pp-pricing-featured {
  border-color: var(--pp-white);
  background: linear-gradient(155.74deg, #0C6398 3.56%, #EC4899 122.65%);
}

.pp-pricing-featured:hover {
  transform: translateY(-14px);
}

.pp-popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  color: #042032;
  font-size: 15px;
  font-weight: 800;
  padding: 10px 6px 40px;
  border-radius: 0px 0 0 180px;
  white-space: nowrap;
  line-height: 20px;
  text-align: center;
  width: 90px;
  display: flex;
  justify-content: end;
}

.pp-plan-name {
  font-size: 30px;
  font-weight: 800;
}

.pp-price {
  font-size: 40px;
  font-weight: 800;
  margin: 37px 0;
}

.pp-plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pp-plan-features li {
  font-size: 20px;
  font-weight: 300;
  padding: 6px 0;
  position: relative;
  padding-left: 20px;
}

.pp-plan-features li::before {
  content: '';
  width: 10px;
  height: 10px;
  background-color: var(--pp-white);
  position: absolute;
  left: 0;
  top: 16px;
  border-radius: 180px;
}

.pp-plan-features li:last-child {
  border-bottom: none;
}

.pp-plan-note {
  margin-top: 120px;
}

.pp-plan-note p {
  font-weight: 200;
  font-size: 25px;
  line-height: 1.2;
  margin: 0 0 20px;
}

.pp-plan-note h4 {
  color: rgba(245, 245, 245, 0.5);
  font-weight: 600;
  font-size: 30px;
}

/* ── BOTTOM CTA ── */
.pp-bottom-cta {
  position: relative;
  background: var(--pp-dark-2);
  overflow: hidden;
}

.ready-section {
  background-color: #0C6398;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  padding: 47px;
}

.common-margin-top {
  margin-top: 130px;
}

.common-margin {
  margin: 130px 0;
}

.common-padding {
  padding: 130px 0;
}

.common-margin-80 {
  margin: 80px 0;
}

/* ── FOOTER ── */
.pp-footer {
  background: linear-gradient(180deg, #0C6398 0%, #051d2e 100%);
  padding: 50px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.pp-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.5) 50%, transparent 100%);
}

.pp-footer-content {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pp-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pp-footer-brand .pp-logo img {
  max-height: 80px;
  margin-bottom: 8px;
}

.pp-footer-tagline {
  font-size: 16px;
  color: var(--pp-muted);
  margin: 0;
  font-weight: 400;
}

.pp-footer-socials {
  display: flex;
  gap: 12px;
}

.pp-social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}

.pp-social-icon:hover {
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.25);
  transform: translateY(-2px);
}

.pp-social-icon i {
  background: url('../images/insta-icon.svg')no-repeat center center;
  width: 28px;
  height: 29px;
}

.pp-social-icon i.fb {
  background: url('../images/fb-icon.svg')no-repeat center center;
  width: 17px;
  height: 30px;
}

.pp-social-icon i.you-tube {
  background: url('../images/you-tube-icon.svg')no-repeat center center;
  width: 34px;
  height: 28px;
}

.pp-social-icon:hover i {
  filter: brightness(1) opacity(1);
}

.pp-footer-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  margin: 0;
}

.pp-footer-bottom {
  padding-top: 25px;
  font-size: 15px;
  gap: 18px;
}

.pp-footer-bottom .pp-footer-copy {
  margin-bottom: 0;
}

.pp-copy-icon {
  font-size: 14px;
  color: var(--pp-cyan);
  font-weight: 700;
}

.pp-footer-copy {
  color: var(--pp-muted);
}

.pp-footer-links-minimal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pp-footer-links-minimal li {
  margin: 0;
}

.pp-footer-links-minimal li::before {
  content: '•';
  color: var(--pp-muted);
  margin-right: 14px;
}

.pp-footer-copy a {
  color: var(--pp-cyan);
  font-weight: 600;
  text-decoration: none;
}

.pp-footer-links-minimal {
  color: var(--pp-muted);
  font-size: 12px;
}

.pp-footer-links-minimal a {
  color: var(--pp-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
  font-size: 15px;
}

.pp-footer-links-minimal a:hover {
  color: var(--pp-cyan);
}

@media (max-width: 768px) {
  .pp-footer {
    padding: 40px 0 25px;
  }

  .pp-footer-content {
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    padding-bottom: 25px;
  }

  .pp-footer-brand {
    align-items: center;
  }

  .pp-footer-socials {
    justify-content: center;
  }

  .pp-footer-bottom {
    padding-top: 20px;
    flex-direction: column;
    gap: 8px !important;
  }

  .pp-footer-links-minimal {
    display: block;
    margin-top: 5px;
  }
}


/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pp-hero .container>* {
  animation: fadeUp 0.7s ease forwards;
  opacity: 0;
}

.pp-hero .container>*:nth-child(1) {
  animation-delay: 0.1s;
}

.pp-hero .container>*:nth-child(2) {
  animation-delay: 0.25s;
}

.pp-hero .container>*:nth-child(3) {
  animation-delay: 0.4s;
}

.pp-hero .container>*:nth-child(4) {
  animation-delay: 0.55s;
}

@media (max-width: 1480px) {

  .pp-pose-left,
  .pp-pose-right {
    font-size: 44px;
  }
}

@media (max-width: 991px) {

  .pp-step-card::after {
    display: none;
  }

  .pp-hero-sub {
    font-size: 20px;
  }

  .pp-chip {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .pp-btn-outline,
  .pp-btn-pink {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar-toggler {
    border-color: var(--pp-white) !important;
  }

  .navbar-toggler-icon {
    background: none !important;
  }

  .pp-hero-bg::after {
    top: -93.8px;
  }

  .navbar-collapse {
    background: linear-gradient(180.25deg, #0C6398 0.22%, #021A29 167.09%);
    border-radius: 10px;
  }

  .navbar-nav .nav-item::after {
    display: none;
  }

  .pp-navbar .nav-link {
    padding: 0;
  }

  .navbar-nav {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .pp-section-title {
    font-size: 30px;
  }

  .pp-section-sub {
    font-size: 20px;
    margin-bottom: 35px;
  }

  .pp-prompt-bar {
    padding: 15px 15px 15px 15px;
  }

  .pp-step-card h5,
  .pp-feature-card h5 {
    font-size: 20px;
  }

  .pp-step-card p,
  .pp-feature-card p {
    font-size: 16px;
  }

  .pp-step-card,
  .pp-feature-card {
    padding: 20px;
  }

  .pp-cta-text {
    font-size: 22px;
  }

  .pp-pricing-card {
    padding: 36px 20px;
  }

  .pp-plan-features li {
    font-size: 16px;
  }

  .pp-price {
    font-size: 30px;
    margin: 20px 0;
    line-height: 1;
  }

  .pp-plan-name {
    font-size: 25px;
  }

  .pp-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pp-gradient);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 16px;
    border-radius: 50px;
    white-space: nowrap;
    line-height: 1;
  }

  .pp-plan-note h4 {
    font-size: 20px;
  }

  .pp-plan-note p {
    font-size: 22px;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

}

@media (max-width: 767px) {


  .pp-chip {
    font-size: 18px;
  }

  .pp-hero-sub {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 40px;
  }

  .pp-section-title {
    font-size: 24px;
  }

  .pp-section-sub {
    font-size: 17px;
  }

  .common-margin {
    margin: 80px 0;
  }

  .common-margin-top {
    margin-top: 80px;
  }

  .common-padding {
    padding: 80px 0;
  }

  .pp-footer-btm {
    padding: 40px 0;
  }

  .pp-footer-year {
    font-size: 100px;
  }

  .pp-footer-copy {
    font-size: 17px;
  }

  .pp-plan-note {
    margin-top: 80px;
  }

  .pp-plan-note h4 {
    font-size: 17px;
  }

  .pp-plan-note p {
    font-size: 20px;
  }

  .pp-feature-icon {
    width: 79px;
    height: 79px;
  }

  .pp-feature-border {
    width: 60px;
    height: 60px;
  }

  .pp-feature-border img {
    max-width: 70%;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .pp-pose-banner {
    flex-direction: column;
    gap: 24px;
    padding: 32px 20px;
  }

  .pp-pose-right .text-every,
  .pp-pose-right .text-pose {
    margin-right: 0;
  }

  .pp-pose-left .text-image {
    margin-left: 0;
  }

  .pp-pose-left,
  .pp-pose-right {
    text-align: center;
  }

  .pp-demo-video img {
    height: 320px;
  }

  .pp-demo-video video {
    height: 320px;
  }

  .pp-play-btn img {
    height: auto;
  }

  .pp-pricing-featured {
    transform: translateY(0);
  }


}

@media (max-width: 576px) {
  .pp-gallery-item {
    height: 240px;
  }

  .pp-gallery-item.tall {
    height: 180px;
  }
}