:root {
  --primary-blue: #3300ff;
  --primary-blue-hover: #2600cc;
  --white: #ffffff;
  --black: #000000;
  --gray-200: #e8e8e8;
  --gray-400: #a0a0a0;
  --gray-500: #6b6b6b;
  --gray-600: #4b5563;
  --gray-700: #333333;
  --gray-800: #1a1a1a;
  --navy: #000c41;
  --dark-blue-badge: #103289;
  --green-success: #00b67a;
  --hero-bg: #f8fbff;
  --border-gray: #e5e7eb;
  --text-muted: #374151;
  --text-light: #6b7280;
  --font-primary:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --spacing-md: 16px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 50px;
  --container-max: 1440px;
  --header-height: 64px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.15s ease;
}

ul {
  list-style: none;
}

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

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--hero-bg) !important;
  z-index: 1000;
  border-bottom: 1px solid var(--border-gray);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-800);
  text-decoration: none;
}

.logo-icon {
  font-family: monospace;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-weight: 500;
  color: var(--gray-700);
  font-size: 0.9375rem;
}

.nav-link:hover {
  color: var(--primary-blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  font-size: 0.875rem;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-blue-hover);
}

.btn-text {
  color: var(--primary-blue);
}

.btn-sm {
  padding: 6px 12px !important;
  font-size: 0.75rem !important;
}

.hero-section {
  margin-top: var(--header-height);
  padding: 32px 0;
  background-color: var(--hero-bg);
  min-height: 500px;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-section .container {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 32px;
}

.hero-content {
  width: 100%;
  padding: 0 20px;
}

.hero-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.hero-tab-btn {
  padding-bottom: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-light);
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-tab-btn:hover {
  color: var(--primary-blue);
}

.hero-tab-btn.active {
  color: var(--primary-blue);
}

.hero-tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-blue);
  border-radius: 2px 2px 0 0;
}

.hero-content-wrapper {
  display: none;
  animation: fadeIn 0.3s ease-out;
}

.hero-content-wrapper.active {
  display: block;
}

.hero-headline {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-checklist {
  margin-bottom: 24px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--primary-blue);
  margin-top: 2px;
}

.hero-cta-btn {
  background-color: var(--primary-blue);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 6px rgba(51, 0, 255, 0.25);
  transition: all 0.2s ease;
}

.hero-cta-btn:hover {
  background-color: var(--primary-blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(51, 0, 255, 0.3);
}

.trustpilot-widget {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 24px;
}

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

.trust-logo {
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 4px;
}

.trust-star {
  color: var(--green-success);
}

.trust-stars-box {
  background-color: var(--green-success);
  display: flex;
  padding: 2px 4px;
}

.trust-score-text {
  font-size: 0.75rem;
  color: var(--gray-600);
}

.hero-image-side {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.hero-image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 420px;
  aspect-ratio: 420 / 442;
  flex-shrink: 0;
  flex-grow: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.member-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--dark-blue-badge);
  color: var(--white);
  padding: 8px 16px;
  border-top-left-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.75rem;
}

.stats-section {
  background-color: var(--white);
  padding: 32px 0;
  border-top: 1px solid var(--border-gray);
}

.stats-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.stat-divider {
  width: 60px;
  height: 1px;
  background-color: var(--border-gray);
}

.stat-block {
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-light);
}

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

@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }

  .header-container {
    padding: 0 24px;
  }

  .hero-content {
    padding: 0 24px;
  }

  .hero-headline {
    font-size: 2.375rem;
  }

  .checklist-item {
    font-size: 1rem;
  }

  .hero-cta-btn {
    max-width: 320px;
  }

  .stats-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
  }

  .stat-divider {
    width: 1px;
    height: 48px;
  }

  .stat-value {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.875rem;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }

  .header-container {
    padding: 0 32px;
  }

  .hero-section {
    padding: 40px 0;
    min-height: 550px;
  }

  .hero-content {
    padding: 0 32px;
  }

  .hero-headline {
    font-size: 2.625rem;
  }

  .hero-image-side {
    padding: 0 32px;
  }

  .member-badge {
    padding: 10px 20px;
    font-size: 0.8125rem;
  }

  .stats-section {
    padding: 40px 0;
  }

  .stats-grid {
    gap: 60px;
  }

  .stat-divider {
    height: 52px;
  }

  .stat-value {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .btn {
    padding: 10px 24px;
    font-size: 0.9375rem;
  }

  .header-actions {
    gap: var(--spacing-md);
  }

  .hero-section {
    padding: 16px 0 40px;
    height: 572px;
    min-height: auto;
  }

  .hero-grid {
    flex-direction: row;
    padding-top: 16px;
    gap: 0;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: 80px;
  }

  .hero-content {
    flex: 0 0 460px;
    width: 460px;
    max-width: 460px;
    flex-shrink: 0;
    margin-right: 48px;
    padding: 0;
  }

  .hero-headline {
    font-size: 2.875rem;
    line-height: 1.1;
    margin-bottom: 24px;
  }

  .checklist-item {
    margin-bottom: 12px;
  }

  .check-icon {
    width: 24px;
    height: 24px;
    margin-top: 0;
  }

  .hero-cta-btn {
    padding: 12px 32px;
    max-width: 320px;
  }

  .trustpilot-widget {
    margin-top: 28px;
  }

  .trust-logo {
    font-size: 1.125rem;
  }

  .hero-image-side {
    flex: 1 1 0%;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    padding: 0;
  }

  .hero-image-container {
    width: 420px;
    height: 442px;
    aspect-ratio: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  }

  .stats-section {
    padding: 48px 0;
  }

  .stats-grid {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 80px;
  }

  .stat-divider {
    width: 1px;
    height: 56px;
  }

  .stat-value {
    font-size: 2rem;
  }
}

@media (min-width: 1280px) {
  .hero-grid {
    padding-left: 100px;
  }
}

@media (max-width: 1023px) {
  .hero-content-wrapper {
    padding-right: 0;
  }

  .zig-zag-image-col {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .zig-zag-content-col {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }

  .zig-zag-image-wrapper {
    margin: 0 auto;
    max-width: 380px;
  }

  .full-width-bg {
    padding: 60px 0;
  }
}

@media (max-width: 639px) {
  .btn-text {
    display: none;
  }

  .hero-tabs {
    gap: 16px;
  }

  .hero-tab-btn {
    font-size: 0.8125rem;
  }

  .container-wide {
    padding: 0 16px;
  }

  .zig-zag-row {
    gap: 32px;
  }

  .btn,
  .hero-cta-btn {
    white-space: nowrap;
    padding: 10px 20px;
  }

  .btn-sm {
    padding: 6px 12px !important;
    font-size: 0.75rem !important;
  }
}

.benefits-section {
  background-color: var(--hero-bg);
  padding: 80px 0;
  text-align: center;
}

.section-headline {
  font-family: "Inter", sans-serif;
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--navy);
  text-align: center;
  margin-bottom: 80px;
  line-height: 1.3;
}

.benefits-headline {
  font-family: "Inter", sans-serif;
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 60px;
}

.benefits-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.benefit-item {
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  text-align: left;
}

.benefit-icon-wrapper {
  margin-bottom: 20px;
}

.benefit-icon-wrapper img {
  width: 48px;
  height: auto;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 12px;
}

.benefit-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.benefits-cta-wrapper {
  margin-top: 40px;
}

.benefits-btn {
  padding: 16px 40px;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .benefits-section {
    padding: 60px 0;
  }

  .benefits-headline {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }

  .benefits-grid {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  .benefit-item {
    text-align: center;
    max-width: 100%;
  }

  .benefit-icon-wrapper {
    display: flex;
    justify-content: center;
  }
}

.products-section {
  padding: 80px 0;
  background-color: var(--white);
}

.full-width-bg {
  background-color: var(--hero-bg);
  width: 100%;
  padding: 80px 0;
  margin: 80px 0;
}

.container-wide {
  max-width: 1320px;
  padding: 0 60px;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.zig-zag-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  margin-bottom: 120px;
}

.zig-zag-row:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .zig-zag-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .zig-zag-row.reverse-desktop {
    flex-direction: row-reverse;
  }

  .zig-zag-image-col {
    flex: 0 0 420px;
    width: 420px;
  }

  .zig-zag-content-col {
    flex: 0 1 480px;
    width: auto;
    padding-left: 0;
    max-width: 480px;
  }

  .zig-zag-row.reverse-desktop .zig-zag-content-col {
    padding-left: 0;
    padding-right: 0;
  }
}

.zig-zag-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  max-width: 420px;
  margin: 0;
}

.zig-zag-img {
  width: 100%;
  height: 338px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.overlay-card {
  position: absolute;
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  width: 280px;
  z-index: 10;
}

.overlay-card {
  position: absolute;
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
  width: 280px;
  z-index: 10;
}

.overlay-emblem {
  position: absolute;
  top: -28px;
  width: 56px;
  height: 56px;
  z-index: 20;
}

.top-right {
  bottom: -40px;
  right: -20px;
}
.top-right .overlay-emblem {
  left: -20px;
}

.bottom-left {
  bottom: -40px;
  left: -20px;
}
.bottom-left .overlay-emblem {
  right: -20px;
}

.bottom-right {
  bottom: -40px;
  right: -20px;
}
.bottom-right .overlay-emblem {
  left: -20px;
}

@media (max-width: 1280px) {
  .overlay-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    margin: -40px auto 0;
    width: 90%;
  }
}

.overlay-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--black);
}

.overlay-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.overlay-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--gray-600);
}

.overlay-row.highlight {
  background-color: var(--off-white);
  margin: 0 -24px -24px;
  padding: 16px 24px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  color: var(--primary-blue);
}

.bold {
  font-weight: 700;
  color: var(--black);
}

.highlight-text {
  color: var(--primary-blue);
}

.content-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-blue);
  display: block;
  margin-bottom: 16px;
}

.content-heading {
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.2;
}

.custom-list {
  list-style: none;
  margin-bottom: 32px;
}

.custom-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
}

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

.zig-zag-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.member-stories {
  padding: 80px 0;
  background-color: var(--white);
  text-align: center;
}

.stories-header {
  margin-bottom: 60px;
}

.stories-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}

.stories-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 0;
}

.story-card {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  border-radius: 20px;
  overflow: visible;
  margin: 0 -20px;
  z-index: 1;
}

.story-card.side .story-img {
  width: 335px;
  height: 310px;
}
.story-card.side {
  width: 335px;
  opacity: 1;
  transform: scale(1);
}

.story-card.active {
  z-index: 10;
  width: 394px;
  transform: scale(1);
  margin: 0 10px;

  margin: 0 -30px;
}
.story-card.active .story-img {
  width: 394px;
  height: 364px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.15);
}

.story-image-container {
  position: relative;
  border-radius: 24px;
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  transition: all 0.4s ease;
}

.floating-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.story-card.active .floating-badge {
  opacity: 1;
}

.floating-badge.highlight {
  background: #d4e9ff;
  color: var(--navy);
}

.carousel-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-nav:hover {
  background: var(--hero-bg);
  border-color: var(--primary-blue);
}

.active-story-content {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}

.story-text {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.story-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 1rem;
  transition: gap 0.2s ease;
}

.story-link:hover {
  gap: 12px;
}

.play-icon {
  width: 24px;
  height: 24px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dot.active {
  background: var(--primary-blue);
  width: 24px;
  border-radius: 4px;
}

.disclaimer-text {
  font-size: 0.6875rem;
  color: var(--gray-500);
  margin-top: 20px;
}

@media (max-width: 768px) {
  .member-stories {
    padding: 48px 0;
  }

  .stories-header {
    margin-bottom: 24px;
  }

  .section-headline {
    font-size: 1.5rem;
    margin-bottom: 32px;
  }

  .stories-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 20px 0;
    max-width: 100%;
    overflow: hidden;
  }

  .story-card {
    margin: 0 -4vw;
    flex-shrink: 0;
  }

  .story-card.side {
    width: 38vw;
    max-width: 160px;
    opacity: 1;
    z-index: 1;
  }
  .story-card.side .story-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.07 / 1;
    border-radius: 12px;
  }

  .story-card.active {
    width: 48vw;
    max-width: 200px;
    z-index: 10;
    margin: 0 -5vw;
  }
  .story-card.active .story-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.08 / 1;
    border-radius: 14px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  }

  .floating-badge {
    font-size: 0.625rem;
    padding: 6px 12px;
    bottom: -12px;
  }

  .carousel-nav {
    display: flex;
    width: 32px;
    height: 32px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  .carousel-nav.prev {
    left: 4px;
  }
  .carousel-nav.next {
    right: 4px;
  }
  .carousel-nav svg {
    width: 16px;
    height: 16px;
  }

  .stories-carousel-wrapper {
    position: relative;
    gap: 0;
  }

  .active-story-content {
    padding: 0 16px;
    margin-bottom: 20px;
  }

  .story-text {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .story-link {
    font-size: 0.8125rem;
  }

  .carousel-dots {
    margin-bottom: 12px;
  }

  .disclaimer-text {
    font-size: 0.5625rem;
    padding: 0 16px;
  }
}

@media (max-width: 768px) {
  .container-wide {
    padding: 0 20px !important;
  }

  .btn,
  .hero-cta-btn {
    white-space: nowrap;
    padding: 12px 24px;
    font-size: 0.875rem;
    width: auto;
  }

  .zig-zag-actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
  }

  .content-heading {
    font-size: 1.375rem;
    margin-bottom: 16px;
  }
}

.link-text {
  font-weight: 600;
  color: var(--primary-blue);
  font-size: 0.875rem;
}

.link-text:hover {
  text-decoration: underline;
}

.trustpilot-reviews-section {
  padding: 60px 0;
  background-color: var(--hero-bg);
  text-align: center;
}

.reviews-headline {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 48px;
}

.reviews-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0;
  max-width: 1100px;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}
.reviews-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.review-card {
  flex: 0 0 200px;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  padding: 16px;
  text-align: left;
  scroll-snap-align: start;
  transition: box-shadow 0.2s ease;
}

.review-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.review-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}

.review-header-row .review-stars {
  margin-bottom: 0;
}

.star-box {
  width: 18px;
  height: 18px;
  background-color: #00b67a;
  display: inline-block;
  position: relative;
}

.star-box::before {
  content: "★";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.75rem;
  line-height: 1;
}

.invited-badge {
  font-size: 0.625rem;
  color: #6b7280;
  background-color: transparent;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

.review-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-text {
  font-size: 0.75rem;
  color: var(--gray-600);
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-author {
  font-size: 0.6875rem;
  color: var(--gray-500);
}

.author-name {
  font-weight: 600;
  color: var(--gray-700);
}

.reviews-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.reviews-nav:hover {
  background: var(--hero-bg);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.reviews-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.reviews-summary {
  font-size: 0.8125rem;
  color: var(--gray-600);
}

.reviews-summary strong {
  color: var(--black);
}

.review-link {
  color: var(--gray-700);
  text-decoration: underline;
}

.review-link:hover {
  color: var(--primary-blue);
}

.trustpilot-logo-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trustpilot-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--black);
}

@media (max-width: 768px) {
  .trustpilot-reviews-section {
    padding: 40px 0;
  }

  .reviews-headline {
    font-size: 1.5rem;
    margin-bottom: 32px;
    padding: 0 16px;
  }

  .reviews-carousel-wrapper {
    gap: 8px;
  }

  .reviews-track {
    gap: 12px;
    padding: 8px 16px;
  }

  .review-card {
    flex: 0 0 160px;
    padding: 12px;
  }

  .star-box {
    width: 14px;
    height: 14px;
  }

  .star-box::before {
    font-size: 0.625rem;
  }

  .review-title {
    font-size: 0.75rem;
  }

  .review-text {
    font-size: 0.6875rem;
  }

  .reviews-nav {
    width: 32px;
    height: 32px;
  }

  .reviews-nav svg {
    width: 16px;
    height: 16px;
  }

  .reviews-summary {
    font-size: 0.75rem;
    padding: 0 16px;
  }
}

.footer {
  background-color: var(--white);
  border-top: 1px solid var(--border-gray);
  padding: 48px 0 24px;
}

.footer-container {
  max-width: var(--container-max);
}

.footer-legal-section {
  margin-bottom: 40px;
}

.legal-text {
  font-size: 0.75rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.legal-text.footnote {
  margin-bottom: 8px;
}

.legal-text sup {
  color: var(--primary-blue);
  font-weight: 600;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-gray);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright p {
  font-size: 0.75rem;
  color: var(--gray-600);
  margin: 0;
}

.trustpilot-footer-widget {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trustpilot-score {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--black);
}

.trust-stars-mini {
  display: flex;
  gap: 2px;
}

.star-mini {
  width: 14px;
  height: 14px;
  background-color: #00b67a;
  display: inline-block;
  position: relative;
}

.star-mini::before {
  content: "★";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.5rem;
  line-height: 1;
}

.trust-rating {
  font-size: 0.75rem;
  color: var(--gray-600);
}

@media (max-width: 768px) {
  .footer {
    padding: 32px 0 20px;
  }

  .footer-legal-section {
    margin-bottom: 24px;
  }

  .legal-text {
    font-size: 0.6875rem;
  }

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

  .trustpilot-footer-widget {
    gap: 6px;
  }

  .trustpilot-score {
    font-size: 0.75rem;
  }

  .star-mini {
    width: 12px;
    height: 12px;
  }
}
