:root {
  --lace-bg: #0f0a0b;
  --lace-surface: #181112;
  --lace-text: #f5f0eb;
  --lace-muted: #a69a97;
  --lace-gold: #c8a84b;
  --lace-gold-dim: rgba(200, 168, 75, 0.15);
  --lace-gold-glow: rgba(200, 168, 75, 0.4);
  --glass-bg: rgba(24, 17, 18, 0.6);
  --glass-border: rgba(200, 168, 75, 0.2);
}

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

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--lace-bg);
  color: var(--lace-text);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: radial-gradient(circle at 50% 0%, var(--lace-gold-dim), transparent 60%);
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
}

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

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--lace-gold);
  font-weight: 700;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--lace-muted);
}

.nav-links a:hover {
  color: var(--lace-gold);
}

.btn-login {
  background: transparent;
  border: 1px solid var(--lace-gold);
  color: var(--lace-gold) !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 500;
}

.btn-login:hover {
  background: var(--lace-gold);
  color: var(--lace-bg) !important;
  box-shadow: 0 0 15px var(--lace-gold-glow);
}

/* Hero Section */
.hero {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 20px 20px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--lace-gold-dim) 0%, transparent 70%);
  z-index: -1;
  animation: pulse 8s infinite alternate;
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, #fff, var(--lace-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  max-width: 900px;
}

.hero p {
  font-size: 1.2rem;
  color: var(--lace-muted);
  max-width: 600px;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--lace-gold), #a38430);
  color: var(--lace-bg);
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(200, 168, 75, 0.2);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(200, 168, 75, 0.4);
}

/* Sections */
.section {
  padding: 100px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  color: var(--lace-gold);
  margin-bottom: 60px;
}

.section-title span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--lace-muted);
  margin-bottom: 10px;
}

/* Pricing Section 4-Column Layout */
.pricing-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .pricing-container {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .pricing-container {
    grid-template-columns: 1fr;
  }
}

.pricing-col {
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  border: 1px solid transparent;
  position: relative;
}

.bg-white { background-color: #fff; }
.text-dark { color: #1a1a1a; }
.bg-black { background-color: #000; }
.text-gold { color: #c8a84b; }
.border-gold { border-color: #c8a84b; }

.recommended {
  border: 2px solid #c8a84b;
  margin-top: -15px; /* pop out effect */
  padding-top: 45px;
}

.recommended-badge {
  position: absolute;
  top: -1px; left: -2px; right: -2px;
  background-color: #c8a84b;
  color: #000;
  text-align: center;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 8px 0;
  text-transform: uppercase;
}

.col-header {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.col-category {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #888;
  margin-bottom: 8px;
}

.col-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  margin-bottom: 8px;
  color: #1a1a1a;
  font-weight: 500;
}

.col-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

.col-body {
  flex: 1;
  margin-bottom: 20px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
}

a.price-row {
  padding: 12px 15px;
  border: 1px solid #eaeaea;
  background-color: #fafafa;
  cursor: pointer;
}

a.price-row:hover {
  background-color: #fff;
  border-color: #c8a84b;
  box-shadow: 0 5px 15px rgba(200, 168, 75, 0.15);
  transform: translateY(-2px);
}

.sub-price {
  font-size: 12px;
  color: #888;
  font-weight: 400;
  margin-top: 2px;
}

.price-badge {
  border: 1px solid #c8a84b;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 600;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

a.price-row:hover .price-badge {
  background-color: #c8a84b;
  color: #fff;
}

.price-text {
  font-weight: 600;
  font-size: 15px;
}

.text-right {
  text-align: right;
}

.sub-note {
  font-size: 11px;
  font-style: italic;
  color: #888;
}

.col-features {
  margin-bottom: 24px;
}

.col-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.col-features li {
  font-size: 13px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
  color: #555;
}

.col-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #666;
}

.col-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.col-actions a {
  display: block;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 12px;
  text-decoration: none;
  transition: all 0.2s;
  border-radius: 2px;
}

.btn-outline {
  border: 1px solid #c8a84b;
  color: #1a1a1a;
}
.btn-outline:hover {
  background-color: #c8a84b;
  color: #fff;
}

.btn-solid-gold {
  background-color: #c8a84b;
  color: #fff;
}
.btn-solid-gold:hover {
  background-color: #a38430;
}

.enterprise-box {
  border: 1px solid rgba(200,168,75,0.4);
  padding: 12px;
  margin-bottom: 12px;
}
.enterprise-box h4 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #fff;
  margin-bottom: 4px;
}
.enterprise-box p {
  font-size: 12px;
  color: #a69a97;
  margin-bottom: 8px;
}
.check-item {
  font-size: 12px;
  color: #c8a84b;
}

/* Pro & Matchmaker Sections */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 100px;
}

@media (max-width: 768px) {
  .split-section {
    grid-template-columns: 1fr;
  }
}

.info-box {
  background: linear-gradient(180deg, var(--lace-surface), rgba(24,17,18,0.3));
  border: 1px solid var(--glass-border);
  padding: 50px;
  border-radius: 12px;
  height: 100%;
}

.info-box h3 {
  font-size: 28px;
  color: var(--lace-gold);
  margin-bottom: 15px;
}

.info-box p {
  color: var(--lace-muted);
  margin-bottom: 30px;
}

.features-list {
  list-style: none;
  margin-bottom: 30px;
}

.features-list li {
  margin-bottom: 12px;
  color: #ddd;
  position: relative;
  padding-left: 24px;
}

.features-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--lace-gold);
}

/* Footer */
footer {
  background: var(--lace-surface);
  border-top: 1px solid var(--glass-border);
  padding: 40px 5%;
  text-align: center;
  color: var(--lace-muted);
  font-size: 14px;
}

/* Terms Box */
.terms-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

/* Pay Per Report Mockup Styles */
.col-header-mockup {
  margin-bottom: 25px;
}

.col-header-mockup .col-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: #111;
  margin-bottom: 12px;
  font-weight: 600;
}

.gold-divider {
  width: 40px;
  height: 3px;
  background-color: #c8a84b;
  margin-bottom: 20px;
}

.col-header-mockup .col-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

.pricing-card {
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.pc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.pc-title-area {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pc-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f9f8f4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-title-area h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 0;
  white-space: nowrap;
}

.pc-subtext {
  font-size: 13px;
  color: #777;
  margin-top: 4px;
}

.pc-price {
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.pc-bottom {
  display: flex;
  justify-content: flex-end;
}

.btn-checkout {
  background-color: #c8a84b;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s;
}

.btn-checkout:hover {
  background-color: #b5953d;
}

.secure-banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: #f8f6f0;
  padding: 24px;
  border-radius: 8px;
  margin-top: 20px;
}

.sb-icon {
  flex-shrink: 0;
}

.sb-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  margin: 0 0 6px 0;
}

.sb-text p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Mobile Responsive Overrides */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 15px 5%;
    gap: 15px;
  }
  .nav-links {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero {
    padding-top: 180px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .hero h1 {
    font-size: 2.4rem;
    word-wrap: break-word;
    hyphens: auto;
  }
  .hero p {
    font-size: 1rem;
  }
  .section {
    padding: 40px 5%;
  }
  .terms-box {
    padding: 20px 15px;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .pricing-container {
    grid-template-columns: 1fr;
    gap: 15px;
    width: 100%;
    max-width: 100%;
  }
  .pricing-col {
    padding: 24px 15px;
    width: 100%;
  }
  .col-header-mockup .col-title {
    font-size: 24px;
  }
  .pc-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .pc-price {
    align-self: flex-start;
  }
}
