* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    overflow-x: hidden;
}

/* Header */
header {
    background-color: #ffffff;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

nav {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo-container {
    height: 60px;
}

.logo-container img {
    height: 100%;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #6B4EFF;;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s;
}

.nav-links a:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 140px 30px 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 56px;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-text h1 .highlight {
    color: #FFD93D;
    display: block;
}

.hero-text p {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Download Form Card */
.download-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
}

.free-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #FFD93D 0%, #FFA500 100%);
    color: #333;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(255,165,0,0.4);
    transform: rotate(3deg);
}

.download-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    color: #667eea;
    margin-bottom: 10px;
    text-align: center;
}

.download-card p {
    color: #666;
    text-align: center;
    margin-bottom: 25px;
    font-size: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Quicksand', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 6px 20px rgba(102,126,234,0.4);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102,126,234,0.5);
}

/* Wave Transitions */
.wave-transition {
    position: relative;
}

.wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

/* Decorative Elements */
.floating-icon {
    position: absolute;
    font-size: 40px;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.icon-1 { top: 10%; left: 5%; animation-delay: 0s; }
.icon-2 { top: 20%; right: 8%; animation-delay: 1s; }
.icon-3 { bottom: 15%; left: 10%; animation-delay: 2s; }
.icon-4 { top: 60%; right: 5%; animation-delay: 1.5s; }

/* Features Section */
.features {
    padding: 80px 30px 80px;
    background: linear-gradient(to bottom, #f8f9ff 0%, #ffffff 100%);
    position: relative;
}

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

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 48px;
    color: #333;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 24px;
    color: #667eea;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* Preview Section */
.preview {
    padding: 120px 30px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

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

.preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.preview-text h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 48px;
    color: white;
    margin-bottom: 25px;
}

.preview-text p {
    font-size: 18px;
    color: rgba(255,255,255,0.95);
    line-height: 1.8;
    margin-bottom: 20px;
}

.preview-image {
    background: transparent;
    padding: 0px;
    border-radius: 20px;
    box-shadow: none;
}

.sample-page {
    background: linear-gradient(to bottom, #fff 0%, #f8f9ff 100%);
    border: 3px solid #667eea;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.sample-page h4 {
    font-family: 'Fredoka', sans-serif;
    color: #667eea;
    font-size: 24px;
    margin-bottom: 20px;
}

.sample-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sample-line {
    background: #e0e0e0;
    height: 8px;
    border-radius: 4px;
}

.sample-line.short {
    width: 60%;
    margin: 0 auto;
}

/* Upgrades Section */
.upgrades {
    padding: 120px 30px 80px;
    background: white;
    position: relative;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: linear-gradient(to bottom, #f8f9ff 0%, #ffffff 100%);
    border: 3px solid #e0e0e0;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 15px 40px rgba(102,126,234,0.2);
}

.pricing-card.featured {
    border-color: #FFD93D;
    background: linear-gradient(to bottom, #fffdf0 0%, #ffffff 100%);
    transform: scale(1.05);
}

.pricing-badge {
    background: linear-gradient(135deg, #FFD93D 0%, #FFA500 100%);
    color: #333;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.pricing-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    color: #667eea;
    margin-bottom: 15px;
}

.price {
    font-family: 'Fredoka', sans-serif;
    font-size: 48px;
    color: #333;
    margin-bottom: 10px;
}

.price span {
    font-size: 24px;
    color: #666;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #666;
}

.pricing-features li:before {
    content: '✓';
    color: #667eea;
    font-weight: bold;
    margin-right: 10px;
}

.pricing-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
    cursor: pointer;
    transition: transform 0.3s;
}

.pricing-btn:hover {
    transform: translateY(-3px);
}

/* CTA Section */
.cta {
    padding: 120px 30px 80px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    text-align: center;
    position: relative;
}

.cta h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
}

.cta p {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 40px;
}

.cta-btn {
    background: white;
    color: #f5576c;
    padding: 20px 50px;
    border: none;
    border-radius: 15px;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s;
    text-decoration: none
}

.cta-btn:hover {
    transform: translateY(-5px);
}

/* Footer */
footer {
    background: #ffffff;
    color: white;
    padding: 40px 30px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content,
    .preview-content {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .nav-links {
        display: none;
    }
}
.wave-top {
  line-height: 0;
  overflow: hidden;
}

.wave-top svg {
  display: block;
  width: 100%;
  height: 120px;
}
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  padding: 140px 30px 80px; /* extra bottom room for wave */
  position: relative;
  overflow: hidden;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;        /* hides seam */
  line-height: 0;
  pointer-events: none;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 120px;
}
.hero-content{
  position: relative;
  z-index: 2;
}

.hero-wave{
  z-index: 1;
}

.hero-content { position: relative; z-index: 2; }
.hero-wave { z-index: 1; }
.hero-content { position: relative; z-index: 2; }

.hero-wave{
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  z-index: 1;
  line-height: 0;
  pointer-events: none;
}

.hero-wave svg{
  display: block;
  width: 100%;
  height: 120px;
}
.hero-content { position: relative; z-index: 2; }

.hero-wave{
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;            /* seam fix */
  line-height: 0;
  pointer-events: none;
  z-index: 1;
  transform: rotate(180deg); /* <-- THIS is the missing piece */
  overflow: hidden;
}

.hero-wave svg{
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;            /* match your other waves */
}
.features {
  position: relative;
  overflow: hidden;
}

.features-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  transform: rotate(180deg);
  line-height: 0;
  pointer-events: none;
}

.features-wave svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}
.features-wave {
  bottom: -2px;
}

.jotform-shell {
  background: #ffffff;
  border-radius: 0px;
  padding: 5px;
  overflow: hidden;              /* hides any iframe edge weirdness */
}

.jotform-shell iframe {
  width: 100%;
  height: 500px;                 /* start here; adjust if needed */
  border: 0;
  display: block;
}

/* Preview image (3-page fan mockup) */
.preview-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.preview-fan {
  width: 130%;
  max-width: 520px;      /* adjust to taste */
  height: auto;
  display: block;

  /* keeps it crisp + avoids weird scaling */
  image-rendering: auto;

  /* optional: subtle extra pop even if PNG already has shadows */
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.18));
}

/* Slightly larger on wider screens */
@media (min-width: 900px) {
  .preview-fan {
    max-width: 600px;
  }
}

.preview.wave-transition {
  position: relative;
  padding-bottom: 160px; /* increase this to push the wave lower */
}

.pp-section {
  margin: 100px auto;  /* top/bottom spacing */
}

/* ============================================================
   PASSPORT PALS — Port Packs Section
   Paste this block into your existing CSS file.
   All rules are scoped to .pp-* to avoid conflicts.
   ============================================================ */

/* ── Variables ── */
:root {
  --pp-purple:  #667eea;
  --pp-violet:  #764ba2;
  --pp-gold:    #FFD93D;
  --pp-gold-dk: #FFA500;
  --pp-ink:     #2d3748;
  --pp-muted:   #666;
  --pp-border:  #e0e0e0;
  --pp-radius:  18px;
  --pp-shadow:  0 10px 30px rgba(102, 126, 234, .15);
}

/* ── Section shell ── */
.pp-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 72px 30px;
  background: linear-gradient(160deg, #f0ecff 0%, #f8f4ff 60%, #fff5fd 100%);
  border-radius: 32px;
}

/* ── Section header ── */
.pp-header {
  text-align: center;
  margin-bottom: 36px;
}

.pp-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 42px;
  color: var(--pp-ink);
  margin-bottom: 10px;
}

.pp-subtitle {
  font-size: 18px;
  color: var(--pp-muted);
  line-height: 1.6;
}

/* ── Filter pills ── */
.pp-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.pp-filter {
  background: #ffffff;
  border: 2px solid var(--pp-border);
  color: var(--pp-muted);
  padding: 10px 22px;
  border-radius: 30px;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
}

.pp-filter:hover {
  border-color: var(--pp-purple);
  color: var(--pp-purple);
}

.pp-filter.active {
  background: linear-gradient(135deg, var(--pp-purple), var(--pp-violet));
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(102, 126, 234, .35);
}

/* ── Card grid ── */
.pp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── Port pack card ── */
.pp-card {
  background: #ffffff;
  border: 2px solid var(--pp-border);
  border-radius: var(--pp-radius);
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  animation: ppFadeIn .3s ease both;
}

.pp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(102, 126, 234, .18);
  border-color: var(--pp-purple);
}

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

/* Card badge */
.pp-card-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pp-gold), var(--pp-gold-dk));
  color: #333;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(255, 165, 0, .3);
  letter-spacing: .5px;
}

.pp-card-emoji {
  font-size: 44px;
  text-align: center;
  display: block;
  margin-bottom: 10px;
}

.pp-card-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 20px;
  color: var(--pp-ink);
  text-align: center;
  margin-bottom: 4px;
  line-height: 1.2;
}

.pp-card-region {
  font-size: 12px;
  color: var(--pp-muted);
  text-align: center;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.pp-card-price {
  font-family: 'Fredoka', sans-serif;
  font-size: 30px;
  color: var(--pp-purple);
  text-align: center;
  margin-bottom: 16px;
}

.pp-card-price small {
  font-size: 15px;
  color: var(--pp-muted);
}

.pp-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}

.pp-card-features li {
  font-size: 15px;
  color: #444;
  padding: 7px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

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

.pp-card-features li::before {
  content: '✦';
  color: var(--pp-purple);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Add button */
.pp-add-btn {
  background: linear-gradient(135deg, var(--pp-purple), var(--pp-violet));
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 13px 0;
  font-family: 'Fredoka', sans-serif;
  font-size: 17px;
  cursor: pointer;
  width: 100%;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 12px rgba(102, 126, 234, .3);
}

.pp-add-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(102, 126, 234, .45);
}

.pp-add-btn.added {
  background: linear-gradient(135deg, #43c98a, #2ecc71);
  box-shadow: 0 4px 12px rgba(46, 204, 113, .3);
}

/* Empty state */
.pp-empty {
  text-align: center;
  color: var(--pp-muted);
  font-size: 18px;
  padding: 48px 0;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .pp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .pp-section {
    margin: 40px 16px;
    padding: 48px 20px;
    border-radius: 24px;
  }

  .pp-title {
    font-size: 32px;
  }

  .pp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pp-filters {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .pp-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PASSPORT PALS — Cart UI Styles
   Paste into your existing CSS file (styles.css).
   All rules scoped to .cart-* to avoid conflicts.
   ============================================================ */

/* ── Floating cart button ── */
.cart-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 22px;
  font-family: 'Fredoka', sans-serif;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(102, 126, 234, .5);
  transition: transform .25s, box-shadow .25s;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 28px rgba(102, 126, 234, .5), 0 0 0 1px rgba(102, 126, 234, .3);
}

.cart-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(102, 126, 234, .6);
}

.cart-fab-icon {
  font-size: 22px;
  line-height: 1;
}

.cart-fab-count {
  background: #FFD93D;
  color: #333;
  font-size: 14px;
  font-weight: 800;
  min-width: 24px;
  height: 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  line-height: 1;
}

/* ── Overlay ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ── Drawer ── */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 420px;
  max-width: 95vw;
  background: #fff;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0, 0, 0, .18);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

.cart-drawer.open {
  transform: translateX(0);
}

/* ── Drawer header ── */
.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 20px;
  border-bottom: 2px solid #f0f0f0;
  flex-shrink: 0;
}

.cart-drawer-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 26px;
  color: #2d3748;
}

.cart-close-btn {
  background: #f0f0f0;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  color: #555;
}

.cart-close-btn:hover {
  background: #e0e0e0;
}

/* ── Item list ── */
.cart-items {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
}

/* ── Individual cart item ── */
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 24px;
  border-bottom: 1px solid #f5f5f5;
  animation: cartItemIn .25s ease both;
}

@keyframes cartItemIn {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0);    }
}

.cart-item-emoji {
  font-size: 32px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 16px;
  color: #2d3748;
  margin-bottom: 2px;
  line-height: 1.3;
}

.cart-item-sub {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.cart-item-price {
  font-family: 'Fredoka', sans-serif;
  font-size: 18px;
  color: #667eea;
  flex-shrink: 0;
  margin-right: 4px;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #ccc;
  font-size: 18px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: color .2s;
  flex-shrink: 0;
  margin-top: 2px;
}

.cart-item-remove:hover {
  color: #f5576c;
}

/* ── Empty state ── */
.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #aaa;
  padding: 40px 24px;
  text-align: center;
}

.cart-empty span {
  font-size: 52px;
}

.cart-empty p {
  font-family: 'Fredoka', sans-serif;
  font-size: 20px;
  color: #bbb;
}

.cart-empty small {
  font-size: 14px;
}

/* ── Footer ── */
.cart-footer {
  border-top: 2px solid #f0f0f0;
  padding: 20px 24px 28px;
  flex-shrink: 0;
  background: #ffffff;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: #666;
  margin-bottom: 8px;
}

.cart-total-main {
  font-family: 'Fredoka', sans-serif;
  font-size: 22px;
  color: #2d3748;
  margin-bottom: 18px;
}

.cart-checkout-btn {
  width: 100%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 16px;
  font-family: 'Fredoka', sans-serif;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(102, 126, 234, .4);
  transition: transform .2s, box-shadow .2s;
  margin-bottom: 10px;
}

.cart-checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(102, 126, 234, .5);
}

.cart-checkout-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.cart-secure-note {
  text-align: center;
  font-size: 12px;
  color: #aaa;
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .cart-fab {
    bottom: 20px;
    right: 16px;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 28px rgba(102, 126, 234, .5), 0 0 0 1px rgba(102, 126, 234, .3);
  }
}

/* ============================================================
   PASSPORT PALS — Port Packs Section + Flip Cards
   Replaces your existing port-packs CSS block in styles.css
   ============================================================ */

/* ── Variables ── */
:root {
  --pp-purple:  #667eea;
  --pp-violet:  #764ba2;
  --pp-gold:    #FFD93D;
  --pp-gold-dk: #FFA500;
  --pp-ink:     #2d3748;
  --pp-muted:   #666;
  --pp-border:  #e0e0e0;
  --pp-radius:  18px;
  --pp-shadow:  0 10px 30px rgba(102, 126, 234, .15);
}

/* ── Section shell ── */
.pp-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 72px 30px;
  background: linear-gradient(160deg, #f0ecff 0%, #f8f4ff 60%, #fff5fd 100%);
  border-radius: 32px;
}

/* ── Section header ── */
.pp-header {
  text-align: center;
  margin-bottom: 36px;
}

.pp-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 42px;
  color: var(--pp-ink);
  margin-bottom: 10px;
}

.pp-subtitle {
  font-size: 18px;
  color: var(--pp-muted);
  line-height: 1.6;
}

/* ── Filter pills ── */
.pp-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.pp-filter {
  background: #ffffff;
  border: 2px solid var(--pp-border);
  color: var(--pp-muted);
  padding: 10px 22px;
  border-radius: 30px;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
}

.pp-filter:hover {
  border-color: var(--pp-purple);
  color: var(--pp-purple);
}

.pp-filter.active {
  background: linear-gradient(135deg, var(--pp-purple), var(--pp-violet));
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(102, 126, 234, .35);
}

/* ── Card grid ── */
.pp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ============================================================
   FLIP CARD STRUCTURE
   .pp-card          → outer wrapper (sets height, perspective)
   .pp-card-inner    → rotates on flip
   .pp-card-front    → visible by default
   .pp-card-back     → hidden by default, shown on flip
   ============================================================ */

.pp-card {
  position: relative;
  height: 520px;                 /* fixed height so flip is clean */
  perspective: 1200px;
  animation: ppFadeIn .3s ease both;
  cursor: pointer;
}

/* Touch devices: toggled via JS class .is-flipped */
.pp-card.is-flipped .pp-card-inner {
  transform: rotateY(180deg);
}

/* Desktop: flip on hover */
@media (hover: hover) {
  .pp-card:hover .pp-card-inner {
    transform: rotateY(180deg);
  }
}

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

.pp-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
  transform-style: preserve-3d;
}

/* ── Shared face styles ── */
.pp-card-front,
.pp-card-back {
  position: absolute;
  inset: 0;
  border-radius: var(--pp-radius);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}

/* ── FRONT face ── */
.pp-card-front {
  background: #ffffff;
  border: 2px solid var(--pp-border);
  padding: 28px 22px 20px;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, box-shadow .25s;
}

.pp-card:hover .pp-card-front {
  border-color: var(--pp-purple);
  box-shadow: 0 16px 36px rgba(102, 126, 234, .18);
}

/* ── BACK face ── */
.pp-card-back {
  background: #fffdf8;
  border: 3px solid transparent;
  background-clip: padding-box;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  padding: 16px 14px 14px;

  /* Rainbow gradient border matching your journal style */
  outline: 3px solid transparent;
  box-shadow:
    0 0 0 3px #fff,
    0 0 0 5px #a78bfa,
    0 16px 36px rgba(102, 126, 234, .2);
}

/* Thin rainbow stripe at top of back (matches journal header style) */
.pp-card-back::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg,
    #f87171, #fb923c, #fbbf24,
    #4ade80, #60a5fa, #a78bfa, #f472b6);
  border-radius: 0 0 4px 4px;
}

/* ── Back: "INSIDE THIS PACK" label ── */
.pp-back-label {
  font-family: 'Fredoka', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--pp-violet);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 6px 0 10px;
}

/* ── Back: fanned booklet pages ── */
.pp-booklet {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

/* Each mini journal page */
.pp-page {
  position: absolute;
  width: 120px;
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,.12);
}

/* Rainbow border on each mini page */
.pp-page::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg,
    #f87171, #fbbf24, #4ade80, #60a5fa, #a78bfa, #f472b6);
}

.pp-page-body {
  padding: 6px 7px 8px;
}

/* Page positions — fanned effect */
.pp-page-1 {
  height: 158px;
  transform: rotate(-8deg) translate(-52px, 8px);
  z-index: 1;
}
.pp-page-2 {
  height: 168px;
  transform: rotate(0deg) translate(0px, 0px);
  z-index: 3;
}
.pp-page-3 {
  height: 158px;
  transform: rotate(8deg) translate(52px, 8px);
  z-index: 2;
}

/* Page header bar */
.pp-page-header {
  background: linear-gradient(90deg, var(--pp-purple), var(--pp-violet));
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-size: 8px;
  font-weight: 700;
  text-align: center;
  padding: 3px 4px;
  border-radius: 3px;
  margin-bottom: 5px;
  letter-spacing: .3px;
  text-transform: uppercase;
}

/* Scavenger hunt page items */
.pp-page-check {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 3px;
}

.pp-page-check-box {
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--pp-purple);
  border-radius: 2px;
  flex-shrink: 0;
}

.pp-page-check-text {
  font-size: 7px;
  color: #444;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

/* Photo drop page */
.pp-page-photo-box {
  width: 100%;
  height: 52px;
  border: 2px solid;
  border-image: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6) 1;
  border-radius: 4px;
  background: linear-gradient(135deg, #eff6ff, #faf5ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 4px;
}

.pp-page-caption-line {
  height: 2px;
  border-radius: 1px;
  margin-bottom: 3px;
  background: linear-gradient(90deg, #f87171, #fbbf24, #4ade80);
}

/* Vibes/rating page */
.pp-page-rating-label {
  font-family: 'Fredoka', sans-serif;
  font-size: 8px;
  color: var(--pp-ink);
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.pp-page-rating-bar {
  height: 3px;
  border-radius: 2px;
  margin-bottom: 4px;
}

.pp-page-stars {
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--pp-gold-dk);
  margin-bottom: 3px;
}

/* ── Back: flip hint ── */
.pp-flip-hint {
  font-size: 11px;
  color: #bbb;
  text-align: center;
  margin-bottom: 8px;
}

/* ── Shared: card badge ── */
.pp-card-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pp-gold), var(--pp-gold-dk));
  color: #333;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(255, 165, 0, .3);
  letter-spacing: .5px;
  z-index: 10;
}

/* ── Front face content ── */
.pp-card-emoji {
  font-size: 44px;
  text-align: center;
  display: block;
  margin-bottom: 10px;
}

.pp-card-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 20px;
  color: var(--pp-ink);
  text-align: center;
  margin-bottom: 4px;
  line-height: 1.2;
}

.pp-card-region {
  font-size: 12px;
  color: var(--pp-muted);
  text-align: center;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.pp-card-price {
  font-family: 'Fredoka', sans-serif;
  font-size: 30px;
  color: var(--pp-purple);
  text-align: center;
  margin-bottom: 16px;
}

.pp-card-price small {
  font-size: 15px;
  color: var(--pp-muted);
}

.pp-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  flex: 1;
}

.pp-card-features li {
  font-size: 14px;
  color: #444;
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

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

.pp-card-features li::before {
  content: '✦';
  color: var(--pp-purple);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── Hover hint on front ── */
.pp-card-hint {
  font-size: 11px;
  color: #ccc;
  text-align: center;
  margin-bottom: 8px;
}

/* ── Add button (used on both faces) ── */
.pp-add-btn {
  background: linear-gradient(135deg, var(--pp-purple), var(--pp-violet));
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 12px 0;
  font-family: 'Fredoka', sans-serif;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 12px rgba(102, 126, 234, .3);
  flex-shrink: 0;
}

.pp-add-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(102, 126, 234, .45);
}

.pp-add-btn.added {
  background: linear-gradient(135deg, #43c98a, #2ecc71);
  box-shadow: 0 4px 12px rgba(46, 204, 113, .3);
}

/* ── Empty state ── */
.pp-empty {
  text-align: center;
  color: var(--pp-muted);
  font-size: 18px;
  padding: 48px 0;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .pp-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .pp-section {
    margin: 40px 16px;
    padding: 48px 20px;
    border-radius: 24px;
  }
  .pp-title { font-size: 32px; }
  .pp-grid  { grid-template-columns: repeat(2, 1fr); }
  .pp-card  { height: 500px; }
  .pp-filters { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .pp-grid { grid-template-columns: 1fr; }
}

.pp-card {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
}

<!-- ============================================================
     CSS START — paste at the bottom of styles.css
     ============================================================ -->
<!--
PASTE EVERYTHING BETWEEN THE <style> TAGS INTO styles.css
-->
<style>
.download-card {
  padding: 36px 36px 32px;
}

.pp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pp-form-group {
  margin-bottom: 0px;
  display: flex;
  flex-direction: column;
}

.pp-form-group label {
  display: block;
  margin-bottom: 6px;
  color: #333;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.pp-form-group input[type="text"],
.pp-form-group input[type="email"] {
  width: 100%;
  padding: 11px 13px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Quicksand', sans-serif;
  color: #333;
  background: #ffffff;
  transition: border-color .25s, box-shadow .25s, background .25s;
  outline: none;
}

.pp-form-group input[type="text"]:focus,
.pp-form-group input[type="email"]:focus {
  border-color: #667eea;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, .12);
}

.pp-form-group input.pp-invalid {
  border-color: #f5576c;
  box-shadow: 0 0 0 3px rgba(245, 87, 108, .1);
}

.pp-select-wrap {
  position: relative;
}

.pp-select-wrap select {
  width: 100%;
  padding: 11px 36px 11px 13px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: #333;
  background: #ffffff;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color .25s, box-shadow .25s, background .25s;
  outline: none;
}

.pp-select-wrap select:focus {
  border-color: #667eea;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, .12);
}

.pp-select-wrap select.pp-invalid {
  border-color: #f5576c;
  box-shadow: 0 0 0 3px rgba(245, 87, 108, .1);
}

.pp-select-arrow {
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #667eea;
  pointer-events: none;
}

.pp-form-error {
  display: block;
  font-size: 11px;
  color: #f5576c;
  margin-top: 4px;
  min-height: 14px;
  font-weight: 600;
}

.pp-form-success {
  background: linear-gradient(135deg, #f0fff4, #e6ffed);
  border: 2px solid #43c98a;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  margin-top: 12px;
}

.pp-form-success-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 8px;
}

.pp-form-success strong {
  font-family: 'Fredoka', sans-serif;
  font-size: 20px;
  color: #2d6a4f;
  display: block;
  margin-bottom: 4px;
}

.pp-form-success p {
  color: #40916c;
  font-size: 14px;
  margin: 0;
  text-align: center;
}

.submit-btn.loading {
  opacity: .75;
  cursor: not-allowed;
  transform: none !important;
}

@media (max-width: 520px) {
  .pp-form-row {
    grid-template-columns: 1fr;
  }
  .download-card {
    padding: 28px 20px 24px;
  }
}
</style>

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    overflow-x: hidden;
}

/* Header */
header {
/*     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

nav {
    max-width: 1200px;
/*     margin: 0 auto; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo-container {
    height: 60px;
}

.logo-container img {
    height: 110%;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
/*     color: white; */
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s;
}

.nav-links a:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 115px 30px 140px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 56px;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-text h1 .highlight {
    color: #FFD93D;
    display: block;
}

.hero-text p {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Download Form Card */
.download-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
}

.free-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #FFD93D 0%, #FFA500 100%);
    color: #333;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(255,165,0,0.4);
    transform: rotate(3deg);
}

.download-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    color: #667eea;
    margin-bottom: 10px;
    text-align: center;
}

.download-card p {
    color: #666;
    text-align: center;
    margin-bottom: 25px;
    font-size: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Quicksand', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 6px 20px rgba(102,126,234,0.4);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102,126,234,0.5);
}

/* Wave Transitions */
.wave-transition {
    position: relative;
}

.wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

/* Decorative Elements */
.floating-icon {
    position: absolute;
    font-size: 40px;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.icon-1 { top: 10%; left: 5%; animation-delay: 0s; }
.icon-2 { top: 20%; right: 8%; animation-delay: 1s; }
.icon-3 { bottom: 15%; left: 10%; animation-delay: 2s; }
.icon-4 { top: 60%; right: 5%; animation-delay: 1.5s; }

/* Features Section */
.features {
    padding: 120px 30px 80px;
/*     background: linear-gradient(to bottom, #f8f9ff 0%, #ffffff 100%); */
    background: #fff;
    position: relative;
}

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

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 48px;
    color: #333;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 24px;
    color: #667eea;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* Preview Section */
.preview {
    padding: 80px 30px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

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

.preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.preview-text h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 48px;
    color: white;
    margin-bottom: 25px;
}

.preview-text p {
    font-size: 18px;
    color: rgba(255,255,255,0.95);
    line-height: 1.8;
    margin-bottom: 20px;
}

.preview-image {
/*     background: white; */
    padding: 30px;
    border-radius: 20px;
/*     box-shadow: 0 20px 60px rgba(0,0,0,0.3); */
}

.sample-page {
    background: linear-gradient(to bottom, #fff 0%, #f8f9ff 100%);
    border: 3px solid #667eea;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.sample-page h4 {
    font-family: 'Fredoka', sans-serif;
    color: #667eea;
    font-size: 24px;
    margin-bottom: 20px;
}

.sample-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sample-line {
    background: #e0e0e0;
    height: 8px;
    border-radius: 4px;
}

.sample-line.short {
    width: 60%;
    margin: 0 auto;
}

/* Upgrades Section */
.upgrades {
    padding: 120px 30px 80px;
    background: white;
    position: relative;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: linear-gradient(to bottom, #f8f9ff 0%, #ffffff 100%);
    border: 3px solid #e0e0e0;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 15px 40px rgba(102,126,234,0.2);
}

.pricing-card.featured {
    border-color: #FFD93D;
    background: linear-gradient(to bottom, #fffdf0 0%, #ffffff 100%);
    transform: scale(1.05);
}

.pricing-badge {
    background: linear-gradient(135deg, #FFD93D 0%, #FFA500 100%);
    color: #333;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.pricing-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    color: #667eea;
    margin-bottom: 15px;
}

.price {
    font-family: 'Fredoka', sans-serif;
    font-size: 48px;
    color: #333;
    margin-bottom: 10px;
}

.price span {
    font-size: 24px;
    color: #666;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #666;
}

.pricing-features li:before {
    content: '✓';
    color: #667eea;
    font-weight: bold;
    margin-right: 10px;
}

.pricing-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
    cursor: pointer;
    transition: transform 0.3s;
}

.pricing-btn:hover {
    transform: translateY(-3px);
}

/* CTA Section */
.cta {
    padding: 120px 30px 80px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    text-align: center;
    position: relative;
}

.cta h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
}

.cta p {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 40px;
}

/*
.cta-btn {
    background: white;
    color: #f5576c;
    padding: 20px 50px;
    border: none;
    border-radius: 15px;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}
*/

.cta-btn:hover {
    transform: translateY(-5px);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 40px 30px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content,
    .preview-content {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .nav-links {
        display: none;
    }
}
/* Blog Hero Section */
.blog-hero {
    background: #f093fb;
    padding: 140px 30px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/*
.blog-hero::before {
    content: '🚢';
    position: absolute;
    font-size: 200px;
    opacity: 0.1;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}
*/

/*
.blog-hero::after {
    content: '⚓';
    position: absolute;
    font-size: 150px;
    opacity: 0.1;
    top: 30%;
    right: 15%;
}
*/

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.blog-hero h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 56px;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.blog-hero p {
    font-size: 22px;
    color: rgba(255,255,255,0.95);
    line-height: 1.6;
}

/* Blog Content Section */
.blog-content {
    padding: 120px 30px 80px;
    background: white;
    position: relative;
}

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

/* Featured Post */
.featured-post {
    background: linear-gradient(to bottom, #f8f9ff 0%, #ffffff 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    margin-bottom: 60px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.featured-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.featured-image {
    position: relative;
/*     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.featured-badge {
    position: absolute;
    top: 50px;
    left: 0px;
    background: linear-gradient(135deg, #FFD93D 0%, #FFA500 100%);
    color: #333;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(-30deg);
}

.placeholder-image {
    font-size: 120px;
    opacity: 0.3;
}

.featured-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Post Meta */
.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.category {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.date {
    color: #999;
    font-size: 14px;
    display: flex;
    align-items: center;
}

/* Read More Link */
.read-more {
    color: #667eea;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    transition: transform 0.3s, color 0.3s;
    display: inline-block;
}

.read-more:hover {
    color: #764ba2;
    transform: translateX(5px);
}

/* Category Filter */
.category-filter {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 80px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.blog-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image .placeholder-image {
    font-size: 80px;
}

.blog-content-card {
    padding: 30px;
}

.blog-content-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    padding: 60px 50px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(102,126,234,0.3);
}

.newsletter-content h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 42px;
    color: white;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 35px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-family: 'Quicksand', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.newsletter-form button {
    background: white;
    color: #667eea;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Active nav link */
.nav-links a.active {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Responsive */
@media (max-width: 968px) {
    .blog-hero h1 {
        font-size: 42px;
    }

    .featured-post {
        grid-template-columns: 1fr;
    }

    .featured-content {
        padding: 30px;
    }

    .featured-content h2 {
        font-size: 28px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-section {
        padding: 40px 30px;
    }

    .newsletter-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .category-filter {
        justify-content: flex-start;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Fix mobile menu - add this to the end of your CSS */

/* Hide mobile menu by default on all screens */
.mobile-menu {
    display: none;
}

/* Only show mobile menu on mobile devices when activated */
@media (max-width: 968px) {
    .mobile-menu {
        display: block;
    }
}

/* Force hide mobile menu on desktop */
@media (min-width: 969px) {
    .mobile-menu {
        display: none !important;
    }
}


nav {
    max-width: 1200px;
/*     margin: 0 auto; */
    display: flex;
    justify-content: space-between;  /* This keeps logo left, nav right */
    align-items: center;
    padding: 0 30px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin-left: auto;  /* ADD THIS - pushes nav to the right */
}


.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links .cta-button {
    background: linear-gradient(135deg, #FFD93D 0%, #FFA500 100%);
    color: #333 !important;  /* Override the purple color */
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 700;
/*     box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4); */
    transition: transform 0.3s, box-shadow 0.3s;
}

.nav-links .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.6);
}


.mobile-nav-links .cta-button {
    background: linear-gradient(135deg, #FFD93D 0%, #FFA500 100%);
    color: #333 !important;
    padding: 18px 30px !important;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
    margin: 10px 20px;
    text-align: center;
}

.mobile-nav-links .cta-button:hover,
.mobile-nav-links .cta-button:active {
    background: linear-gradient(135deg, #FFA500 0%, #FFD93D 100%);
    padding-left: 30px !important;
}









/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: #6B4EFF;  /* Match your nav link color */
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu - Hidden by default */
.mobile-menu {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    background: white;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    z-index: 999;
    display: none;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-links {
    list-style: none;
    padding: 20px 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.mobile-nav-links a {
    display: block;
    padding: 18px 30px;
    color: #6B4EFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: background 0.3s, padding-left 0.3s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
    background: rgba(102, 126, 234, 0.1);
    padding-left: 40px;
}

/* Mobile Download Button */
.mobile-nav-links li:last-child {
    border-bottom: none;
    padding: 10px 20px;
}

.mobile-nav-links li:last-child a {
    background: linear-gradient(135deg, #FFD93D 0%, #FFA500 100%);
    color: #333 !important;
    padding: 18px 30px !important;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
    text-align: center;
    margin: 0;
}

.mobile-nav-links li:last-child a:hover,
.mobile-nav-links li:last-child a:active {
    background: linear-gradient(135deg, #FFA500 0%, #FFD93D 100%);
    padding-left: 30px !important;
    transform: scale(1.02);
}

/* Responsive - Show hamburger on mobile */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none !important;
    }

    .mobile-menu {
        display: block;
    }
}

/* Force hide mobile menu on desktop */
@media (min-width: 969px) {
    .mobile-menu {
        display: none !important;
    }
    
    .hamburger {
        display: none !important;
    }
}








/* Explore Features Section */
.features {
    padding: 120px 30px 80px;
    background: #fff;
    position: relative;
}

.explore-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sample Page Container */
.sample-page-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.journal-sample-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Highlight Boxes */
.highlight-box {
    position: absolute;
    border: 3px solid #FFD93D;
    background: rgba(255, 217, 61, 0.2);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    box-shadow: 0 0 20px rgba(255, 217, 61, 0.6);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 217, 61, 0.6);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 30px rgba(255, 217, 61, 0.8);
    }
}

.highlight-box.active {
    opacity: 1;
}

/* Position each highlight box - ADJUST THESE based on your actual image */
.highlight-box[data-feature="funfact"] { top: 5%; left: 5%; width: 40%; height: 12%; }
.highlight-box[data-feature="highlight"] { top: 20%; left: 5%; width: 90%; height: 15%; }
.highlight-box[data-feature="drawing"] { top: 38%; left: 5%; width: 90%; height: 25%; }
.highlight-box[data-feature="memory"] { top: 66%; left: 5%; width: 90%; height: 12%; }
.highlight-box[data-feature="checklist"] { top: 5%; right: 5%; width: 35%; height: 30%; }
.highlight-box[data-feature="rating"] { top: 80%; left: 5%; width: 40%; height: 15%; }
.highlight-box[data-feature="photo"] { top: 80%; right: 5%; width: 40%; height: 15%; }

/* Features Accordion */
.features-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    display: flex;
    gap: 20px;
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: #667eea;
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(102,126,234,0.15);
}

.accordion-item.active {
    border-color: #FFD93D;
    background: linear-gradient(to right, #fffdf0 0%, #ffffff 100%);
    box-shadow: 0 10px 30px rgba(255,217,61,0.3);
}

.accordion-icon {
    font-size: 40px;
    flex-shrink: 0;
    line-height: 1;
}

.accordion-content h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 22px;
    color: #667eea;
    margin-bottom: 8px;
}

.accordion-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .explore-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .sample-page-container {
        order: 2;
    }
    
    .features-accordion {
        order: 1;
    }
    
    .accordion-item:hover {
        transform: translateX(5px);
    }
    
    /* On mobile, hide the highlight boxes since image is below */
    .highlight-box {
        display: none;
    }
}
























/* Desktop default - keeps your inline style */
#download {
    scroll-margin-top: -70px;
}

/* Mobile - override for small and extra small screens */
@media (max-width: 768px) {
    #download {
        scroll-margin-top: -480px;
    }
}

/* Extra small screens (phones in portrait) */
@media (max-width: 480px) {
    #download {
        scroll-margin-top: -480px;
    }
}























/* Footer */
footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 30px 30px;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Top Section */
.footer-top {
    text-align: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
/*     filter: brightness(0) invert(1); */
}

.footer-tagline {
    font-family: 'Fredoka', sans-serif;
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    margin: 0;
}

/* Columns Section */
.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    color: #FFD93D;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s, padding-left 0.3s;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #FFD93D;
    padding-left: 5px;
}

/* Bottom Section */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 40px 20px 20px;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    .footer-tagline {
        font-size: 16px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-column h4 {
        font-size: 16px;
    }
    
    .footer-column ul li a:hover {
        padding-left: 0;
        transform: translateY(-2px);
    }
}





















/* ============================================
   BLOG POST STYLES
   ============================================ */

/* Blog Post Hero */
.blog-post-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 160px 30px 80px;
    text-align: center;
}

.blog-post-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.blog-breadcrumb {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.blog-breadcrumb a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-breadcrumb a:hover {
    color: #FFD93D;
}

.blog-breadcrumb span {
    color: #FFD93D;
}

.blog-post-hero h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 48px;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.blog-post-meta {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 15px;
    color: rgba(255,255,255,0.9);
}

/* Blog Post Container */
.blog-post {
    background: white;
    padding: 60px 30px;
}

.blog-post-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Featured Image */
.blog-featured-image {
    margin-bottom: 50px;
    border-radius: 20px;
    overflow: hidden;
}

.placeholder-blog-image {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    height: 400px;
    display: flex;
/*
    align-items: center;
    justify-content: center;
*/
    border: 3px solid #667eea;
}

/* Blog Content */
.blog-post-content {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.lead-paragraph {
    font-size: 22px;
    color: #555;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.7;
}

.blog-post-content h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 32px;
    color: #667eea;
    margin-top: 50px;
    margin-bottom: 20px;
}

.blog-post-content p {
    margin-bottom: 25px;
}

.blog-post-content ul, .blog-post-content ol {
    margin: 25px 0 25px 40px;
}

.blog-post-content li {
    margin-bottom: 12px;
}

.blog-post-content a {
    color: #667eea;
/*     text-decoration: underline; */
}

.blog-post-content a:hover {
    color: #764ba2;
}

.blog-post-content strong {
    color: #667eea;
    font-weight: 700;
}

/* Tip Box */
.blog-tip-box {
    background: linear-gradient(135deg, #fffdf0 0%, #fff9e6 100%);
    border-left: 4px solid #FFD93D;
    padding: 25px;
    margin: 30px 0;
    border-radius: 12px;
    display: flex;
    gap: 20px;
}

.tip-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.tip-content {
    flex: 1;
}

.tip-content strong {
    color: #FFA500;
    display: block;
    margin-bottom: 8px;
}

/* Callout Box */
.blog-callout {
    background: linear-gradient(135deg, #f0f4ff 0%, #e6edff 100%);
    border-left: 4px solid #667eea;
    padding: 25px;
    margin: 30px 0;
    border-radius: 12px;
    font-size: 17px;
}

.blog-callout strong {
    color: #667eea;
}

/* CTA Box */
.blog-cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 50px 0;
}

.blog-cta-box h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
}

.blog-cta-box p {
    font-size: 18px;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.95);
}

.blog-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FFD93D 0%, #FFA500 100%);
    color: #333;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
/*     box-shadow: 0 6px 20px rgba(255,165,0,0.4); */
}

.blog-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,165,0,0.6);
}

/* Author Box */
.blog-author-box {
    background: #f8f9ff;
    padding: 30px;
    border-radius: 16px;
    display: flex;
    gap: 25px;
    margin: 60px 0;
}

.author-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 20px;
    color: #667eea;
    margin-bottom: 8px;
}

.author-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Related Posts */
.related-posts {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid #f0f0f0;
}

.related-posts h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 32px;
    color: #667eea;
    text-align: center;
    margin-bottom: 40px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.related-post-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 30px;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
}

.related-post-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102,126,234,0.15);
}

.related-post-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.related-post-card h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    color: #667eea;
    margin-bottom: 10px;
}

.related-post-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Blog Newsletter */
.blog-newsletter {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 30px;
    text-align: center;
}

.blog-newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.blog-newsletter h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 36px;
    color: white;
    margin-bottom: 15px;
}

.blog-newsletter p {
    font-size: 18px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 968px) {
    .blog-post-hero h1 {
        font-size: 36px;
    }
    
    .blog-post-content {
        font-size: 17px;
    }
    
    .lead-paragraph {
        font-size: 20px;
    }
    
    .blog-post-content h2 {
        font-size: 28px;
    }
    
    .blog-author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .author-image {
        margin: 0 auto;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-tip-box {
        flex-direction: column;
        text-align: center;
    }
}






.blog-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;

  border-radius: 20px; /* soft playful rounding */
  border: 6px solid #7B4DFF; /* purple stroke - adjust if needed */

  box-sizing: border-box;
}







/* This is the left “image column” wrapper */
.pp-feature-media{
  max-width: 760px;   /* keeps it from getting gigantic */
  width: 100%;
}

/* Purple frame */
.pp-feature-frame{
/*   background: linear-gradient(135deg, #6A5AE0, #8E44FF); */
  padding: 12px;
  border-radius: 28px;
  overflow: hidden;
  box-sizing: border-box;
}

/* Image */
.pp-feature-img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  max-width: 100%;
  object-fit: cover; 
}



















/* ============================================================
   PASSPORT PALS — How It Works Section
   Paste at the bottom of your stylesheet
   ============================================================ */

.hiw-section {
  background: #ffffff;
  padding: 80px 30px;
}

.hiw-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 60px;
  align-items: start;
}

/* ── LEFT ── */
.hiw-image-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hiw-image-badge {
  background: linear-gradient(135deg, #FFD93D, #FFA500);
  color: #333;
  font-family: 'Fredoka', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  letter-spacing: .5px;
  box-shadow: 0 4px 12px rgba(255, 165, 0, .3);
  white-space: nowrap;
}

/* ── Flip Card ── */
.hiw-flip {
  width: 100%;
  aspect-ratio: 3 / 4;
  perspective: 1200px;
  cursor: pointer;
}

.hiw-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .65s cubic-bezier(.4, 0, .2, 1);
  border-radius: 16px;
}

@media (hover: hover) {
  .hiw-flip:hover .hiw-flip-inner {
    transform: rotateY(180deg);
  }
}

.hiw-flip.is-flipped .hiw-flip-inner {
  transform: rotateY(180deg);
}

.hiw-flip-front,
.hiw-flip-back {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(102, 126, 234, .18),
    0 0 0 4px #fff,
    0 0 0 6px #a78bfa;
}

.hiw-flip-front img,
.hiw-flip-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hiw-flip-back {
  transform: rotateY(180deg);
}

.hiw-flip-back::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg,
    #f87171, #fb923c, #fbbf24,
    #4ade80, #60a5fa, #a78bfa, #f472b6);
  z-index: 2;
}

.hiw-flip-hint {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.45), transparent);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  padding: 20px 10px 10px;
  letter-spacing: .3px;
}

/* ── Upgrade Teaser Card ── */
.hiw-upgrade-card {
  width: 100%;
  background: linear-gradient(135deg, #f8f4ff, #f0f8ff);
  border: 2px solid #e8e0ff;
  border-radius: 16px;
  padding: 16px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hiw-upgrade-heading {
  font-family: 'Fredoka', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #764ba2;
  margin: 0;
  letter-spacing: .3px;
}

.hiw-upgrade-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hiw-upgrade-list li {
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  line-height: 1.4;
}

.hiw-upgrade-list em {
  color: #667eea;
  font-style: normal;
  font-weight: 700;
}

.hiw-upgrade-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 2px;
}

.hiw-upgrade-arrow span {
  font-family: 'Quicksand', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #a78bfa;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* ── RIGHT: Steps ── */
.hiw-steps-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 8px;
}

.hiw-eyebrow {
  font-family: 'Fredoka', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #a78bfa;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.hiw-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 36px;
  color: #2d3748;
  line-height: 1.15;
  margin: 0 0 10px;
}

.hiw-intro {
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
/*   margin: 0 0 28px; */
}

.hiw-intro em {
  color: #667eea;
  font-style: normal;
  font-weight: 700;
}

.hiw-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 20px 18px 0;
  border-bottom: 1px solid #f0f0f0;
}

.hiw-step:last-of-type {
  border-bottom: none;
}

.hiw-step--featured {
  background: linear-gradient(135deg, #f8f4ff, #f0f8ff);
  border-radius: 16px;
  border: 2px solid #e8e0ff !important;
  border-bottom: 2px solid #e8e0ff !important;
  padding: 18px 20px;
  margin: 4px 0;
  position: relative;
}

.hiw-step--featured::before {
  content: '⭐ Most Popular Step';
  position: absolute;
  top: -12px;
  left: 20px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 12px;
  letter-spacing: .4px;
}

.hiw-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(102, 126, 234, .3);
}

.hiw-step--featured .hiw-step-number {
  width: 44px;
  height: 44px;
  font-size: 22px;
}

.hiw-step-body { flex: 1; }

.hiw-step-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 20px;
  color: #2d3748;
  margin: 4px 0 6px;
  line-height: 1.2;
}

.hiw-step--featured .hiw-step-title {
  font-size: 22px;
  color: #667eea;
}

.hiw-step-text {
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.hiw-step-text em {
  color: #667eea;
  font-style: normal;
  font-weight: 700;
}

/* ── CTA ── */
.hiw-cta {
  display: inline-block;
  margin-top: 24px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
  font-family: 'Fredoka', sans-serif;
  font-size: 30px;
  padding: 14px 36px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(102, 126, 234, .35);
  transition: transform .2s, box-shadow .2s;
  align-self: flex-start;
}

.hiw-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(102, 126, 234, .45);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hiw-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hiw-image-wrap {
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hiw-flip {
    width: 140px;
    aspect-ratio: 3 / 4;
    flex-shrink: 0;
  }

  .hiw-upgrade-card { flex: 1; min-width: 180px; }
  .hiw-image-badge  { width: 100%; text-align: center; }
  .hiw-title        { font-size: 28px; }
}

@media (max-width: 480px) {
  .hiw-section      { padding: 48px 20px; }
  .hiw-image-wrap   { flex-direction: column; align-items: center; }
  .hiw-flip         { width: 100%; max-width: 260px; }
}







.hiw-wave-reverse path {
  fill: url(#hiwWaveGradient);
}



.hiw-wave-reverse {
  transform: rotate(180deg);
  width: 100%;
  display: block;
  line-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  margin-top: 20px;
}

.hiw-wave-reverse svg {
  display: block;
  width: 100%;
  height: 80px;
  padding-bottom: 40px;
}










.hiw-wave-reverse {
  transform: rotate(180deg);
  width: calc(100% + 60px);
  margin-left: -30px;
  margin-right: -30px;
  display: block;
  line-height: 0;
  overflow: hidden;
}
















.hiw-cta {
/*     width: 100%; */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 24px;
    border: none;
    border-radius: 12px;
/*     font-size: 50px; */
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 6px 20px rgba(102,126,234,0.4);
}

.hiw-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102,126,234,0.5);
}







.logo-container img { height: 46px; width: auto; display:block; }
header nav { min-height: 76px; align-items:center; }


















/* ============================================================
   HEADER FIX — paste at the very bottom of styles.css
   ============================================================ */
header {
    background-color: #ffffff;
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

nav {
    max-width: 1200px;
/*     margin: 0 auto; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    min-height: 80px;
}

.logo-container {
    height: 60px;
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 46px;
    width: auto;
    display: block;
}













header {
    width: 100%;
}

.main-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body {
    margin: 0;
}

















/* ── Base icon sizing ── */
.pp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  vertical-align: middle;
}

/* ── Card emoji slot (port/adventure cards) ── */
.pp-card-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin: 0 auto 8px;
  font-size: 0; /* hide any leftover emoji text */
}

/* ── Feature list icons ── */
.preview-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
}
.preview-feature-icon.icon-check {
  background: #22c55e;
}
.preview-feature-icon.icon-star {
  background: #f59e0b;
}

/* ── Testimonial avatars ── */
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Fredoka', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

/* ── Button icons ── */
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin-right: 6px;
}

/* ── Flag icon pill ── */
.flag-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  vertical-align: middle;
}
.flag-icon svg {
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}












<style id="fix-overflow">

/* Nuclear option: nothing escapes the viewport */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Wave helpers that use negative margins need containment */
/*
.notgeneric-wave-bottom,
.notgeneric-wave-top,
.hiw-wave,
.hiw-wave-reverse,
.hero-wave,
.wave-top {
  overflow: hidden;
  max-width: 100vw;
*/
  /* Remove the negative side margins that cause bleed */
/*
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
*/
}

/* The pp-section (port packs) sometimes overflows on mobile
   due to filter buttons not wrapping */
.pp-filters {
  flex-wrap: wrap;
}

/* Testimonials scrolling track — prevent body scroll bleed */
.testimonials-track-wrap {
  overflow: hidden;
  max-width: 100vw;
}













.pp-card-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}

.pp-card-emoji svg {
  display: block;
}








.notgeneric-wave-bottom,
.notgeneric-wave-top {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}





@media (max-width: 480px) {
  .hiw-image-badge {
    display: none;
  }
}




@media (max-width: 768px) {
  .hiw-image-wrap {
    display: none;
  }
}





<!-- CSS END -->
