:root{
  --page-hero-pad: 100px 24px 70px;
  --page-hero-h1-size: 56px;
  --page-hero-h1-size-mobile: 42px;
  --page-hero-meta-size: 19px;
  --hero-kicker-mb: 28px;
}

/* Contact hero kicker uses a pill treatment (kept off legal pages) */
.hero-kicker{
  background: rgba(235,169,55,0.1);
  border: 1px solid var(--border-gold);
  padding: 10px 24px;
  border-radius: 100px;
  display: inline-block;
}

.page-hero p{
  color: var(--silver);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.products-section{
  position: relative;
  z-index: 5;
  padding: 60px 24px 80px;
}

.products-container{
  max-width: 900px;
  margin: 0 auto;
}

.section-label{
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}
.products-container .section-label{
  display: block;
}
.section-label::after{
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin: 8px auto 0;
  opacity: 0.4;
}

.section-title{
  font-family: 'Lora', serif;
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 40px;
  text-align: center;
}

.product-links{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-link{
  background: linear-gradient(135deg, var(--navy-card), var(--navy-deep));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.product-link::before{
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.product-link:hover{
  border-color: var(--border-gold);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.4), 0 0 40px rgba(235,169,55,0.06);
}
.product-link:hover::before{opacity: 0.5;}

.product-icon{
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(235,169,55,0.15), rgba(235,169,55,0.05));
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.product-info{flex: 1;}

.product-name{margin-bottom: 8px;}
.product-name .brand{
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.product-name .name{
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.2px;
  display: block;
}

.product-desc{
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.product-arrow{
  color: var(--gold);
  font-size: 24px;
  transition: transform 0.3s ease;
}
.product-link:hover .product-arrow{transform: translateX(6px);}

.email-section{
  position: relative;
  z-index: 5;
  padding: 100px 24px 120px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.email-section h2{
  font-family: 'Lora', serif;
  font-size: 40px;
  font-weight: 600;
  margin: 0 0 16px;
}

.email-lead{
  font-size: 17px;
  color: var(--silver);
  margin: 0 auto 52px;
  max-width: 550px;
  line-height: 1.7;
}

.email-link{
  display: inline-block;
  font-family: 'Lora', serif;
  font-size: 40px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), #D97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}
.email-link::after{
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), #D97706);
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
.email-link:hover::after{opacity: 1;}

.support-policy{
  max-width: 640px;
  margin: 64px auto 0;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}
.support-policy strong{color: var(--silver); font-weight: 600;}

/* Product link subtle glow on hover */
.product-link:hover .product-icon{
  box-shadow:0 0 24px rgba(235,169,55,0.2);
}

@media (max-width: 768px){
  .product-links{grid-template-columns: 1fr;}
  .email-link{font-size: 28px;}
  .email-section h2{font-size: 32px;}
  .section-title{font-size: 26px;}
  .products-section{padding: 40px 20px 60px;}
  .email-section{padding: 60px 20px 80px;}
  .product-link{padding: 28px 24px; gap: 16px;}
  .product-name .brand{font-size: 10px;}
  .product-name .name{font-size: 16px;}
}

@media (max-width: 480px){
  .email-link{font-size: 22px; word-break: break-all;}
  .support-policy{font-size: 14px; padding-top: 32px; margin-top: 48px;}
}
