/* FreeView - EMS MUSCLE STIMULATOR LANDING PAGE */

:root {
  --orange: #f26722;
  --orange-dark: #d95a1b;
  --black: #1a1a1a;
  --gray-700: #333;
  --gray-600: #555;
  --gray-500: #777;
  --gray-400: #999;
  --gray-300: #bbb;
  --gray-200: #ddd;
  --gray-100: #f0f0f0;
  --white: #fff;
  --green: #22c55e;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
ul,
ol {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
}
h4 {
  font-size: 14px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
  .hero-gallery,
  .hero-info,
  .bundle-section,
  .promo-card {
    max-width: 100%;
  }
}
.text-orange {
  color: var(--orange);
}

/* Announcement Bar */
.announcement-bar {
  background: var(--gray-100);
  color: var(--black);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Header */
.header {
  background: var(--black);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Header - Mobile height reduction */
@media (max-width: 768px) {
  .header {
    padding: 8px 0;
  }
  .logo,
  .logo span {
    font-size: 20px;
  }
}
.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-btn span {
  width: 20px;
  height: 2px;
  background: var(--white);
}
.logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transform: translateZ(0);
}
.logo span {
  font-weight: 400;
  font-size: 24px;
  vertical-align: baseline;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.icon-btn {
  color: var(--white);
  padding: 8px;
}
.icon-btn svg {
  width: 22px;
  height: 22px;
}
.cart-btn {
  position: relative;
}
.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.hero {
  background: var(--white);
  padding: 30px 0 50px;
}
@media (max-width: 768px) {
  .hero {
    padding: 20px 0 20px;
  }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  align-items: start;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}

/* Gallery */
.hero-gallery {
  position: relative;
}
@media (min-width: 901px) {
  .hero-gallery {
    max-width: 90%;
  }
}
@media (max-width: 900px) {
  .hero-gallery {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.gallery-main {
  position: relative;
  background: transparent;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1; /* Reserve space to prevent CLS */
  contain: layout; /* Optimize paint performance */
}
@media (min-width: 901px) {
  .gallery-main {
    margin-bottom: 4px;
  }
}
@media (max-width: 900px) {
  .gallery-main {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.main-image {
  width: 100%;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  margin: 0;
  padding: 0;
  aspect-ratio: 1 / 1; /* Match container aspect ratio */
}
.main-video {
  width: 100%;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  margin: 0;
  padding: 0;
  aspect-ratio: 1 / 1; /* Match container aspect ratio */
}
@media (min-width: 901px) {
  .main-image,
  .main-video {
    margin-bottom: 0;
  }
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--black);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, transform 0.2s;
}
@media (max-width: 900px) {
  .gallery-arrow {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}
.gallery-arrow:hover {
  background: var(--gray-700);
  transform: translateY(-50%) scale(1.1);
}
.gallery-arrow-left {
  left: 10px;
}
.gallery-arrow-right {
  right: 10px;
}
/* Thumbnail Grid - 2x2x1 layout on desktop, horizontal scroll on mobile */
.gallery-thumbs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 30px;
}
.gallery-thumbs-grid .thumb:nth-child(5) {
  grid-column: 1 / -1;
  max-width: 50%;
  justify-self: center;
}
@media (max-width: 900px) {
  .gallery-thumbs-grid {
    display: flex;
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    margin-top: 16px;
    margin-bottom: 20px;
    padding-top: 0;
    padding-bottom: 8px;
    padding-left: 0;
    padding-right: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .gallery-thumbs-grid::-webkit-scrollbar {
    display: none;
  }
  .gallery-thumbs-grid .thumb {
    flex: 0 0 auto;
    min-width: 80px;
    width: 80px;
    aspect-ratio: 1;
  }
}
.thumb {
  position: relative;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--gray-100);
  padding: 0;
  transition: border-color 0.2s;
  aspect-ratio: 1;
}
.thumb.active {
  border-color: var(--orange);
}
.thumb img,
.thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* First thumbnail badges */
.thumb-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  background: #e8f5e9;
  color: var(--black);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  line-height: 1.3;
  z-index: 5;
}
.thumb-badge strong {
  color: #22c55e;
}
.thumb-sold {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--gray-600);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 9px;
  line-height: 1.3;
  text-align: center;
  z-index: 5;
}
.thumb-sold strong {
  color: var(--black);
}

/* Social Proof */
.hero-social-proof {
  display: none;
}
@media (max-width: 900px) {
  .hero-social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
    text-align: center;
    order: 1;
  }
  .social-proof-text {
    font-size: 14px;
    color: var(--black);
  }
  .social-proof-text strong {
    font-weight: 700;
  }
  .social-proof-stars {
    color: #f59e0b;
    font-size: 16px;
  }
  .social-proof-trusted {
    font-size: 13px;
    color: var(--gray-600);
  }
}
@media (min-width: 901px) {
  .hero-social-proof {
    display: none;
  }
  .hero-gallery {
    grid-column: 1;
    grid-row: 1;
  }
  .gallery-thumbs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 8px;
    margin-bottom: 0;
  }
  .gallery-thumbs-grid .thumb:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }
  .hero-info {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
  }
}

/* Comparison Table */
.comparison-section {
  margin-top: 30px;
}
.comparison-section h3 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
  text-align: center;
}
.comparison-table th,
.comparison-table td {
  padding: 8px 4px;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: middle;
}
.comparison-table th {
  font-weight: 700;
  font-size: 9px;
  text-transform: uppercase;
}
.comparison-table th img {
  width: 40px;
  margin: 0 auto;
}
.comparison-table .highlight {
  background: #fff9e6;
}
.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  font-size: 10px;
}
.comparison-table .x {
  color: #ef4444;
}
.comparison-table .highlight:not(.x) {
  color: var(--green);
}
.price-row td {
  font-weight: 700;
}
.price-cell {
  background: var(--orange) !important;
  color: var(--white) !important;
  font-size: 14px !important;
  border-radius: 4px;
}

/* Hero Info */
.hero-info {
  background: var(--white);
}
@media (max-width: 900px) {
  .hero-info {
    order: 3;
  }
  .hero-gallery {
    order: 0;
  }
  .gallery-thumbs-grid {
    order: 2;
  }
}
.rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.stars {
  color: #f59e0b;
  font-size: 18px;
}
.rating-text {
  font-size: 14px;
  color: var(--black);
  font-weight: bold;
}
.mobile-sale-badge {
  display: none;
}
@media (max-width: 768px) {
  .mobile-sale-badge {
    display: block;
    width: fit-content;
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px;
    border-radius: 4px;
  }
}
.hero-info h1 {
  font-size: 28px;
  margin-bottom: 2px;
  line-height: 1.2;
}
@media (max-width: 900px) {
  .hero-info h1 {
    font-size: 24px;
    margin-bottom: 4px;
  }
}
.sale-badge {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 16px;
}
.gift-line {
  font-size: 15px;
  margin-bottom: 16px;
  font-weight: bold;
}
.feature-checks {
  margin-bottom: 16px;
}
.feature-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}
.feature-checks li strong {
  font-size: 16px;
  white-space: nowrap;
}
.bullet-text {
  flex: 1;
  line-height: 1.4;
}
.bullet-desc {
  font-weight: 400;
  color: var(--gray-600);
}
@media (max-width: 768px) {
  .feature-checks li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }
  .feature-checks li strong {
    font-size: 14px;
  }
  .bullet-desc {
    font-size: 13px;
  }
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 0;
}
.check svg {
  width: 18px;
  height: 18px;
  display: block;
}
.stock-warning {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 20px;
  padding: 10px;
  background: #fef3cd;
  border-radius: 6px;
}

/* Bundle Section */
.bundle-section {
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}
.bundle-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--white);
}
.bundle-header .line {
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}
.bundle-title {
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .bundle-header {
    justify-content: center;
    padding: 12px 16px;
  }
  .bundle-header .line {
    flex: 1;
    max-width: 40px;
  }
  .bundle-title {
    text-align: center;
    font-size: 14px;
  }
  .feature-checks {
    margin-bottom: 8px;
  }
}
.countdown-bar {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
}
.countdown-bar #countdown {
  color: var(--white);
  margin-left: 8px;
}
.bundle-options {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bundle-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
  background: var(--gray-100);
}
.bundle-option:hover {
  border-color: var(--gray-400);
}
.bundle-option.selected {
  background: #fff9e6;
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}
.bundle-option input {
  position: absolute;
  opacity: 0;
}
.popular-ribbon {
  position: absolute;
  top: -10px;
  right: 10px;
  background: var(--black);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 2;
}
.popular-ribbon.best-value {
  background: var(--black);
}
.bundle-thumb {
  width: 65px;
  height: 65px;
  flex-shrink: 0;
}
.bundle-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.bundle-details {
  flex: 1;
}
.bundle-name {
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.msrp-price {
  font-size: 13px;
  color: var(--gray-400);
  display: block;
}
.msrp-price s {
  text-decoration: line-through;
  color: var(--gray-400);
}
.save-badge {
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}
.save-320 {
  background: #22c55e;
}
.save-510 {
  background: #22c55e;
}
.bundle-sub {
  font-size: 12px;
  color: var(--gray-500);
}
.bundle-price {
  text-align: right;
}
.bundle-price .current {
  display: block;
  font-size: 18px;
  font-weight: 700;
}
.bundle-price .compare {
  font-size: 13px;
  color: var(--gray-400);
  text-decoration: line-through;
}

/* Free Gifts - matching reference */
.free-gifts {
  display: none; /* Hidden on all devices */
  padding: 20px 16px;
  background: var(--white);
  text-align: center;
}
@media (max-width: 768px) {
  .free-gifts {
    padding: 0;
  }
}
.free-gifts-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.free-gifts-value {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.gifts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.gift-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 16px 12px 16px 12px;
  position: relative;
  text-align: left;
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-template-rows: auto;
  column-gap: 14px;
  align-items: center;
  cursor: pointer;
}
.gift-item input[type='checkbox'] {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  z-index: 1;
}
.gift-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}
.gift-img {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  overflow: hidden;
  background: var(--gray-100);
  flex-shrink: 0;
}
.gift-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gift-item p {
  font-size: 12px;
  color: var(--gray-700);
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 6px;
}
.gift-item p:last-child {
  margin-bottom: 0;
}
.gift-item p strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
}
.addon-subcopy {
  font-size: 12px;
  color: var(--gray-600);
  font-weight: 400;
  line-height: 1.4;
  margin: 4px 0 8px;
}
.addon-terms {
  font-size: 10px;
  color: var(--gray-400);
  font-weight: 400;
  line-height: 1.4;
  margin: 8px 0 0;
  padding-top: 8px;
  border-top: 1px solid var(--gray-200);
}
.gift-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 80px;
}
.addon-benefits {
  font-size: 11px;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 4px 0 0;
  padding-left: 16px;
}
.addon-benefits li {
  margin-bottom: 2px;
}
.addon-benefits {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  text-align: left;
  width: 100%;
}
.addon-benefits li {
  font-size: 11px;
  color: var(--gray-700);
  font-weight: 500;
  line-height: 1.3;
  margin: 4px 0;
  padding-left: 16px;
  position: relative;
}
.addon-benefits li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gray-700);
}

/* CTA Button */
.cta-button {
  display: block;
  width: 100%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  padding: 16px 24px;
  border-radius: 8px;
  border: 2px solid var(--black);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  transition: all 0.2s;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}
.cta-button:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}
@media (max-width: 900px) {
  .cta-button {
    font-size: 14px;
    padding: 14px 16px;
  }
}

/* Trust Row */
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}
.trust-item {
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-700);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.trust-icon {
  width: 24px;
  height: 24px;
  color: var(--black);
  stroke-width: 2.5;
}

/* Accordion - Black header style matching reference */
.product-accordions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.accordion {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  list-style: none;
  border: none;
}
.accordion-header::-webkit-details-marker {
  display: none;
}
.accordion-icon {
  font-size: 18px;
  color: var(--white);
  transition: transform 0.2s;
}
.accordion[open] .accordion-icon {
  transform: rotate(45deg);
}
.accordion-content {
  padding: 0 20px 20px;
  background: var(--white);
}
.feature-row {
  display: flex;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: flex-start;
}
.feature-row:first-child {
  padding-top: 20px;
}
.feature-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
}
.feature-icon svg {
  width: 100%;
  height: 100%;
}
.feature-row strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--black);
}
.feature-row p {
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.5;
}
.accordion-content > p {
  margin-bottom: 12px;
  font-size: 14px;
  padding-top: 16px;
}
.accordion-content > p:last-child {
  margin-bottom: 0;
}

/* Press Logos */
.press-logos {
  background: var(--black);
  padding: 20px 0;
  width: 100%;
}
@media (max-width: 900px) {
  .press-logos {
    display: none;
  }
}
.press-logos .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.logos-track {
  display: flex;
  gap: 120px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.logo-img {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
  opacity: 0.8;
}

/* Meet Section */
.meet-section {
  background: var(--gray-100);
  padding: 60px 0;
}
.meet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 768px) {
  .meet-section {
    padding: 40px 0;
  }
  .meet-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .meet-content {
    order: -1;
  }
  .meet-image video,
  .meet-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
  }
  .meet-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .tagline {
    font-size: 17px;
    margin-bottom: 12px;
  }
  .meet-content > p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .check-list {
    margin: 0 0 20px;
  }
  .check-list li {
    font-size: 14px;
    gap: 8px;
    margin-bottom: 16px;
  }
  .check-text strong {
    font-size: 18px;
  }
  .check-text span {
    font-size: 13px;
  }
}
.meet-image {
  width: fit-content;
  background-color: var(--gray-100);
  border-radius: 16px;
  overflow: hidden;
  justify-self: center;
}
.meet-image img,
.meet-image video {
  width: 380px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: block;
  background-color: var(--gray-100);
}
.meet-image video {
  object-fit: cover;
  mix-blend-mode: darken;
}
.meet-content h2 {
  font-size: 32px;
  margin-bottom: 12px;
}
.tagline {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
.meet-content > p {
  color: var(--gray-600);
  margin-bottom: 20px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
}
.check-text {
  display: flex;
  flex-direction: column;
}
.check-text strong {
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}
@media (min-width: 901px) {
  .check-text strong {
    font-size: 17px;
  }
}
.check-text span {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.4;
}

/* Why Section */
.why-section {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}
.why-section h2 {
  font-size: 28px;
  margin-bottom: 50px;
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}
.spec-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.spec-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.spec-icon svg {
  width: 100%;
  height: 100%;
}
.spec-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.spec-card p {
  font-size: 13px;
  color: var(--gray-400);
}
.section-cta {
  text-align: center;
}
.section-cta .cta-button {
  display: inline-block;
  width: auto;
  padding: 16px 40px;
}
@media (max-width: 900px) {
  .section-cta .cta-button {
    font-size: 14px;
    padding: 14px 20px;
    white-space: nowrap;
  }
}
.cta-note {
  font-size: 14px;
  color: var(--gray-400);
  margin-top: 12px;
}

/* Why Section - Mobile */
@media (max-width: 768px) {
  main {
    display: flex;
    flex-direction: column;
  }
  .hero {
    order: 1;
  }
  .meet-section {
    order: 2;
  }
  .why-section {
    order: 4;
    padding: 40px 0;
  }
  .usecases-section {
    order: 3;
  }
  .promo-block {
    order: 5;
  }
  .reviews-section {
    order: 6;
  }
  .why-section h2 {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 24px;
  }
  .spec-card {
    display: grid;
    grid-template-columns: 28px 1fr;
    grid-template-rows: auto auto;
    column-gap: 10px;
    row-gap: 2px;
    padding: 12px;
    text-align: left;
    align-items: start;
  }
  .spec-icon {
    width: 28px;
    height: 28px;
    margin: 0;
    grid-row: 1 / span 2;
    align-self: center;
  }
  .spec-card h4 {
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.3;
  }
  .spec-card p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
  }
}

/* Use Cases Section */
.usecases-section {
  padding: 70px 0;
  text-align: center;
  background: var(--white);
}
.usecases-section h2 {
  font-size: 32px;
  margin-bottom: 12px;
}
.section-subtitle {
  color: var(--gray-600);
  margin-bottom: 40px;
  font-size: 16px;
}
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .usecases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .usecases-grid {
    grid-template-columns: 1fr;
  }
}
.usecase-card {
  text-align: center;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 16px;
  overflow: hidden;
}
.usecase-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-100);
  position: relative;
  border-bottom: 1px solid var(--gray-200);
}
.usecase-img img,
.usecase-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.usecase-img video {
  display: block;
}
.usecase-card h4 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  padding: 20px 16px 0;
}
.usecase-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.5;
  padding: 0 16px 20px;
}

/* Usecases CTA - hidden on desktop */
.usecases-cta {
  display: none;
}

/* Mobile Video Slider */
@media (max-width: 768px) {
  .usecases-section {
    padding: 40px 0;
  }
  .usecases-section h2 {
    font-size: 28px;
    margin-bottom: 8px;
  }
  .section-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .usecases-slider {
    overflow: visible;
  }
  .usecases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
  }
  .usecase-card {
    width: 100%;
    border-radius: 12px;
    border: 2px solid var(--black);
  }
  .usecase-img {
    height: auto;
    aspect-ratio: 4/3;
    border-bottom: none;
  }
  .usecase-img video {
    object-fit: cover;
  }
  .usecase-card h4 {
    font-size: 16px;
    padding: 16px 16px 0;
  }
  .usecase-card p {
    font-size: 15px;
    padding: 0 16px 16px;
  }
  .usecases-cta {
    display: none;
  }
}

/* Promo Block - NEW YEAR SALE */
.promo-block {
  background: linear-gradient(135deg, #fdf6e9 0%, #f8f0dc 100%);
  padding: 60px 0;
}
.promo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
}

/* Orange Banner */
.promo-banner {
  width: 100%;
  background: var(--orange);
  padding: 12px 20px;
}
.promo-headline {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* Subheadline */
.promo-subheadline {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin: 20px 20px 16px;
  text-transform: capitalize;
  line-height: 1.3;
}

/* Benefits */
.promo-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 20px 24px;
  padding: 0;
}
.promo-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}
.promo-benefit-item svg {
  flex-shrink: 0;
  color: var(--orange);
  width: 20px;
  height: 20px;
}
@media (min-width: 901px) {
  .promo-benefits {
    grid-column: 2;
    grid-row: 2;
    margin: 30px 40px 20px;
    align-self: start;
  }
  .promo-subheadline {
    margin-bottom: 0;
  }
}

/* Countdown */
.promo-countdown {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 24px;
  padding: 0 20px;
}
.promo-countdown-item {
  text-align: center;
  position: relative;
}
.promo-countdown-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 70px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--black);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  padding-bottom: 20px;
}
.promo-countdown-label {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: var(--gray-500);
  text-transform: capitalize;
  font-weight: 600;
  text-align: center;
  width: 100%;
  pointer-events: none;
}

/* Product Image */
.promo-image {
  width: 100%;
  padding: 0 20px 20px;
}
.promo-image img {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  display: block;
}

/* Bundle Details */
.promo-details {
  width: 100%;
  padding: 0 20px 24px;
  text-align: left;
}
.promo-bundle-title {
  font-size: 16px;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.promo-save-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 16px;
}
.promo-you-get {
  font-size: 15px;
  margin-bottom: 12px;
}
.promo-checklist {
  margin-bottom: 24px;
}
.promo-checklist li {
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.promo-checklist em {
  color: var(--gray-500);
  font-style: italic;
}
.promo-cta {
  display: block;
  width: 100%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  padding: 18px 32px;
  border-radius: 10px;
  border: 2px solid var(--black);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
  text-decoration: none;
}
.promo-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(242, 103, 34, 0.3);
}
.promo-trust-text {
  font-size: 13px;
  color: var(--gray-600);
  text-align: center;
}

/* Mobile refinements */
@media (max-width: 900px) {
  .promo-block {
    padding: 20px 0;
  }
  .promo-card {
    border-radius: 16px;
  }
  .promo-subheadline {
    font-size: 20px;
    margin: 16px 16px 12px;
  }
  .promo-countdown {
    gap: 8px;
    padding: 0 16px;
    margin-bottom: 20px;
  }
  .promo-countdown-num {
    width: 80px;
    height: 60px;
    font-size: 24px;
    border-radius: 10px;
  }
  .promo-image {
    padding: 0 16px 16px;
  }
  .promo-details {
    padding: 0 16px 20px;
  }
  .promo-cta {
    font-size: 14px;
    padding: 14px 16px;
    white-space: nowrap;
  }
  .promo-trust-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
}

/* Desktop: Two-column layout */
@media (min-width: 901px) {
  .promo-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 0;
    padding: 0;
    text-align: left;
  }
  .promo-banner {
    grid-column: 1 / -1;
    text-align: center;
  }
  .promo-image {
    grid-column: 1;
    grid-row: 2 / 6;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .promo-image img {
    max-width: 100%;
  }
  .promo-subheadline {
    grid-column: 2;
    grid-row: 2;
    margin: 30px 40px 16px;
    font-size: 34px;
  }
  .promo-countdown {
    grid-column: 2;
    grid-row: 3;
    justify-content: flex-start;
    padding: 0 40px;
    margin-bottom: 20px;
  }
  .promo-benefits {
    grid-column: 2;
    grid-row: 4;
    margin: 0 40px 20px;
    align-self: start;
  }
  .promo-countdown-num {
    background: rgb(243, 243, 243);
  }
  .promo-details {
    grid-column: 2;
    grid-row: 5;
    padding: 0 40px 40px;
    margin-top: 0;
  }
  .promo-checklist li strong {
    font-size: 16px;
  }
  .promo-trust-text {
    font-size: 16px;
  }
}

/* Reviews Section */
.reviews-section {
  background: var(--gray-100);
  padding: 60px 0 80px;
}
.reviews-header {
  text-align: center;
  margin-bottom: 30px;
}
.featured-quote {
  font-size: 16px;
  font-style: italic;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
}
.reviews-widget {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.reviews-widget > * {
  width: 100%;
}
/* Premium Reviews Summary */
.reviews-summary {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Header Row: left cluster + right cluster */
.reviews-summary-header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

/* Left cluster: avg rating + meta */
.summary-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.avg-rating {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  color: var(--black);
}
.avg-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.avg-stars {
  color: #f59e0b;
  font-size: 20px;
  letter-spacing: 1px;
}
.avg-label {
  font-size: 13px;
  color: var(--gray-500);
}

/* Right cluster: recommend pill + CTA */
.summary-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.recommend-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8f5e9;
  color: #16a34a;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.write-review-btn {
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.write-review-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* Rating Breakdown */
.reviews-breakdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  max-width: 400px;
}
.rating-bar {
  display: grid;
  grid-template-columns: 16px 18px 1fr 48px;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.bar-label {
  font-weight: 600;
  color: var(--gray-700);
  text-align: right;
}
.bar-star {
  color: #f59e0b;
}
.rating-bar .bar {
  height: 8px;
  background: var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
}
.rating-bar .fill {
  height: 100%;
  background: var(--orange);
  border-radius: 4px;
}
.bar-count {
  font-size: 12px;
  color: var(--gray-500);
  text-align: right;
}

/* Mobile: stack layout */
@media (max-width: 900px) {
  .reviews-summary {
    padding: 20px;
    gap: 16px;
  }
  .reviews-summary-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .summary-left {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .avg-meta {
    align-items: center;
  }
  .summary-right {
    justify-content: center;
    width: 100%;
  }
  .reviews-breakdown {
    max-width: 100%;
    width: 100%;
  }
}
.reviews-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 20px;
}
.filter-btn,
.write-btn {
  padding: 8px 16px;
  font-size: 13px;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  background: var(--white);
}
.total-reviews {
  font-size: 13px;
  color: var(--gray-500);
  margin-left: auto;
}
.sort-select {
  padding: 8px 12px;
  font-size: 13px;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
}
/* Base review card styles - all cards use grid layout for consistency */
.review-card {
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 16px;
}

/* Desktop: All visible review cards use 3-column grid layout for consistency */
@media (min-width: 901px) {
  .review-card.visible {
    display: grid;
    grid-template-columns: 180px 1fr 180px;
    grid-template-rows: auto 1fr auto;
    gap: 0 20px;
    align-items: start;
  }
  .review-card.visible .review-header {
    grid-column: 1;
    grid-row: 1 / -1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
    padding-right: 20px;
    border-right: 1px solid var(--gray-200);
    align-self: start;
    padding-top: 10px;
  }
  .review-card.visible .reviewer-info {
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }
  .review-card.visible .review-rating {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 8px;
  }
  .review-card.visible .review-text {
    grid-column: 2;
    grid-row: 2;
    margin-bottom: 0;
    align-self: start;
  }
  .review-card.visible .helpful-row {
    grid-column: 2;
    grid-row: 3;
    margin-top: 12px;
  }
  
  /* Reviews WITH images - image in 3rd column */
  .review-card.has-image .review-image {
    grid-column: 3;
    grid-row: 1 / -1;
    width: 180px;
    height: 100%;
    min-height: 160px;
    align-self: stretch;
  }
  .review-card.has-image .review-image img {
    width: 100%;
    height: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}

/* Standard element styles */
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.avatar {
  width: 40px;
  height: 40px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.reviewer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.verified {
  font-size: 12px;
  color: var(--green);
}
.recommend-badge {
  font-size: 12px;
  color: var(--gray-500);
}
.review-rating {
  font-size: 14px;
  color: #f59e0b;
  margin-bottom: 10px;
}
.review-rating strong {
  color: var(--black);
}
.review-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.review-image {
  display: none;
}
.review-card.has-image .review-image {
  display: block;
}

/* Mobile: stack all layouts vertically */
@media (max-width: 900px) {
  .review-card.visible {
    display: block;
  }
  .review-card.visible .review-header {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding-right: 0;
    border-right: none;
    margin-bottom: 12px;
    padding-top: 0;
  }
  .review-card.visible .reviewer-info {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }
  .review-card.visible .review-text {
    margin-bottom: 12px;
  }
  .review-card.has-image .review-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    min-height: unset;
    margin: 0 auto 12px;
  }
  .review-card.has-image .review-image img {
    height: auto;
    max-height: none;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  .review-card.visible .helpful-row {
    margin-top: 0;
  }
}
.helpful-row {
  font-size: 13px;
  color: var(--gray-500);
}
.helpful-row button {
  padding: 4px 10px;
  font-size: 12px;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  margin-left: 8px;
  background: var(--white);
  color: var(--black);
}
.show-more-btn {
  width: 100%;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  background: var(--white);
  margin-top: 8px;
}
.show-more-btn:hover {
  background: var(--gray-100);
}

/* Reviews Section - Mobile Responsive */
@media (max-width: 900px) {
  .reviews-section {
    padding: 40px 0 50px;
  }
}

@media (max-width: 480px) {
  .reviews-section {
    padding: 30px 0 40px;
  }
  .reviews-summary {
    padding: 16px;
  }
  .avg-rating {
    font-size: 40px;
  }
  .avg-stars {
    font-size: 18px;
  }
  .recommend-pill {
    font-size: 12px;
    padding: 6px 12px;
  }
  .write-review-btn {
    font-size: 12px;
    padding: 8px 16px;
  }
  .rating-bar {
    gap: 4px;
    font-size: 12px;
  }
  .rating-bar .bar {
    height: 6px;
  }
  .review-card {
    padding: 16px;
    margin-bottom: 12px;
  }
  .review-header {
    gap: 10px;
    flex-wrap: wrap;
  }
  .avatar {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
  .reviewer-info {
    gap: 6px;
    min-width: 0;
  }
  .reviewer-info strong {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .recommend-badge {
    flex-basis: 100%;
    margin-top: 2px;
  }
  .review-content {
    flex-direction: column;
    gap: 12px;
  }
  .review-text {
    font-size: 13px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .review-image {
    width: 100%;
    max-width: 300px;
    align-self: center;
  }
  .helpful-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }
  .helpful-row button {
    margin-left: 0;
    padding: 6px 12px;
  }
  .show-more-btn {
    padding: 12px;
    font-size: 13px;
  }
}

/* Reviews Pagination */
.reviews-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}
.page-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  transition: all 0.2s;
}
.page-btn:hover:not(:disabled) {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.page-numbers {
  display: flex;
  gap: 4px;
  @media (max-width: 480px) {
    flex-wrap: wrap;
  }
}
.page-num {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  transition: all 0.2s;
}
.page-num:hover {
  border-color: var(--orange);
}
.page-num.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.show-more-reviews {
  display: none;
}
@media (max-width: 768px) {
  .reviews-pagination {
    display: none;
  }
  .show-more-reviews {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 24px auto 0;
    padding: 14px 24px;
    background: var(--orange);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .show-more-reviews:hover {
    background: var(--orange-dark);
  }
  .show-more-reviews.hidden {
    display: none;
  }
}
.review-card {
  display: none;
}
/* Mobile: block display for all visible cards */
@media (max-width: 900px) {
  .review-card.visible {
    display: block;
  }
}
/* Desktop: grid display for all visible cards */
@media (min-width: 901px) {
  .review-card.visible {
    display: grid;
  }
}

/* Footer */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 50px 0 30px;
}
.footer-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-col p {
  font-size: 13px;
  color: var(--gray-400);
  margin: 0;
}
.footer-col .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.footer-col a {
  font-size: 13px;
  color: var(--gray-400);
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--white);
}
.small-text {
  font-size: 11px !important;
  color: var(--gray-500) !important;
  line-height: 1.5;
  margin: 0 !important;
}

/* Terms Modal */
.terms-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}
.modal-content {
  position: relative;
  background: var(--white);
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10002;
  transition: background 0.2s;
}
.modal-close:hover {
  background: var(--gray-300);
}
.modal-body {
  padding: 40px;
  overflow-y: auto;
  flex: 1;
}
.modal-body h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--black);
}
.modal-body h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--black);
}
.modal-body h4 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--black);
}
.modal-body p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: var(--gray-700);
}
.modal-body ul {
  margin-left: 20px;
  margin-bottom: 12px;
}
.modal-body li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
  color: var(--gray-700);
  list-style: disc;
}
.modal-body strong {
  font-weight: 700;
  color: var(--black);
}
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-height: 95vh;
  }
  .modal-body {
    padding: 30px 20px;
  }
  .modal-body h2 {
    font-size: 20px;
  }
  .modal-body h3 {
    font-size: 18px;
  }
  .modal-body h4 {
    font-size: 16px;
  }
}
