/* ====================================
   IN-TO-VIENNA — Landing Page (UI V1.0)
   Design System & Premium Styles
   ==================================== */

/* --- CSS Variables / Tokens --- */
:root {
  --coral: #F35C43;
  --gold: #C8992E;
  --gold-light: #D4A843;
  --gold-gradient: linear-gradient(135deg, #D4A843 0%, #C8992E 50%, #B8882A 100%);
  --dark: #1A1A1A;
  --dark-secondary: #3A3A3A;
  --grey-text: #6B6B6B;
  --grey-light: #F5F3EF;
  --grey-bg: #F2F0EC;
  --white: #FFFFFF;
  --bg-warm: #FAF8F5; /* Solid warm off-white for seamless blending */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-soft: 0 2px 16px rgba(0,0,0,0.06);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg-warm);
  color: var(--dark);
  line-height: 1.5;
  min-height: 100vh;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 120px;
}

a {
  text-decoration: none;
  color: inherit;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* --- Header --- */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: all 0.3s ease;
}

.header.header-scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(237, 232, 223, 0.8);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  padding: 12px 20px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pin-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.3px;
}

.profile-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #EDE8DF;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform var(--transition);
}

.profile-btn:hover {
  transform: scale(1.06);
}

.profile-btn:active {
  transform: scale(0.96);
}

.profile-btn svg {
  width: 22px;
  height: 22px;
}

/* --- Hero Section (UI V1.0 layout) --- */
.hero {
  padding: 0;
  position: relative;
}

/* Immersive background visual container */
.hero-visual-container {
  position: relative;
  height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-visual-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center bottom;
  filter: brightness(1.0);
  z-index: 1;
}

.hero-card-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}

/* Gradient fade transition to blend with text section */
.hero-fade-transition {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 240px;
  background: linear-gradient(to bottom, rgba(250, 248, 245, 0) 0%, rgba(250, 248, 245, 0.85) 60%, #FAF8F5 100%);
  z-index: 2;
  pointer-events: none;
}

/* 3D Flip Card Container & Anim */
.card-3d-container {
  position: relative;
  width: 360px;
  height: 558px;
  margin-bottom: 0px;
  perspective: 1200px;
  cursor: pointer;
  z-index: 5;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  animation: cardFloat 5s ease-in-out infinite;
}

.card-3d {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-3d.flipped {
  transform: rotateY(180deg);
}

.card-side {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-front {
  z-index: 2;
  transform: rotateY(0deg);
}

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

.card-side .golden-card-img {
  width: 100%;
  height: auto;
  margin-bottom: 0;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* Floating circle badge */
.floating-badge {
  position: absolute;
  top: 310px;
  right: -6px;
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid rgba(243, 92, 67, 0.15);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
  z-index: 10;
  animation: badgeFloat 6s ease-in-out infinite;
}

.sparkle-icon {
  width: 14px;
  height: 14px;
  margin-bottom: 4px;
}

.badge-text {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

.badge-highlight {
  color: var(--coral);
  font-weight: 700;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Text descriptions under the picture */
.hero-text-container {
  padding: 0px 20px 24px;
  margin-top: 0px;
  position: relative;
  z-index: 10;
  background: transparent; /* Absolutely no solid background to avoid hard edges */
}

.hero-headline {
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.8px;
}

.headline-coral {
  color: var(--coral);
  font-weight: 600;
}

.hero-subtitle {
  font-size: 0.88rem;
  color: var(--grey-text);
  line-height: 1.5;
  margin-bottom: 24px;
  font-weight: 400;
}

/* Double CTAs */
.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.cta-button {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition);
}

.cta-button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.cta-button:hover svg {
  transform: translateX(4px);
}

.cta-button:active {
  transform: scale(0.96) !important;
  opacity: 0.9;
}

.cta-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(243, 92, 67, 0.2);
  border: none;
  gap: 6px;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 92, 67, 0.3);
}

.cta-secondary {
  background: transparent;
  color: var(--dark-secondary);
  border: 1px solid #DDD8D0;
  gap: 6px;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.play-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #F5F3EF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
}

.play-circle svg {
  width: 10px;
  height: 10px;
  margin-left: 1px;
}

/* Social proof */
.social-proof-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.social-proof-avatars {
  display: flex;
}

.proof-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
  object-fit: cover;
}

.proof-avatar:first-child {
  margin-left: 0;
}

.social-proof-text {
  font-size: 0.76rem;
  color: var(--grey-text);
  font-weight: 500;
}

/* --- Desktop Product Showcase (Hidden on Mobile) --- */
.desktop-product-showcase {
  display: none;
}

/* --- Achievements Section (UI V1.0) --- */
.achievements-section {
  padding: 16px 16px 0;
}

.achievements-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 16px 18px;
  box-shadow: var(--shadow-soft);
}

.achievements-header {
  margin-bottom: 20px;
  text-align: center;
}

.achievements-title {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.9px;
  color: var(--dark);
}

/* Carousel wrapper with arrows */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.carousel-arrow {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid #EDE8DF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-soft);
}

.carousel-arrow:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.carousel-arrow:active {
  transform: scale(0.94);
}

.prev-arrow {
  left: -14px;
}

.next-arrow {
  right: -14px;
}

.carousel-arrow svg {
  width: 18px;
  height: 18px;
  color: var(--dark);
}

/* Milestones Carousel spacing */
.milestones-carousel {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 20px;
  margin: 0 -8px;
}

.milestones-carousel::-webkit-scrollbar {
  display: none;
}

.milestones-track {
  display: flex;
  gap: 12px;
  padding: 4px;
}

.milestone-badge {
  flex: 0 0 auto;
  width: 90px;
  height: 90px;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition);
}

.milestone-badge:hover {
  transform: scale(1.06);
}

.milestone-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* Dots */
.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #D9D5CE;
  transition: all var(--transition);
  cursor: pointer;
}

.dot.active {
  background: var(--coral);
  width: 9px;
  height: 9px;
}

/* --- Testimonials Section (UI V1.0) --- */
.testimonials-section {
  margin: 32px 20px 0;
  padding: 20px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}

.testimonials-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.testimonials-title {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.9px;
  color: var(--dark);
}

.testimonials-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars svg {
  width: 14px;
  height: 14px;
}

.rating-text {
  font-size: 0.75rem;
  color: var(--grey-text);
  font-weight: 500;
}

/* Testimonial Cards Grid -> Flex Carousel */
.testimonials-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0 -8px;
  padding: 0 8px 8px;
}

.testimonials-grid::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 280px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  background: var(--grey-light);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

/* Vertical dividers removed for horizontal layout */
.testimonial-card:not(:last-child)::after {
  display: none;
}

.testimonial-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #EDE8DF;
  flex-shrink: 0;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-size: 0.75rem;
  color: var(--dark-secondary);
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 6px;
}

.testimonial-name {
  font-size: 0.7rem;
  color: var(--dark);
  font-weight: 700;
}

.testimonial-country {
  font-size: 0.55rem;
  color: var(--grey-text);
}

/* --- Bottom Spacer --- */
.bottom-spacer {
  height: 120px;
}

/* --- Bottom Navigation --- */
.bottom-nav {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 390px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-radius: 40px;
  padding: 8px 28px;
  z-index: 200;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--grey-text);
  transition: all var(--transition);
  padding: 8px 16px;
  border-radius: 16px;
  position: relative;
  text-decoration: none;
}

.nav-item svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}

.nav-item.active {
  color: var(--coral);
  background: #FDF3EF;
}

.nav-item.active svg {
  transform: scale(1.1);
}

.nav-item:hover:not(.active) {
  color: var(--coral);
  background: rgba(253, 243, 239, 0.5);
}

/* --- Global SVG Constraints --- */
.feature-icon {
  width: 36px;
  height: 36px;
  padding: 8px;
  background: #FDF3EF;
  border-radius: 8px;
  flex-shrink: 0;
}

.check-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* --- GO Page Mobile Base --- */
.go-page-wrapper {
  padding: 80px 20px 60px;
  max-width: 100%;
}

.go-hero {
  text-align: center;
  margin-bottom: 40px;
  padding: 140px 4px 0; /* Clear fixed header safely with extra gap */
}

.go-hero h1 {
  font-size: 2.2rem;
  letter-spacing: -1px;
  margin-bottom: 12px;
  line-height: 1.15;
  font-weight: 800;
}

.go-subtitle {
  font-size: 1.05rem;
  color: var(--grey-text);
  margin-bottom: 20px;
  line-height: 1.5;
}

.go-trust-badge {
  display: flex;
  align-items: flex-start;
  text-align: left;
  background: #FAF8F5;
  padding: 16px 20px;
  border-radius: 24px;
  border: 1px solid #E5E0D8;
  gap: 12px;
  margin-top: 24px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}


/* --- Global Pricing Base --- */
  /* Pricing Section */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: stretch;
    margin-top: 32px;
  }

  .pricing-card {
    background: white;
    border-radius: 24px;
    padding: 32px 24px;
    border: 1px solid #E5E0D8;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
  }

  /* Bronze specific border */
  .pricing-card.card-bronze {
    border-top: 6px solid #A06443; /* Brown top border */
  }

  /* Silver/Popular specific border */
  .pricing-card.card-popular {
    border: 2px solid #F35C43;
    box-shadow: 0 12px 40px rgba(243,92,67,0.1);
  }

  /* VIP specific border */
  .pricing-card.card-vip {
    border: 2px solid #DFA725;
    box-shadow: 0 12px 40px rgba(223,167,37,0.1);
  }

  /* Badges container */
  .pricing-badges {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    align-items: center;
    white-space: nowrap;
  }

  .badge-bronze {
    background: #A06443;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .badge-silver {
    background: #9CA3AF;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .badge-gold {
    background: #1A1A1A;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .badge-popular {
    background: #F35C43;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .badge-vip {
    background: #DFA725;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .pricing-header {
    text-align: center;
    margin-top: 16px;
    margin-bottom: 8px;
    width: 100%;
  }

  .pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    color: #1A1A1A;
    line-height: 1.2;
  }

  .pricing-desc {
    font-size: 0.95rem;
    color: #4B5563;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.5;
  }

  .pricing-price {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
  }

  .price-current {
    font-size: 3.5rem;
    font-weight: 800;
    color: #F35C43;
    line-height: 1;
  }

  .price-strikethrough {
    font-size: 1.2rem;
    color: #9CA3AF;
    text-decoration: line-through;
  }

  .badge-beta {
    border: 1px solid #F35C43;
    color: #F35C43;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
  }

  .pricing-card .pricing-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 18px 24px !important;
    font-size: 1.1rem;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }

  .pricing-card .pricing-cta svg {
    width: 20px;
    height: 20px;
  }

  .pricing-footer-note {
    text-align: center;
    font-size: 0.85rem;
    color: #6B7280;
    margin-top: 12px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.4;
  }

  .pricing-image-container {
    margin: 32px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
  }

  .pricing-image-container img {
    border-radius: 12px;
  }

  .pricing-divider {
    width: 100%;
    height: 1px;
    background: #E5E0D8;
    margin: 24px 0;
  }

  .features-title {
    font-size: 0.95rem;
    color: #4B5563;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
  }

  .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    width: 100%;
  }

  .pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1A1A1A;
    line-height: 1.4;
  }

  .check-icon-bronze {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .check-icon-silver {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .see-all-toggle {
    color: #F35C43;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
  }

  .see-all-toggle:hover {
    text-decoration: underline;
  }

/* --- Responsive Layouts (Tablet & Desktop) --- */

/* Tablet Optimization */
@media (min-width: 600px) and (max-width: 991px) {
  body {
    max-width: 640px; /* Wider centered layout for tablet */
  }
  .hero-visual-container {
    height: 640px;
  }
}

/* Desktop Split Layout */
@media (min-width: 992px) {
  body {
    max-width: 100%;
    margin: 0;
    border: none;
    box-shadow: none;
  }
  
  body::before {
    display: none; /* Remove desktop gradient wrapper */
  }

  .header {
    padding: 24px max(40px, calc(50vw - 550px));
  }
  
  .header.header-scrolled {
    padding: 16px max(40px, calc(50vw - 550px));
  }

  /* Stacked Vertical Hero (Majestic centered design) */
  .hero {
    display: block;
    min-height: auto;
  }

  .hero-visual-container {
    width: 100%;
    height: 60vh;
    min-height: 520px;
    align-items: flex-end; /* Card aligns to bottom of the table */
    justify-content: center;
  }
  
  .hero-card-wrapper {
    padding-bottom: 50px; /* Sits perfectly on the desktop background table */
  }
  
  .card-3d-container {
    transform: scale(0.85);
    transform-origin: bottom center;
  }
  
  /* Vertical fade for a seamless blend into the body background */
  .hero-fade-transition {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 260px;
    background: linear-gradient(to bottom, rgba(250, 248, 245, 0) 0%, rgba(250, 248, 245, 0.95) 60%, var(--bg-warm) 100%);
  }

  .hero-text-container {
    width: 100%;
    max-width: 660px; /* Narrow readable center column */
    margin: -80px auto 0; /* Pull slightly over the fade */
    display: block;
    padding: 0 40px 80px;
  }

  .hero-headline {
    font-size: 3.2rem;
    line-height: 1.1;
    letter-spacing: -1.2px;
    margin-bottom: 16px; /* Tighter gap */
  }

  .hero-subtitle {
    font-size: 1.15rem; /* Optimized for the longer paragraph */
    line-height: 1.5;
    color: #4a453f;
    margin-bottom: 32px;
    max-width: 100%;
  }

  .hero-actions {
    max-width: none;
    gap: 16px;
    margin-bottom: 24px;
    justify-content: flex-start;
  }

  .cta-button {
    height: 52px;
    font-size: 0.95rem;
    border-radius: 12px;
    flex: 0 0 auto; /* Natural width, no stretching */
    padding: 0 32px;
  }
  
  .social-proof-wrapper {
    margin-top: 0;
  }
  
  .proof-avatar {
    width: 32px;
    height: 32px;
  }
  
  .social-proof-text {
    font-size: 0.8rem;
    max-width: 340px;
    line-height: 1.4;
  }

  /* Centered Desktop Content Wrappers */
  .achievements-section, .testimonials-section {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }

  .achievements-card {
    padding: 32px 40px;
  }

  /* Restore 3-column Grid for Testimonials */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    margin: 0;
    padding: 0;
    gap: 20px;
  }
  
  .testimonial-card {
    flex: auto; /* Reset flex width */
    padding: 20px;
  }
  
  /* Restore vertical dividers for desktop */
  .testimonial-card:not(:last-child)::after {
    display: block;
    content: '';
    position: absolute;
    right: -10px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: #EDE8DF;
  }

  /* Compact Bottom Navigation Pill */
  .bottom-nav {
    top: auto;
    bottom: 32px;
    max-width: 420px;
    padding: 10px 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
  }
  
  .nav-item {
    font-size: 0.65rem;
    gap: 4px;
  }
  
  .nav-item svg {
    width: 22px;
    height: 22px;
  }

  /* --- DESKTOP PRODUCT SHOWCASE STYLES --- */
  .desktop-product-showcase {
    display: block;
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 40px;
  }

  .showcase-module {
    margin-bottom: 80px;
  }

  .showcase-headline {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
  }

  /* Two Sides */
  .showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
  }

  .showcase-tab {
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid #E5E0D8;
    color: var(--grey-text);
  }

  .showcase-tab.tab-active {
    background: #F35C43;
    color: white;
    border-color: #F35C43;
  }

  .showcase-two-sides {
    background: white;
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.03);
  }

  .two-sides-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .side-column {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }

  .side-image-wrapper {
    margin-bottom: 0;
    width: 200px;
    flex-shrink: 0;
  }

  .side-image-wrapper img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.15));
  }

  .side-checklist {
    list-style: none;
    padding: 0;
    width: 100%;
    max-width: 320px;
  }

  .side-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
  }

  .side-checklist li small {
    font-weight: 400;
    color: var(--grey-text);
    font-size: 0.8rem;
  }

  /* Feature Grid */
  .feature-unlock-section {
    background: white;
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.03);
  }

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

  .feature-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .feature-icon {
    width: 36px;
    height: 36px;
    padding: 8px;
    background: #FDF3EF;
    border-radius: 8px;
  }

  .check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .feature-item h4 {
    font-size: 0.95rem;
    line-height: 1.3;
    margin: 0;
  }

  .feature-item p {
    font-size: 0.8rem;
    color: var(--grey-text);
    margin: 0;
    line-height: 1.4;
  }

  .feature-cta-wrapper {
    text-align: center;
  }

  .cta-outline-red {
    background: white;
    color: #F35C43;
    border: 1px solid #F35C43;
    padding: 0 32px;
    height: 48px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
  }

  .cta-outline-red:hover {
    background: #FDF3EF;
  }


}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text-container {
  animation: fadeInUp 0.7s ease-out;
}

.achievements-card {
  animation: fadeInUp 0.7s ease-out 0.25s both;
}

.testimonials-section {
  animation: fadeInUp 0.7s ease-out 0.4s both;
}

/* --- GO PAGE --- */

/* Floating animation for product images */
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes floatCardDualFrontMobile {
  0%, 100% { transform: translateY(-50%) rotate(-6deg); }
  50% { transform: translateY(calc(-50% - 8px)) rotate(-6deg); }
}

@keyframes floatCardDualBackMobile {
  0%, 100% { transform: translateY(-50%) rotate(6deg); }
  50% { transform: translateY(calc(-50% - 8px)) rotate(6deg); }
}

/* CTA shimmer sweep */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.go-page-wrapper {
  max-width: 100%;
  padding: 80px 20px 120px;
  background: linear-gradient(180deg, #FFF9F7 0%, #FFFFFF 320px, #FFFFFF 100%);
}

.go-hero {
  text-align: center;
  margin-bottom: 56px;
  padding: 140px 4px 0; /* Inherit global padding to clear header */
}

.go-hero h1 {
  font-size: 2.2rem;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
  line-height: 1.15;
  font-weight: 800;
}

.headline-coral {
  color: #F35C43;
}

.go-subtitle {
  font-size: 1.05rem;
  color: var(--grey-text);
  margin-bottom: 20px;
  line-height: 1.5;
}

.go-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--grey-text);
  font-size: 0.8rem;
  text-align: left;
  background: #FAF8F5;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid #E5E0D8;
}

.go-trust-badge svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Section Divider */
.go-section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 8px 0;
  color: #D1CDC6;
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.go-section-divider::before,
.go-section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #E5E0D8, transparent);
}

/* Pricing Stack */
.go-pricing-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
}

.go-pricing-horizontal-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: white;
  border-radius: 24px;
  padding: 36px 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.04);
  border: 1px solid #E5E0D8;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Specific Card Backgrounds & Accents */
.go-pricing-horizontal-card:nth-child(1) {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF8F5 100%);
  border-top: 4px solid #A06443;
}

.go-pricing-horizontal-card.card-highlighted {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF5F3 100%);
  border-top: 4px solid #F35C43;
  border-bottom: 2px solid #F35C43;
  border-left: 2px solid #F35C43;
  border-right: 2px solid #F35C43;
  box-shadow: 0 16px 48px rgba(243,92,67,0.15);
}

.go-pricing-horizontal-card:nth-child(3) {
  background: linear-gradient(180deg, #FFFFFF 0%, #FCFAF2 100%);
  border-top: 4px solid #DFA725;
}

/* Card Layouts */
.go-card-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.go-card-left h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.go-card-desc {
  color: var(--grey-text);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.go-price-display {
  font-size: 2.5rem;
  font-weight: 800;
  color: #F35C43;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.go-price-subtext {
  font-size: 0.8rem;
  color: var(--grey-text);
  margin-top: 12px;
}

/* Badges */
.go-badge {
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: inline-block;
  letter-spacing: 0.5px;
}

.badge-bronze { background: #A06443; color: white; }
.badge-silver { background: #9BA3AF; color: white; }
.badge-gold { background: #DFA725; color: white; }
.badge-popular { background: #F35C43; color: white; display: inline-flex; align-items: center; margin-left: 8px;}
.go-badge-row { display: flex; align-items: center; margin-bottom: 16px; justify-content: center;}

.badge-outline-red {
  border: 1px solid #F35C43;
  color: #F35C43;
  background: transparent;
  margin-bottom: 0;
}

/* Card Center Images */
.go-card-center {
  display: flex;
  justify-content: center;
  padding: 32px 0;
}

.go-img-bronze {
  width: 220px;
  filter: sepia(1) hue-rotate(-20deg) brightness(0.75) contrast(1.2) drop-shadow(0 20px 40px rgba(0,0,0,0.25));
  animation: floatCard 4s ease-in-out infinite;
}

.dual-image-center {
  position: relative;
  width: 100%;
  height: 300px;
}

.silver-card-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.go-img-dual {
  width: 165px;
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%) rotate(-6deg);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
  z-index: 2;
  animation: floatCardDualFrontMobile 4s ease-in-out infinite;
}

.go-img-dual.img-back {
  left: 42%;
  transform: translateY(-50%) rotate(6deg);
  z-index: 1;
  animation: floatCardDualBackMobile 4s ease-in-out infinite;
  animation-delay: 0.5s;
}

.go-img-vip {
  width: 220px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
  animation: floatCard 4s ease-in-out infinite;
}

/* Right Side Lists */
.go-card-right {
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* Right Side Lists */
.go-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.go-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  font-weight: 500;
}

.go-features-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.go-footer-note {
  font-size: 0.8rem;
  color: var(--grey-text);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #E5E0D8;
}

.go-cta {
  width: 100%;
  justify-content: center;
  height: 52px;
  position: relative;
  overflow: hidden;
}

.go-cta::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s;
}

.go-cta:hover::after {
  opacity: 1;
  animation: shimmer 1.5s infinite;
}

/* Feature list expand (mobile) */
.go-features-expand {
  display: none;
  background: none;
  border: none;
  color: #F35C43;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
  margin-top: 4px;
}

.go-features-list.collapsed li:nth-child(n+5) {
  display: none;
}

@media (max-width: 991px) {
  .go-features-expand {
    display: inline-block;
  }
}

/* Comparison Table */
.go-comparison-section {
  background: white;
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.03);
  border: 1px solid #E5E0D8;
  overflow: hidden;
}

.th-silver-col {
  background: rgba(243,92,67,0.04);
}

.comparison-title {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 32px;
}

.table-responsive-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -24px;
  padding: 0 24px;
}

.go-comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.go-comparison-table th {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid #E5E0D8;
  background: #FAF8F5;
  min-width: 120px;
}

.th-bronze { background: #A06443 !important; color: white !important; font-weight: 700; letter-spacing: 0.5px; }
.th-silver { background: #9BA3AF !important; color: white !important; font-weight: 700; letter-spacing: 0.5px; }
.th-gold { background: #DFA725 !important; color: white !important; font-weight: 700; letter-spacing: 0.5px; }

.go-comparison-table th:first-child {
  background: transparent !important;
  border-bottom: none;
  position: sticky;
  left: 0;
  z-index: 2;
}

.go-comparison-table th .badge-sm {
  margin-bottom: 8px;
  font-size: 0.65rem;
}

.go-comparison-table th small {
  font-weight: 400;
  color: var(--dark);
  font-size: 0.85rem;
}

.go-comparison-table td {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid #F5F3EF;
  font-size: 0.9rem;
  font-weight: 500;
}

.go-comparison-table td:first-child {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
  font-weight: 600;
  position: sticky;
  left: 0;
  background: white;
  z-index: 2;
  box-shadow: 4px 0 12px rgba(0,0,0,0.02);
}

.table-icon {
  width: 18px;
  height: 18px;
  color: #F35C43;
}

.check-icon-table {
  width: 24px;
  height: 24px;
}

.check-icon-table.bronze { color: #A06443; }
.check-icon-table.silver { color: #9BA3AF; }
.check-icon-table.gold { color: #DFA725; }

.dash {
  color: #D1CDC6;
  font-weight: 700;
}

.go-disclaimer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-top: 40px;
  padding: 24px;
  background: #FAF8F5;
  border-radius: 12px;
  color: var(--grey-text);
  font-size: 0.85rem;
  line-height: 1.5;
}

.go-disclaimer svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  /* --- GO PAGE DESKTOP STYLES --- */
  .go-page-wrapper {
    max-width: 1100px;
    margin: 80px auto 120px;
    padding: 0 40px;
  }

  .go-hero h1 {
    font-size: 3.2rem;
  }

  .go-subtitle {
    font-size: 1.25rem;
  }

  .go-trust-badge {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .go-pricing-horizontal-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.3fr;
    padding: 40px;
    align-items: center;
  }

  .go-pricing-horizontal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  }

  .go-pricing-stack {
    gap: 24px;
  }

  .go-card-left {
    align-items: flex-start;
    text-align: left;
  }

  .go-card-left h2 {
    font-size: 1.8rem;
  }
  
  .go-price-display {
    font-size: 2.5rem;
  }

  .go-card-center {
    padding: 0;
  }

  .go-img-bronze { width: 340px; transform: scale(1); filter: sepia(1) hue-rotate(-20deg) brightness(0.75) contrast(1.2) drop-shadow(0 12px 24px rgba(0,0,0,0.15)); }
  
  .dual-image-center { height: 380px; display:flex; align-items:center; justify-content:center; }
  .silver-card-wrapper { display: flex; align-items: center; justify-content: center; gap: 20px; width: 100%; }
  .go-img-dual { width: 240px !important; position: static !important; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.15)) !important; animation: floatCard 4s ease-in-out infinite !important; }
  .go-img-dual.img-back { left: auto !important; animation: floatCard 4s ease-in-out infinite !important; animation-delay: 0.5s !important; }
  
  .go-img-vip { width: 320px; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.15)); }

  .go-card-right {
    padding-top: 0;
    border-top: none;
    padding-left: 24px;
  }

  .go-cta {
    width: auto;
    padding: 0 32px;
  }

  .go-comparison-section {
    padding: 40px;
  }
  
  .comparison-title {
    font-size: 1.8rem;
  }

  .table-responsive-wrapper {
    overflow-x: visible;
    margin: 0;
    padding: 0;
  }

  .go-comparison-table {
    min-width: auto;
  }
  
  .go-comparison-table th:first-child,
  .go-comparison-table td:first-child {
    position: static;
    box-shadow: none;
    background: transparent;
  }

  .go-comparison-table tbody tr:nth-child(even) td {
    background: #FAF8F5;
  }

  .go-disclaimer {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    font-size: 0.9rem;
  }
}

/* =========================================================
   ACHIEVEMENTS PAGE
   ========================================================= */

.achievements-page-wrapper {
  max-width: 430px;
  margin: 0 auto;
  padding: 100px 20px 120px;
  min-height: 100vh;
}

body.achievements-body {
  background: 
    linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.98)),
    url('assets/hero-bg.png') no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
}

/* Header Area */
.ach-header {
  margin-bottom: 24px;
}

.ach-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.ach-header-top h1 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.ach-subtitle {
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 500;
}

.ach-progress-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #FCF4ED;
  border: 1px solid #E5E0D8;
  padding: 6px 12px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #1A1A1A;
}

/* Filters */
.ach-filter-row {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.ach-filter-row::-webkit-scrollbar {
  display: none;
}

.ach-filter-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid transparent;
  white-space: nowrap;
}

.ach-filter-btn.active {
  background: white;
  border-color: #F35C43;
  color: #F35C43;
}

.ach-filter-btn.secondary {
  background: white;
  border-color: #3B82F6;
  color: #3B82F6;
}

.ach-filter-btn.neutral {
  background: white;
  border-color: #E5E0D8;
  color: var(--dark);
}

/* Free Bronze Access Banner */
.ach-banner-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #FCF4ED;
  border: 1px solid #E5E0D8;
  border-radius: 12px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #A06443;
  width: max-content;
  margin: 0 auto;
  position: relative;
  top: 12px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Featured Card (Next Best Step) */
.ach-featured-card {
  background: white;
  border-radius: 20px;
  padding: 24px 20px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border: 1px solid #E5E0D8;
  margin-bottom: 20px;
  position: relative;
}

.featured-top-label {
  position: absolute;
  top: -12px;
  left: 20px;
  background: white;
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #A06443;
  border-radius: 10px;
  border: 1px solid #E5E0D8;
}

.featured-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.featured-left {
  display: flex;
  gap: 16px;
  flex: 1;
}

.featured-icon-wrapper {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.featured-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.featured-text h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.2;
}

.featured-text p {
  font-size: 0.75rem;
  color: var(--grey-text);
  line-height: 1.3;
  margin-bottom: 12px;
}

.featured-action-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.progress-bar-small {
  width: 48px;
  height: 4px;
  background: #E5E0D8;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  gap: 2px;
}

.progress-bar-small .progress-fill {
  height: 100%;
  background: #A06443;
  border-radius: 2px;
}

.btn-continue {
  background: linear-gradient(135deg, #A06443, #854D0E);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(160, 100, 67, 0.3);
  transition: transform 0.2s;
}

.btn-continue:active {
  transform: scale(0.95);
}

.featured-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 1px solid #E5E0D8;
  padding-left: 16px;
  margin-left: 16px;
}

.circular-progress {
  width: 64px;
  height: 64px;
  position: relative;
  margin-bottom: 8px;
}

.circular-chart {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
}

.circle-bg {
  fill: none;
  stroke: #E5E0D8;
  stroke-width: 3.5;
}

.circle {
  fill: none;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke: #A06443;
}

.percentage {
  fill: #1A1A1A;
  font-family: inherit;
  font-weight: 700;
  font-size: 10px;
  text-anchor: middle;
}

.progress-label-top {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  color: var(--grey-text);
  white-space: nowrap;
}

.progress-sub {
  font-size: 0.7rem;
  color: var(--grey-text);
}

/* Task List */
.ach-task-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ach-task-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  border: 1px solid #E5E0D8;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.ach-task-card.completed {
  opacity: 0.8;
}

.task-icon-col {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  position: relative;
}

.task-img-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.svg-icon-placeholder {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E5E0D8;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.svg-icon-placeholder svg {
  width: 32px;
  height: 32px;
  color: #4B5563;
}

.passport-icon { background: linear-gradient(135deg, #1E3A8A, #3B82F6); }
.passport-icon svg { color: white; }
.wallet-icon { background: linear-gradient(135deg, #78350F, #D97706); }
.wallet-icon svg { color: white; }
.suitcase-icon { background: linear-gradient(135deg, #92400E, #F59E0B); }
.suitcase-icon svg { color: white; }
.shield-icon { background: linear-gradient(135deg, #854D0E, #EAB308); }
.shield-icon svg { color: white; }

.status-check-overlay {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  padding: 2px;
}

.task-content-col {
  flex: 1;
}

.task-content-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.task-content-col p {
  font-size: 0.75rem;
  color: var(--grey-text);
  line-height: 1.3;
  margin-bottom: 8px;
}

.task-meta {
  display: flex;
  gap: 8px;
  font-size: 0.7rem;
  color: #4B5563;
  font-weight: 600;
  margin-bottom: 8px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #F3F4F6;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid #E5E7EB;
}

.meta-item svg {
  width: 12px;
  height: 12px;
  color: #6B7280;
}

.task-action-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  width: 90px;
  flex-shrink: 0;
}

.status-pill {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
  width: 100%;
  background: white;
  border: 1px solid #E5E0D8;
  color: #A06443;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.status-sub {
  font-size: 0.65rem;
  color: var(--grey-text);
  white-space: nowrap;
}

.docs-ready { color: #A06443; border-color: #E5E0D8; }
.internet-ready { color: #A06443; border-color: #E5E0D8; }
.stay-confirmed { color: #A06443; border-color: #E5E0D8; }
.budget-set { color: #9BA3AF; border-color: #E5E0D8; }
.packed { color: #F35C43; border-color: #F35C43; background: #FFF5F3; }
.route-checked { color: #A06443; border-color: #E5E0D8; }

.task-progress-line {
  height: 4px;
  background: #E5E0D8;
  border-radius: 2px;
  margin-top: 10px;
  width: 100%;
  overflow: hidden;
}

.task-progress-fill {
  height: 100%;
  background: #A06443;
  border-radius: 2px;
}

/* Silver Upsell Banner */
.ach-upsell-banner {
  margin-top: 24px;
  background: white;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #E5E0D8;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.upsell-text {
  flex: 1;
  color: var(--dark);
}

.upsell-link {
  color: var(--grey-text);
  font-size: 0.75rem;
}

@media (min-width: 992px) {
  body.achievements-body {
    max-width: 100%;
  }

  /* Responsive desktop grid for achievements */
  .achievements-page-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 40px 120px;
    background: transparent;
    box-shadow: none;
    min-height: 100vh;
  }
  
  .ach-task-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
  }
  
  /* Make sure drawer stays reasonable size on desktop */
  body.achievements-body .bottom-sheet, 
  body.achievements-body .bottom-sheet-overlay {
    max-width: 600px;
    margin: 0 auto;
    left: 0;
    right: 0;
  }
}

/* AI FAB */
.ai-fab {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(52, 211, 153, 0.4);
  background: linear-gradient(135deg, #10B981, #059669);
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
  z-index: 100;
  transition: transform 0.3s;
}

.ai-fab:hover {
  transform: scale(1.05);
}

  .ai-fab-label {
    position: absolute;
    bottom: 6px;
    font-size: 0.55rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
  }
  
  /* =========================================================
     BOTTOM SHEET (DRAWER)
     ========================================================= */
  .bottom-sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  
  .bottom-sheet-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }
  
  .bottom-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 90vh;
    background: white;
    border-radius: 24px 24px 0 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
  }
  
  @media (min-width: 768px) {
    .bottom-sheet {
      width: 500px;
      left: 50%;
      transform: translate(-50%, 100%);
      bottom: 20px;
      border-radius: 24px;
    }
    .bottom-sheet.active {
      transform: translate(-50%, 0);
    }
  }
  
  .bottom-sheet.active {
    transform: translateY(0);
  }
  
  .drawer-handle {
    width: 40px;
    height: 4px;
    background: #E5E0D8;
    border-radius: 2px;
    margin: 12px auto;
  }
  
  .drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px 16px;
    border-bottom: 1px solid #F3F4F6;
  }
  
  .drawer-type-badge {
    background: #FCF4ED;
    color: #A06443;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
  }
  
  .drawer-close {
    background: none;
    border: none;
    color: #6B7280;
    cursor: pointer;
    padding: 4px;
  }
  
  .drawer-content {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
  }
  
  .drawer-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: #1A1A1A;
  }
  
  .drawer-subtitle {
    font-size: 0.85rem;
    color: #6B7280;
    margin-bottom: 24px;
    font-weight: 500;
  }
  
  .drawer-problem-outcome {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }
  
  .problem-box, .outcome-box {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #F3F4F6;
  }
  
  .outcome-box {
    background: #ECFDF5;
    border-color: #A7F3D0;
  }
  
  .po-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: block;
    color: #4B5563;
  }
  
  .outcome-box .po-label {
    color: #059669;
  }
  
  .problem-box p, .outcome-box p {
    font-size: 0.9rem;
    color: #1A1A1A;
    line-height: 1.4;
  }
  
  .drawer-body {
    margin-bottom: 24px;
  }
  
  .drawer-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
  }
  
  .drawer-body p {
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.5;
    margin-bottom: 16px;
  }
  
  .drawer-checklist {
    list-style: none;
    padding: 0;
  }
  
  .drawer-checklist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #1A1A1A;
    line-height: 1.4;
  }
  
  .drawer-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    border: 2px solid #E5E0D8;
    border-radius: 4px;
  }
  
  .drawer-footer {
    padding: 16px 24px 32px;
    border-top: 1px solid #F3F4F6;
    background: white;
  }
  
  .btn-complete {
    width: 100%;
    background: #10B981;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
    transition: transform 0.2s;
  }
  
  .btn-complete:active {
    transform: scale(0.98);
  }
  
  .btn-upgrade {
    width: 100%;
    background: #1A1A1A;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  /* Progress Ring */
  .progress-ring-container {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 4px;
  }
  .progress-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
  }
  .ring-bg {
    fill: none;
    stroke: #E5E0D8;
    stroke-width: 2.5;
  }
  .ring-fill {
    fill: none;
    stroke: #10B981;
    stroke-width: 2.5;
    stroke-linecap: round;
    transition: stroke-dasharray 0.5s ease;
  }
  .progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    font-weight: 800;
    color: #1A1A1A;
  }
