/* ==========================================================================
   360mods Master Stylesheet - Authentic 360 Design System
   ========================================================================== */

:root {
  --color-primary: #180d43;
  --color-purple: #311969;
  --color-purple-light: #762eeb;
  --color-purple-tint: #f1ecf9;
  --color-yellow: #ffce19;
  --color-yellow-light: #ffe7ad;
  --color-yellow-badge: #ffce5b;
  --color-green: #038153;
  --color-green-light: #e6f9f0;
  --color-cyan: #00bcd4;
  --color-bg-warm: #faf8f5;
  --color-bg-cream: #f4f0e7;
  --color-border: #ede8df;
  --color-text-dark: #180d43;
  --color-text-body: #31302e;
  --color-text-muted: #735c89;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 28px;
  --border-radius-pill: 9999px;
  --transition-default: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: var(--color-text-dark);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  padding-top: 120px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  overflow-x: hidden;
  background-color: #ffffff;
}

main {
  flex: 1 0 auto;
}

/* Homepage hero banner extends behind floating header */
.hero-lead-section {
  margin-top: -120px;
  padding-top: 140px !important;
}




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

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

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

/* ==========================================================================
   Header & Navigation - Floating Rounded Pill with Scroll Detection
   ========================================================================== */

.site-header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.site-header-wrapper.header-hidden {
  transform: translateY(-160%);
}

.site-header-wrapper.header-visible {
  transform: translateY(0);
}

.announcement-bar {
  background-color: var(--color-yellow);
  color: #000000;
  text-align: center;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  pointer-events: auto;
}
.announcement-bar a {
  color: #000000;
  font-weight: 800;
  text-decoration: underline;
}

.floating-nav-card {
  pointer-events: auto;
  max-width: 1600px;
  width: calc(100% - 20px);
  margin: 8px auto 0 auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 4px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-link img {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: -26px 0;
}




.nav-links-center {
  display: none;
  align-items: center;
  gap: 16px;
}
@media (min-width: 992px) {
  .nav-links-center {
    display: flex;
  }
}

.nav-item-btn {
  background: transparent;
  border: none;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 600;
  color: #31302e;
  border-radius: var(--border-radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition-default);
}
.nav-item-btn:hover, .nav-item-btn.active {
  color: var(--color-purple-light);
}
.nav-item-btn .chevron {
  width: 10px;
  height: 10px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.nav-item-btn.active .chevron {
  transform: rotate(180deg);
}

.nav-actions-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-get-started {
  background-color: var(--color-purple-light);
  color: #ffffff;
  padding: 9px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-default);
}
.btn-get-started:hover {
  background-color: #5d1bbd;
}

.btn-icon-avatar, .btn-icon-globe {
  background: transparent;
  border: none;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition-default);
}
.btn-icon-avatar svg {
  width: 18px;
  height: 18px;
}

.btn-mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  padding: 6px;
  cursor: pointer;
}
@media (min-width: 992px) {
  .btn-mobile-menu {
    display: none;
  }
}
.btn-mobile-menu span {
  width: 100%;
  height: 2.5px;
  background-color: var(--color-primary);
  border-radius: 2px;
}

/* Mega Menu Dropdowns */
.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 16px;
  margin-top: 8px;
  box-shadow: 0 16px 36px rgba(24, 13, 67, 0.12);
  border: 1px solid var(--color-border);
  padding: 40px 32px;
  display: none;
}
.dropdown-panel.open {
  display: block;
}
.dropdown-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mega-card {
  background: var(--color-bg-warm);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.mega-card:hover {
  border-color: var(--color-purple-light);
}
.mega-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
}
.mega-card-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.mega-card-desc {
  font-size: 13.5px;
  color: #555;
  line-height: 1.4;
}

.resources-inner {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.resource-card {
  background: var(--color-bg-warm);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 20px;
  text-decoration: none;
}
.resource-card:hover {
  border-color: var(--color-purple-light);
}
.resource-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.resource-card p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.4;
}

/* Modals */
.country-modal-overlay, .login-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(24, 13, 67, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.country-modal-overlay.open, .login-modal-overlay.open {
  display: flex;
}
.country-modal-box, .login-modal-box {
  background: #ffffff;
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  padding: 32px;
}
.country-modal-header, .login-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.country-modal-title, .login-modal-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--color-primary);
}
.btn-close-modal {
  background: var(--color-bg-warm);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.region-group {
  margin-bottom: 24px;
}
.region-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  font-weight: 800;
}
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}
.country-btn {
  background: var(--color-bg-warm);
  border: 1px solid var(--color-border);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition-default);
}
.country-btn:hover {
  background: var(--color-purple-tint);
  border-color: var(--color-purple-light);
  color: var(--color-purple-light);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: 1999;
  display: none;
  flex-direction: column;
  overflow-y: auto;
  padding: 24px;
}
.mobile-drawer.open {
  display: flex;
}
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.btn-close-drawer {
  background: var(--color-bg-warm);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav-item {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-primary);
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  display: block;
}
.mobile-action-btn {
  background: var(--color-purple-light);
  color: #ffffff;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  font-weight: 800;
  margin-top: 24px;
  text-decoration: none;
  display: block;
}

/* ==========================================================================
   Section 1: Hero Section (Prominent Large Image & Balanced Layout)
   ========================================================================== */

.hero-lead-section {
  background-color: var(--color-bg-cream);
  display: flex;
  align-items: stretch;
  padding: 0;
  overflow: visible;
  position: relative;
}
.hero-lead-container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  padding: 140px 24px 60px 24px;
  overflow: visible;
}
@media (min-width: 992px) {
  .hero-lead-container {
    grid-template-columns: 40% 60%;
    padding-right: 0;
    padding-bottom: 0;
    overflow: visible;
  }
}
.hero-text-col {
  max-width: 520px;
  padding-left: 40px;
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
}
.hero-lead-title {
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 900;
  color: #000000;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.hero-lead-subtitle {
  font-size: clamp(17px, 1.8vw, 21px);
  color: #000000;
  line-height: 1.42;
  margin-bottom: 36px;
  font-weight: 400;
}
.hero-lead-cta-btn {
  background-color: var(--color-purple-light);
  color: #ffffff;
  padding: 16px 36px;
  border-radius: var(--border-radius-pill);
  font-size: 16px;
  font-weight: 800;
  display: inline-block;
  transition: var(--transition-default);
}
.hero-lead-cta-btn:hover {
  background-color: #5d1bbd;
  transform: translateY(-2px);
}
.hero-image-col {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  overflow: visible;
  min-width: 0;
}
@media (min-width: 992px) {
  .hero-image-col {
    margin-top: -260px;
    margin-bottom: 0;
    padding-top: 0;
    align-self: end;
    overflow: visible;
  }
}
.hero-graphic-img {
  width: 100%;
  max-width: none !important;
  height: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .hero-graphic-img {
    max-width: none !important;
    width: 150%;
    min-width: 150%;
    transform: translateX(0%);
    flex-shrink: 0;
  }
}

/* ==========================================================================
   Section 2: User Stories Carousel
   ========================================================================== */

.section-user-stories {
  background-color: #ffffff;
  padding: 80px 24px;
  overflow: hidden;
}
.stories-carousel-container {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
.stories-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 32px;
  scrollbar-width: none;
}
.stories-track::-webkit-scrollbar {
  display: none;
}
.story-card {
  flex: 0 0 420px;
  min-height: 440px;
  height: 440px;
  border-radius: 28px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.story-card.bg-cyan { background-color: #5dceff; color: #01579b; }
.story-card.bg-green { background-color: #89ec7e; color: #1b5e20; }
.story-card.bg-purple { background-color: #f16ee5; color: #4a148c; }
.story-card.bg-yellow { background-color: #ffce5b; color: #f57f17; }
.story-quote {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.story-stars {
  font-size: 20px;
  margin-bottom: 6px;
}
.story-author {
  font-size: 16px;
  font-weight: 700;
}
.story-card-image {
  flex: 0 0 420px;
  height: 440px;
  border-radius: 28px;
  overflow: hidden;
}
.story-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Centered Round Slider Buttons */
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.slider-arrow-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.2s ease;
  cursor: pointer;
}
.slider-arrow-btn.prev-btn {
  background-color: #9e9e9e;
  color: #ffffff;
}
.slider-arrow-btn.next-btn {
  background-color: #424242;
  color: #ffffff;
}
.slider-arrow-btn:hover {
  transform: scale(1.06);
}

/* ==========================================================================
   Section 3: Location Lowdown
   ========================================================================== */

.section-location-lowdown {
  padding: 80px 24px;
  max-width: 1360px;
  margin: 0 auto;
}
.lowdown-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.lowdown-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: #555555;
  max-width: 720px;
  margin-bottom: 48px;
}
.lowdown-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.lowdown-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.lowdown-card:hover {
  transform: translateY(-6px);
}
.lowdown-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lowdown-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(24,13,67,0.75) 100%);
}
.lowdown-card-pill {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-radius: var(--border-radius-pill);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-primary);
  font-weight: 800;
}
.lowdown-card-pill h3 {
  font-size: 17px;
  margin: 0;
}
.lowdown-card-pill svg {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   Section 4: Pricing Plans (Pure White Background)
   ========================================================================== */

.section-pricing {
  background-color: #ffffff;
  padding: 80px 24px;
  text-align: center;
}
.pricing-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.pricing-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: #555555;
  max-width: 680px;
  margin: 0 auto 56px auto;
}
.pricing-cards-wrapper {
  max-width: 1200px;
  margin: 0 auto 48px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  text-align: left;
}
.pricing-card {
  background: #ffffff;
  border-radius: var(--border-radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card.gold-card {
  background-color: var(--color-yellow-light);
  border: 2px solid var(--color-yellow-badge);
}
.badge-popular {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-yellow-badge);
  color: #000000;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 0 var(--border-radius-lg) 0 16px;
}
.plan-tier-name {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.plan-benefits-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 18px;
}
.plan-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 24px;
}
.plan-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.btn-download-pricing {
  background: var(--color-purple);
  color: #ffffff;
  padding: 16px 40px;
  border-radius: var(--border-radius-md);
  font-size: 16px;
  font-weight: 800;
  display: inline-block;
  transition: var(--transition-default);
}
.btn-download-pricing:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

/* ==========================================================================
   Section 5: Stars & Download Section (Centered & Proportional)
   ========================================================================== */

.section-stars-download {
  background-color: var(--color-bg-cream);
  padding: 80px 24px 0 24px;
  overflow: hidden;
}
.stars-download-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media (min-width: 880px) {
  .stars-download-inner {
    flex-direction: row;
    align-items: flex-end;
    gap: 60px;
  }
}
.stars-content {
  flex: 1 1 480px;
  max-width: 500px;
  padding-bottom: 60px;
}
.stars-content h2 {
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 900;
  color: #000000;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.stars-rating-svg {
  display: flex;
  gap: 8px;
  color: var(--color-purple-light);
  margin-bottom: 36px;
  font-size: 36px;
}
.store-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.store-badge-link img {
  height: 52px;
  width: auto;
  transition: transform 0.2s ease;
}
.store-badge-link img:hover {
  transform: scale(1.04);
}
.stars-mockup-wrapper {
  flex: 1 1 460px;
  max-width: 480px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.stars-mockup-img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  display: block;
}

/* ==========================================================================
   Global Footer (Dark Section with Newsletter)
   ========================================================================== */

.site-footer {
  background-color: #242220;
  color: #ffffff;
  padding: 60px 24px 40px 24px;
}
.footer-newsletter-wrap {
  max-width: 1360px;
  margin: 0 auto 48px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  justify-content: center;
  max-width: 640px;
  width: 100%;
}
.newsletter-input {
  flex: 1 1 300px;
  background: #ffffff;
  border: 1px solid #d4cdbf;
  border-radius: 8px;
  padding: 14px 20px;
  color: #000000;
  font-size: 15px;
}
.newsletter-btn {
  background: var(--color-purple-light);
  color: #ffffff;
  border-radius: 8px;
  padding: 14px 32px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.newsletter-btn:hover {
  background: #5d1bbd;
}
.newsletter-disclaimer {
  font-size: 13px;
  color: #cfcbca;
  line-height: 1.5;
  max-width: 780px;
}
.newsletter-disclaimer a {
  color: #a87ffb;
  text-decoration: underline;
}

.footer-links-grid {
  max-width: 1360px;
  margin: 0 auto 64px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 48px;
}
.footer-col h4 {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav-list a {
  font-size: 14.5px;
  color: #cfcbca;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
}
.footer-nav-list a:hover {
  color: #ffffff;
}

.footer-bottom-bar {
  max-width: 1360px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  color: #cfcbca;
}
.footer-social-links {
  display: flex;
  gap: 16px;
  font-size: 18px;
}
.footer-social-links a {
  color: #ffffff;
}

/* ==========================================================================
   Section 6: Plans & Pricing Comparison Table, Features, FAQs & Reviews
   ========================================================================== */

/* Download Centered Button */
.btn-download-centered {
  background-color: var(--color-purple-light);
  color: #ffffff;
  padding: 16px 40px;
  border-radius: var(--border-radius-pill);
  font-size: 16px;
  font-weight: 800;
  display: inline-block;
  text-decoration: none;
  transition: var(--transition-default);
  margin-top: 8px;
  margin-bottom: 60px;
}
.btn-download-centered:hover {
  background-color: #5d1bbd;
  transform: translateY(-2px);
}

/* Check Icon Circle */
.check-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #e8f8f0;
  color: #038153;
  border-radius: 50%;
  font-size: 13px;
}

/* Comparison Table Section */
.comparison-table-section {
  max-width: 1200px;
  margin: 0 auto 80px auto;
  padding: 0 20px;
  overflow-x: auto;
}
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
.comparison-table thead th {
  padding: 24px 20px;
  font-size: 22px;
  font-weight: 900;
  color: var(--color-primary);
  text-align: center;
  border-bottom: 2px solid var(--color-border);
  background-color: #faf8f5;
}
.comparison-table thead th:first-child {
  text-align: left;
  width: 34%;
}
.comparison-table thead th:last-child {
  background-color: var(--color-yellow-light);
  color: #000000;
}
.comparison-cat-header {
  background: #f4f0e7;
  padding: 16px 20px;
  font-size: 17px;
  font-weight: 800;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease;
}
.comparison-cat-header:hover {
  background: #ede8df;
}
.comparison-table tbody tr.table-row-item td {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #31302e;
  text-align: center;
  border-bottom: 1px solid #f0ebe1;
}
.comparison-table tbody tr.table-row-item td:first-child {
  text-align: left;
  font-weight: 700;
}
.comparison-table tbody tr.table-row-item td:last-child {
  background-color: rgba(255, 231, 173, 0.25);
  font-weight: 700;
}
.comparison-table tbody tr.table-row-item:hover {
  background-color: #faf8f5;
}

/* Membership Feature Highlights Section */
.membership-features-section {
  max-width: 1200px;
  margin: 0 auto 80px auto;
  padding: 0 20px;
}
.features-cat-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-purple-light);
  margin-bottom: 24px;
  margin-top: 48px;
}
.features-cat-title:first-child {
  margin-top: 0;
}
.features-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.features-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.feature-highlight-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(24, 13, 67, 0.06);
}
.feature-highlight-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #f1ecf9;
  color: var(--color-purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.feature-highlight-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.feature-highlight-card p {
  font-size: 15px;
  color: #555555;
  line-height: 1.55;
  margin: 0;
}

/* Membership FAQs Section */
.membership-faq-section {
  background-color: #faf8f5;
  padding: 80px 20px;
  margin: 60px 0;
}
.faq-main-title {
  text-align: center;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.faq-header-btn {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  font-size: 17px;
  font-weight: 800;
  color: var(--color-primary);
  text-align: left;
  cursor: pointer;
  gap: 16px;
}
.faq-icon-chevron {
  font-size: 16px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  color: var(--color-purple-light);
}
.faq-item.active .faq-icon-chevron {
  transform: rotate(180deg);
}
.faq-body-content {
  padding: 0 24px 22px 24px;
  font-size: 15.5px;
  color: #555555;
  line-height: 1.6;
  display: none;
}
.faq-item.active .faq-body-content {
  display: block;
}

/* Customer Reviews / Testimonials Section */
.membership-reviews-section {
  background-color: #ffffff;
  padding: 80px 20px;
}
.reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.reviews-main-title {
  text-align: center;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.reviews-subtitle {
  text-align: center;
  font-size: 17px;
  color: #666666;
  max-width: 720px;
  margin: 0 auto 56px auto;
  line-height: 1.5;
}
.reviews-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.review-card-item {
  background: #faf8f5;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review-quote-bubble {
  font-size: 28px;
  color: var(--color-purple-light);
  margin-bottom: 18px;
}
.review-quote-text {
  font-size: 16px;
  color: #31302e;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 24px;
  flex-grow: 1;
}
.review-author-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}
