/* ==========================================================================
   HookupSearch Core Design System & Stylesheet
   Replicated 1:1 based on original website source & home.mp4 reference
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
  --primary-pink: #f03968;
  --primary-pink-hover: #d32552;
  --primary-pink-light: #fff0f4;
  --primary-pink-border: #fcd5e0;
  --text-main: #545454;
  --text-dark: #2e2d2d;
  --text-muted: #7b7b7b;
  --text-light: #999999;
  --bg-page: #ffffff;
  --bg-card: #ffffff;
  --bg-soft: #f8f9fa;
  --bg-faq: #f6f5fc;
  --bg-footer: #222222;
  --border-color: #e5e7eb;
  --border-light: #eeeeee;
  --star-filled: #f03968;
  --star-empty: #dcdcdc;
  --success-color: #10b981;
  --danger-color: #ef4444;
  --shadow-card: 0 1px 38px 0 rgba(2, 7, 24, 0.09);
  --shadow-dropdown: 0 12px 36px rgba(0, 0, 0, 0.12);
  --shadow-button: 0 4px 14px rgba(240, 57, 104, 0.35);
  --container-max: 1442px;
  --font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 50px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

html {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-main);
  background-color: var(--bg-page);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text-main);
  background-color: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}

img, picture, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--primary-pink);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-pink-hover);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.3;
}

p {
  margin-bottom: 1.2rem;
  line-height: 1.65;
}

ul, ol {
  margin-bottom: 1.2rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.4rem;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.app-header-wrapper {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid var(--border-light);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 16px;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--primary-pink);
}

.nav-link .dropdown-chevron {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform var(--transition-fast);
}

.nav-item:hover .nav-link .dropdown-chevron,
.nav-item.open .nav-link .dropdown-chevron {
  transform: rotate(-135deg);
  margin-top: 3px;
}

/* Header Dropdowns */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background-color: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-dropdown);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 12px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 1010;
}

.nav-dropdown.dropdown-2col {
  min-width: 440px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 16px;
  gap: 6px 12px;
}

.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item a {
  display: block;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.dropdown-item a:hover {
  background-color: var(--primary-pink-light);
  color: var(--primary-pink);
  padding-left: 22px;
}

.flag-icon {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn-signup-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background-color: var(--primary-pink);
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-button);
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-signup-header:hover {
  background-color: var(--primary-pink-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(240, 57, 104, 0.45);
}

/* Mobile Hamburger */
.header-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.header-hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.header-mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  overflow-y: auto;
  padding: 24px 20px 60px;
  transition: right var(--transition-normal);
}

.header-mobile-drawer.is-open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.mobile-drawer-close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-dark);
  cursor: pointer;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.mobile-nav-item {
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.mobile-submenu {
  display: none;
  list-style: none;
  padding: 4px 0 12px 16px;
  margin: 0;
  background-color: var(--bg-soft);
  border-radius: var(--radius-sm);
}

.mobile-submenu.is-open {
  display: block;
}

.mobile-submenu li a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--text-main);
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  padding: 40px 0 30px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 24px;
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  background-color: var(--primary-pink);
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-button);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
}

.btn-learn-more:hover {
  background-color: var(--primary-pink-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(240, 57, 104, 0.45);
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  right: -15px;
  bottom: 15px;
  left: 15px;
  background-color: var(--primary-pink-light);
  border-radius: 36px;
  z-index: 0;
}

.hero-image-wrapper img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 540px;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

/* ==========================================================================
   Section: Our Expert
   ========================================================================== */

.section-experts {
  padding: 50px 0 30px;
}

.section-heading-centered {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 36px;
  position: relative;
}

.experts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.expert-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.expert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(2, 7, 24, 0.13);
}

.expert-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 18px;
  border: 4px solid var(--primary-pink-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.expert-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.expert-role {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.expert-bio {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 22px;
  flex-grow: 1;
}

.expert-btn {
  display: inline-block;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-pink);
  border: 2px solid var(--primary-pink);
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
}

.expert-btn:hover {
  background-color: var(--primary-pink);
  color: #ffffff;
}

/* ==========================================================================
   Section: Good For (Ranked List)
   ========================================================================== */

.section-good-for {
  padding: 30px 0;
}

.good-for-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  max-width: 1100px;
  margin: 0 auto;
}

.good-for-list {
  list-style: none;
  counter-reset: good-for-counter;
  padding: 0;
  margin: 0;
}

.good-for-item {
  counter-increment: good-for-counter;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border-light);
  font-size: 15.5px;
}

.good-for-item:last-child {
  border-bottom: none;
}

.good-for-desc {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
}

.good-for-desc::before {
  content: counter(good-for-counter) ".";
  font-weight: 700;
  color: var(--text-muted);
  min-width: 24px;
}

.good-for-name {
  font-weight: 700;
  color: var(--primary-pink);
  font-size: 16px;
  white-space: nowrap;
  margin-left: 16px;
}

/* ==========================================================================
   Section: Main Content & Review Details
   ========================================================================== */

.content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 0;
}

.article-intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-main);
  margin-bottom: 30px;
}

.criteria-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 40px;
}

.criteria-list > li {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 24px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.criteria-list > li::before {
  content: '•';
  color: var(--primary-pink);
  font-size: 24px;
}

.criteria-list p {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-main);
  line-height: 1.7;
  margin-left: 18px;
  margin-bottom: 14px;
}

/* Site Review Item */
.site-review-block {
  margin: 60px 0 50px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.site-title {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.site-banner-img {
  display: block;
  width: 100%;
  max-width: 780px;
  height: auto;
  margin: 0 auto 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.site-description {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-main);
  margin-bottom: 20px;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}

.pros-box, .cons-box {
  background-color: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  border: 1px solid var(--border-light);
}

.pros-box h4 {
  color: var(--success-color);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pros-box h4::before {
  content: '✓';
  font-weight: 900;
}

.cons-box h4 {
  color: var(--danger-color);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cons-box h4::before {
  content: '✕';
  font-weight: 900;
}

.pros-box ul, .cons-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-box li, .cons-box li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  margin-bottom: 8px;
  line-height: 1.5;
}

.pros-box li::before {
  content: '•';
  color: var(--success-color);
  position: absolute;
  left: 4px;
  font-size: 18px;
  top: -2px;
}

.cons-box li::before {
  content: '•';
  color: var(--danger-color);
  position: absolute;
  left: 4px;
  font-size: 18px;
  top: -2px;
}

.pricing-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 24px 0 12px;
}

.pricing-table-wrapper {
  overflow-x: auto;
  margin-bottom: 28px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: #ffffff;
}

.pricing-table th, .pricing-table td {
  padding: 12px 18px;
  font-size: 14.5px;
  border: 1px solid var(--border-color);
  text-align: left;
}

.pricing-table th {
  background-color: var(--bg-soft);
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
}

.pricing-table tr:nth-child(even) {
  background-color: #fdfdfd;
}

/* Featured Review Scorecard (flirtymature, onenightfriend, together2night, benaughty, flirt) */
.featured-scorecard {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  padding: 24px 28px;
  margin: 32px 0 40px;
  display: grid;
  grid-template-columns: 140px 1fr 220px;
  align-items: center;
  gap: 28px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.featured-scorecard:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(2, 7, 24, 0.12);
}

.scorecard-thumb {
  width: 140px;
  height: 110px;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-soft);
  border: 1px solid var(--border-light);
}

.scorecard-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scorecard-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.scorecard-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.scorecard-metric {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-main);
}

.scorecard-metric-label {
  font-weight: 700;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.scorecard-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

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

.rating-score {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-pink);
}

.rating-max {
  font-size: 14px;
  color: var(--text-muted);
}

.star-rating {
  display: flex;
  gap: 3px;
}

.star-rating svg {
  width: 16px;
  height: 16px;
  fill: var(--star-filled);
}

.btn-visit-site {
  width: 100%;
  padding: 10px 20px;
  background-color: var(--primary-pink);
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-button);
  transition: all var(--transition-fast);
  text-align: center;
  border: none;
  cursor: pointer;
}

.btn-visit-site:hover {
  background-color: var(--primary-pink-hover);
  box-shadow: 0 6px 18px rgba(240, 57, 104, 0.45);
}

.link-full-review {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.link-full-review:hover {
  color: var(--primary-pink);
  text-decoration: underline;
}

/* ==========================================================================
   Section: FAQ Accordion
   ========================================================================== */

.section-faq {
  padding: 40px 0 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-faq);
  border-radius: var(--radius-md);
  border: 1px solid rgba(133, 133, 205, 0.15);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  width: 100%;
  border: none;
  text-align: left;
}

.faq-question {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--primary-pink);
  border-bottom: 2px solid var(--primary-pink);
  transform: rotate(45deg);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.is-open .faq-icon {
  transform: rotate(-135deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 24px;
}

.faq-item.is-open .faq-body {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-main);
  margin: 0;
}

/* ==========================================================================
   Section: Submit Your Review Form
   ========================================================================== */

.section-review-form {
  padding: 40px 0 60px;
}

.review-form-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  max-width: 800px;
  margin: 0 auto;
}

.star-picker-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.star-picker-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.star-picker {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 6px;
}

.star-picker input {
  display: none;
}

.star-picker label {
  cursor: pointer;
  width: 24px;
  height: 24px;
  fill: var(--star-empty);
  transition: fill var(--transition-fast), transform var(--transition-fast);
}

.star-picker label:hover,
.star-picker label:hover ~ label,
.star-picker input:checked ~ label {
  fill: var(--star-filled);
  transform: scale(1.1);
}

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

.form-label {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-dark);
  background-color: #f3f4f6;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
  background-color: #ffffff;
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 3px var(--primary-pink-light);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.btn-form-submit {
  padding: 12px 32px;
  background-color: var(--primary-pink);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-button);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-form-submit:hover {
  background-color: var(--primary-pink-hover);
  transform: translateY(-1px);
}

.btn-form-cancel {
  padding: 12px 24px;
  background: none;
  border: none;
  color: var(--primary-pink);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.btn-form-cancel:hover {
  color: var(--primary-pink-hover);
}

.form-feedback-msg {
  display: none;
  margin-top: 20px;
  padding: 16px;
  background-color: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  border-radius: var(--radius-md);
  font-size: 14.5px;
  line-height: 1.5;
}

/* ==========================================================================
   Footer Component
   ========================================================================== */

.app-footer-wrapper {
  background-color: var(--bg-footer);
  color: #ffffff;
  padding: 60px 0 30px;
  margin-top: auto;
  font-size: 14px;
}

.footer-grid-top {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 30px;
}

.footer-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
}

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

.footer-menu-list li {
  margin-bottom: 10px;
}

.footer-menu-list a {
  color: #d1d5db;
  font-size: 14px;
  transition: color var(--transition-fast);
}

.footer-menu-list a:hover {
  color: #ffffff;
}

.footer-disclosure-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: #a3a3a3;
  max-width: 580px;
  margin-left: auto;
}

.footer-divider-line {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.12);
  margin: 30px 0 24px;
}

.footer-center-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-center-nav a {
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-center-nav a:hover {
  color: var(--primary-pink);
}

.footer-bottom-legal {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.65;
  color: #737373;
}

.footer-copyright-text {
  margin-top: 14px;
  font-size: 12.5px;
  color: #737373;
}

/* ==========================================================================
   Author Page Layouts (Metz & Shoya)
   ========================================================================== */

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

.author-page-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

.author-layout-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  margin-bottom: 60px;
  align-items: start;
}

.author-profile-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-light);
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.author-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-profile-info {
  flex: 1;
}

.author-profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.author-name-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
}

.author-role-badge {
  color: #8b5cf6;
  font-size: 13.5px;
  font-weight: 600;
}

.author-posts-badge {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.author-excerpt-text {
  font-size: 14.5px;
  color: var(--text-main);
  line-height: 1.6;
}

.author-featured-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 30px;
}

.author-featured-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.author-featured-brands {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  font-weight: 800;
  font-size: 16px;
  color: #262626;
  letter-spacing: -0.3px;
}

.author-bio-body {
  font-size: 15px;
  line-height: 1.75;
  color: #444444;
}

.author-bio-body p {
  margin-bottom: 18px;
}

.sidebar-social-box {
  padding-top: 10px;
}

.sidebar-social-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.social-icons-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #d4d4d4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  font-size: 14px;
  transition: all var(--transition-fast);
}

.social-icon-circle:hover {
  border-color: var(--primary-pink);
  color: var(--primary-pink);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .author-layout-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .author-profile-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-profile-header {
    flex-direction: column;
    gap: 6px;
  }

  .author-posts-badge {
    margin-left: 0;
    margin-top: 4px;
  }

  .author-featured-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ==========================================================================
   Subpage / Hub Layouts
   ========================================================================== */

.subpage-hero {
  background: linear-gradient(180deg, var(--primary-pink-light) 0%, #ffffff 100%);
  padding: 50px 0 30px;
  text-align: center;
}

.subpage-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.subpage-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto;
}

.subpage-content-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  max-width: 1000px;
  margin: 30px auto 60px;
}

/* Article 2-Column Layout Grid with Sticky TOC Sidebar */
.article-layout-grid {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 40px;
  margin-top: 30px;
  margin-bottom: 60px;
  align-items: start;
}

.article-main-content {
  min-width: 0;
}

.title-centered-accent {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  margin: 30px 0 12px;
}

.title-underline {
  width: 50px;
  height: 2px;
  background-color: #cccccc;
  margin: 0 auto 30px;
}

.sticky-toc-card {
  position: sticky;
  top: 96px;
  background-color: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--border-light);
  padding: 24px 20px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.toc-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-align: center;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list li {
  margin-bottom: 10px;
}

.toc-list a {
  font-size: 13.5px;
  color: #555555;
  line-height: 1.45;
  display: block;
  transition: color var(--transition-fast);
}

.toc-list a:hover {
  color: var(--primary-pink);
  text-decoration: underline;
}

/* Single Review Detail Page Grid & Components */
.review-hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
  align-items: start;
}

.review-hero-image-wrap {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.review-hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.about-site-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 24px 20px;
}

.about-site-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}

.about-site-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.about-site-table tr {
  border-bottom: 1px dashed var(--border-light);
}

.about-site-table tr:last-child {
  border-bottom: none;
}

.about-site-table td {
  padding: 8px 0;
  font-size: 13.5px;
}

.about-site-table td:first-child {
  color: var(--text-muted);
  font-weight: 500;
}

.about-site-table td:last-child {
  color: var(--text-dark);
  font-weight: 700;
  text-align: right;
}

.about-site-brand-box {
  background-color: #7e7eab;
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 16px;
  text-align: center;
}

.about-site-brand-box p {
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-site-brands-grid {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.about-site-brands-grid img {
  height: 38px;
  border-radius: 4px;
}

.pros-cons-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 30px 0 40px;
}

.pros-card-box {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.pros-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #15803d;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
}

.cons-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #b91c1c;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
}

.pros-cons-list-ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-cons-list-ul li {
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.pros-icon-plus {
  color: var(--primary-pink);
  font-weight: 800;
  font-size: 16px;
}

.cons-icon-minus {
  color: var(--primary-pink);
  font-weight: 800;
  font-size: 16px;
}

/* Floating Back-To-Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary-pink);
  cursor: pointer;
  z-index: 999;
  transition: all var(--transition-fast);
  font-size: 11px;
  font-weight: 700;
}

.back-to-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(240, 57, 104, 0.25);
}

.subpage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.subpage-card-link {
  display: block;
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-fast);
}

.subpage-card-link:hover {
  border-color: var(--primary-pink);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(240, 57, 104, 0.12);
}

.subpage-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

/* ==========================================================================
   Review Card Grid & Filter Layout
   ========================================================================== */

.filter-accordion-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  padding: 16px 20px;
  margin-bottom: 30px;
}

.filter-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-soft);
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-toggle-btn:hover {
  border-color: var(--primary-pink);
  color: var(--primary-pink);
}

.filter-panel-content {
  display: none;
  padding-top: 20px;
  margin-top: 16px;
  border-top: 1px solid var(--border-light);
}

.filter-panel-content.is-open {
  display: block;
}

.filter-groups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 20px;
}

.filter-group-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--primary-pink);
}

.filter-checkbox-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.filter-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-main);
  cursor: pointer;
}

.filter-checkbox-label input {
  accent-color: var(--primary-pink);
}

.reviews-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin: 30px 0 60px;
}

.review-catalog-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.review-catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(240, 57, 104, 0.15);
}

.review-card-thumb-link {
  display: block;
  width: 100%;
  height: 180px;
  background-color: var(--bg-soft);
  overflow: hidden;
}

.review-card-thumb-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.review-catalog-card:hover .review-card-thumb-link img {
  transform: scale(1.05);
}

.review-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.review-card-platform-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.review-card-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.review-stars-wrapper {
  color: var(--star-filled);
  font-size: 15px;
  letter-spacing: 2px;
}

.review-score-badge {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-dark);
  background-color: var(--primary-pink-light);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.review-card-btn-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;

}

.btn-read-review-outline {
  display: inline-block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-pink);
  border: 1.5px solid var(--primary-pink);
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
}

.btn-read-review-outline:hover {
  background-color: var(--primary-pink);
  color: #ffffff;
}

.btn-visit-site-solid {
  display: inline-block;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  background-color: var(--primary-pink);
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(240, 57, 104, 0.3);
  transition: all var(--transition-fast);
}

.btn-visit-site-solid:hover {
  background-color: var(--primary-pink-hover);
  transform: translateY(-1px);
}

.subpage-card-desc {
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.5;
}

/* Breadcrumbs & Disclosure Navigation */
.breadcrumbs-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumbs-nav a {
  color: var(--primary-pink);
  font-weight: 600;
}

.breadcrumbs-nav a:hover {
  text-decoration: underline;
}

.breadcrumbs-separator {
  color: #ccc;
}

.affiliate-disclosure-bar {
  display: inline-block;
  background-color: var(--primary-pink-light);
  color: var(--primary-pink-hover);
  border: 1px solid var(--primary-pink-border);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 24px;
}

.article-heading-h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.25;
}

.article-heading-h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 32px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-pink-light);
}

.article-heading-h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-pink);
  margin-top: 24px;
  margin-bottom: 10px;
}

/* Hotline & Callout Support Boxes */
.hotline-box {
  background-color: #fff4f6;
  border-left: 4px solid var(--primary-pink);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
}

.hotline-box p {
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.hotline-box p:last-child {
  margin-bottom: 0;
}

/* Contact Form Grid & Controls */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.contact-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.contact-label .req {
  color: var(--primary-pink);
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-family);
  font-size: 15px;
  color: var(--text-dark);
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition-fast);
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 3px rgba(240, 57, 104, 0.15);
}

.btn-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  background-color: var(--primary-pink);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  box-shadow: var(--shadow-button);
  transition: all var(--transition-fast);
}

.btn-contact-submit:hover {
  background-color: var(--primary-pink-hover);
  transform: translateY(-2px);
}

/* Sitemap Multi-Column Layout */
.sitemap-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.sitemap-group {
  background-color: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
}

.sitemap-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-pink);
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-list li {
  margin-bottom: 10px;
}

.sitemap-list a {
  font-size: 14.5px;
  color: var(--text-main);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-fast);
}

.sitemap-list a:hover {
  color: var(--primary-pink);
}

.sitemap-list a::before {
  content: "•";
  color: var(--primary-pink);
  font-weight: bold;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }
  .header-hamburger {
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-title {
    font-size: 32px;
  }
  .featured-scorecard {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .scorecard-thumb {
    margin: 0 auto;
  }
  .scorecard-metric {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 26px;
  }
  .experts-grid {
    grid-template-columns: 1fr;
  }
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
  .review-form-card {
    padding: 24px 20px;
  }
  .subpage-content-card {
    padding: 24px 18px;
  }
  .good-for-card {
    padding: 24px 18px;
  }
  .good-for-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .good-for-name {
    margin-left: 36px;
  }
}
