/* === TRJC Meta Landing Page — Cuban + Tennis Chains === */
/* Design system: Playfair Display + Montserrat */
/* Colors: #0a0a0a dark, #EFCB28 gold, #111 panel, #1a1a1a card */

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

body {
  font-family: 'Montserrat', sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === Typography === */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 12px;
  color: #ffffff;
}

.section-subtitle {
  text-align: center;
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 48px;
  font-weight: 300;
}

.gold-text {
  color: #EFCB28;
}

/* === Hero === */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, #0a0a0a 0%, #111 40%, #0a0a0a 100%);
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}

.hero[style*="background-image"] {
  background-blend-mode: overlay;
}

.hero-logo {
  width: 200px;
  margin-bottom: 24px;
  filter: brightness(0) saturate(100%) invert(82%) sepia(45%) saturate(700%) hue-rotate(358deg) brightness(100%) contrast(90%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at center, rgba(239, 203, 40, 0.05) 0%, transparent 65%),
    linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.9) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 24px;
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #EFCB28;
  margin-bottom: 28px;
  font-weight: 500;
}

.hero h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: #ddd;
}

.hero-sub {
  font-size: 0.95rem;
  color: #999;
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-gold {
  background: #EFCB28;
  color: #1a1a1a;
}

.btn-gold:hover {
  background: #f5d76e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(239, 203, 40, 0.2);
}

.btn-outline {
  background: transparent;
  color: #EFCB28;
  border: 1.5px solid #EFCB28;
}

.btn-outline:hover {
  background: rgba(239, 203, 40, 0.08);
  transform: translateY(-2px);
}

/* === Trust Bar === */
.trust-bar {
  background: #111;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 24px 0;
}

.trust-bar-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 0 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  font-size: 1.4rem;
  color: #EFCB28;
  line-height: 1;
}

.trust-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: #333;
}

/* === Product Grid === */
.products {
  padding: 80px 0;
  background: #0a0a0a;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: #1a1a1a;
  border: 1px solid #222;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.product-card:hover {
  border-color: #EFCB28;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(239, 203, 40, 0.08);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #151515;
  overflow: hidden;
}

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

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  padding: 16px;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #EFCB28;
  color: #1a1a1a;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 3px;
}

.rts-badge {
  background: #28c76f;
  color: #fff;
}

.product-info {
  padding: 16px;
}

.product-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
  color: #fff;
}

.product-spec {
  font-size: 0.7rem;
  color: #777;
  font-weight: 400;
  margin-bottom: 8px;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #EFCB28;
  font-family: 'Montserrat', sans-serif;
}

/* === Lifestyle Feature Strip === */
.lifestyle-strip {
  padding: 60px 0;
  background: #111;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lifestyle-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.lifestyle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.lifestyle-card:hover img {
  transform: scale(1.05);
}

.lifestyle-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  font-size: 0.75rem;
  font-weight: 600;
  color: #EFCB28;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === Proof Section === */
.proof {
  padding: 80px 0;
  background: #111;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.proof-card {
  background: #1a1a1a;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
}

.proof-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1;
}

.proof-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #EFCB28;
}

.proof-card p {
  font-size: 0.8rem;
  color: #999;
  font-weight: 300;
  line-height: 1.7;
}

/* === Education / Comparison === */
.education {
  padding: 80px 0;
  background: #0a0a0a;
}

.comparison-table-wrap {
  max-width: 700px;
  margin: 0 auto;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  text-align: left;
  font-size: 0.85rem;
  border-bottom: 1px solid #222;
}

.comparison-table th {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #EFCB28;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table td:first-child {
  font-weight: 500;
  color: #bbb;
}

.comparison-table td {
  color: #999;
  font-weight: 300;
}

.education-note {
  text-align: center;
  color: #666;
  font-size: 0.8rem;
  font-weight: 300;
  margin-top: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* === Ready to Ship === */
.ready-to-ship {
  padding: 80px 0;
  background: #111;
}

.rts-grid {
  grid-template-columns: repeat(4, 1fr);
}

.rts-card {
  border-color: rgba(40, 199, 111, 0.15);
}

.rts-card:hover {
  border-color: #28c76f;
  box-shadow: 0 12px 32px rgba(40, 199, 111, 0.08);
}

/* === Social Proof === */
.social-proof {
  padding: 80px 0;
  background: #0a0a0a;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.social-card {
  background: #1a1a1a;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 28px 24px;
}

.social-quote {
  font-size: 0.9rem;
  color: #ccc;
  font-weight: 300;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}

.social-quote::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #EFCB28;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 4px;
}

.social-attr {
  font-size: 0.7rem;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Google rating bar */
.google-rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.google-stars {
  color: #EFCB28;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.google-score {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.google-count {
  font-size: 0.8rem;
  color: #777;
  font-weight: 400;
}

/* Review card header */
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.reviewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reviewer-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
}

.review-stars {
  color: #EFCB28;
  font-size: 0.7rem;
  letter-spacing: 1px;
}

.social-card-image {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.social-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 240px;
}

.social-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
}

.social-card-overlay .social-quote {
  color: #fff;
  margin-bottom: 8px;
}

.social-card-overlay .social-attr {
  color: #EFCB28;
}

/* === Custom CTA === */
.custom-cta {
  padding: 80px 0;
  background: #111;
}

.cta-box {
  background: #1a1a1a;
  border: 1px solid #EFCB28;
  border-radius: 16px;
  padding: 56px 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-box p {
  color: #999;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 28px;
}

/* === Footer === */
.footer {
  padding: 48px 0 32px;
  background: #0a0a0a;
  text-align: center;
  border-top: 1px solid #1a1a1a;
}

.footer-tagline {
  color: #EFCB28;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #777;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #EFCB28;
}

.footer-address {
  color: #444;
  font-size: 0.75rem;
  margin-bottom: 4px;
}

.footer-meta {
  color: #555;
  font-size: 0.7rem;
  margin-bottom: 4px;
}

.footer-copyright {
  color: #333;
  font-size: 0.7rem;
}

/* === Responsive === */
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lifestyle-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lifestyle-card {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 3px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .trust-bar-inner {
    gap: 20px;
  }

  .trust-divider {
    display: none;
  }

  .trust-item {
    flex: 0 0 calc(50% - 10px);
    justify-content: center;
  }

  .cta-box {
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-sub {
    font-size: 0.85rem;
  }

  .container {
    padding: 0 16px;
  }

  .product-grid,
  .rts-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .google-rating-bar {
    flex-wrap: wrap;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .comparison-table th,
  .comparison-table td {
    font-size: 0.75rem;
    padding: 10px 8px;
  }
}
