/* Hotel Tokenization Platform CSS */
/* Base Variables */
:root {
  --primary-navy: #0f172a;
  --secondary-navy: #1e293b;
  --accent-gold: #f59e0b;
  --accent-gold-dark: #d97706;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --success-green: #10b981;
  --warning-orange: #f59e0b;
  --error-red: #ef4444;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.main-nav {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary-navy);
  font-weight: 700;
  font-size: 24px;
}

.logo-icon {
  font-size: 28px;
  margin-right: 12px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-actions .btn-primary {
  padding: 12px 24px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-navy);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--primary-navy);
  border-color: var(--accent-gold);
}

.btn-primary:hover {
  background: var(--accent-gold-dark);
  border-color: var(--accent-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-navy);
  border-color: var(--primary-navy);
}

.btn-secondary:hover {
  background: var(--primary-navy);
  color: white;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 18px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="rgba(255,255,255,0.02)" width="100%" height="100%"/></svg>');
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-gold);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.hero-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: white;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.badge-item i {
  color: var(--accent-gold);
  font-size: 18px;
}

/* Section Styles */
section {
  padding: 80px 0;
}

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

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

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

/* Value Proposition Section */
.value-section {
  background: var(--bg-light);
}

.market-context {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.context-card {
  display: flex;
  gap: 24px;
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
}

.context-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
}

.context-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.context-content p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.solution-grid {
  background: white;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border: 2px solid var(--accent-gold);
}

.solution-header {
  text-align: center;
  margin-bottom: 48px;
}

.solution-header h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.solution-header p {
  font-size: 18px;
  color: var(--text-secondary);
}

.solution-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature-card {
  padding: 32px;
  background: var(--bg-light);
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  margin-bottom: 20px;
}

.feature-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.feature-details {
  list-style: none;
  padding-left: 0;
}

.feature-details li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-size: 15px;
}

.feature-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: 700;
}

/* How It Works Section */
.how-it-works-section {
  background: white;
}

.process-steps {
  margin-bottom: 60px;
}

.step-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  margin-bottom: 48px;
  padding: 40px;
  background: var(--bg-light);
  border-radius: 16px;
  border-left: 5px solid var(--accent-gold);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.step-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.step-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.detail-group h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-group i {
  color: var(--accent-gold);
}

.detail-group ul {
  list-style: none;
  padding-left: 0;
}

.detail-group li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.detail-group li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
}

.step-deliverable {
  background: white;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--success-green);
  margin-top: 24px;
}

.step-deliverable strong {
  color: var(--success-green);
}

.process-timeline {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 2px solid var(--accent-gold);
}

.process-timeline h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 24px;
  text-align: center;
}

.timeline-bar {
  display: flex;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.timeline-phase {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px;
  color: white;
  background: var(--primary-navy);
}

.phase-label {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 4px;
}

.phase-name {
  font-size: 14px;
  font-weight: 700;
}

.timeline-note {
  color: var(--text-secondary);
  font-size: 14px;
  text-align: center;
  margin-top: 16px;
}

/* Platform Architecture Section */
.architecture-section {
  background: var(--bg-light);
}

.architecture-layers {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.layer-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border: 2px solid var(--border-color);
  transition: all 0.3s;
}

.layer-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.layer-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
  color: white;
}

.layer-icon {
  width: 70px;
  height: 70px;
  background: rgba(245, 158, 11, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.layer-icon i {
  font-size: 32px;
  color: var(--accent-gold);
}

.layer-header h3 {
  font-size: 26px;
  font-weight: 700;
}

.layer-content {
  padding: 40px;
}

.layer-feature {
  margin-bottom: 32px;
}

.layer-feature:last-child {
  margin-bottom: 0;
}

.layer-feature h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.layer-feature ul {
  list-style: none;
  padding-left: 0;
}

.layer-feature li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.layer-feature li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
}

.security-features {
  margin-top: 60px;
  background: white;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border: 2px solid var(--success-green);
}

.security-features h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 32px;
  text-align: center;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.security-item {
  text-align: center;
  padding: 24px;
  background: var(--bg-light);
  border-radius: 12px;
}

.security-item i {
  font-size: 42px;
  color: var(--success-green);
  margin-bottom: 16px;
}

.security-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.security-item p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Token Economics Section */
.token-economics-section {
  background: white;
}

.token-types {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 60px;
}

.token-card {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 16px;
  border: 2px solid var(--border-color);
  transition: all 0.3s;
}

.token-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.token-card.featured {
  border-color: var(--accent-gold);
  border-width: 3px;
  background: white;
}

.token-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.token-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  font-weight: 700;
  flex-shrink: 0;
}

.rt-token {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.pst-token {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.istay-token {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
}

.token-header h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-navy);
  flex: 1;
}

.token-badge {
  background: var(--accent-gold);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.token-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.token-features h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 16px;
}

.token-features ul {
  list-style: none;
  padding-left: 0;
}

.token-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.token-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: 700;
  font-size: 18px;
}

.token-economics-box {
  background: white;
  padding: 32px;
  border-radius: 12px;
  margin-top: 24px;
  border: 2px solid var(--accent-gold);
}

.token-economics-box h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 20px;
}

.economics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.econ-item {
  display: flex;
  flex-direction: column;
  padding: 16px;
  background: var(--bg-light);
  border-radius: 8px;
}

.econ-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.econ-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
}

.revenue-example {
  background: var(--bg-light);
  padding: 24px;
  border-radius: 8px;
  margin-top: 20px;
}

.revenue-example h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.revenue-example p {
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.revenue-example ul {
  list-style: none;
  padding-left: 0;
}

.revenue-example li {
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.6;
}

.pst-use-cases, .governance-examples {
  margin-top: 24px;
  background: white;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid var(--accent-gold);
}

.fee-structure {
  background: white;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.fee-structure h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 32px;
  text-align: center;
}

.fee-table {
  overflow-x: auto;
}

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

.fee-table th,
.fee-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.fee-table th {
  background: var(--primary-navy);
  color: white;
  font-weight: 700;
  font-size: 14px;
}

.fee-table td {
  color: var(--text-secondary);
}

.fee-table tr:hover td {
  background: var(--bg-light);
}

/* Operator Benefits Section */
.operator-benefits-section {
  background: var(--bg-light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.benefit-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 2px solid transparent;
  transition: all 0.3s;
}

.benefit-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  margin-bottom: 24px;
}

.benefit-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 16px;
}

.benefit-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.benefit-details {
  list-style: none;
  padding-left: 0;
}

.benefit-details li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.benefit-details li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
}

.operator-case-study {
  background: white;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border: 2px solid var(--accent-gold);
}

.operator-case-study h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 32px;
  text-align: center;
}

.case-study-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.case-study-details h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
  margin-top: 24px;
}

.case-study-details h4:first-child {
  margin-top: 0;
}

.case-study-details ul {
  list-style: none;
  padding-left: 0;
}

.case-study-details li {
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
}

.case-study-details li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
}

.case-study-quote {
  background: var(--bg-light);
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-gold);
}

.case-study-quote blockquote {
  font-size: 16px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.case-study-quote cite {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 600;
  font-style: normal;
}

/* Comparison Section */
.comparison-section {
  background: white;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-radius: 12px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  min-width: 900px;
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table thead th {
  background: var(--primary-navy);
  color: white;
  font-weight: 700;
  font-size: 14px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.comparison-table tbody tr:hover {
  background: var(--bg-light);
}

.comparison-table td {
  color: var(--text-secondary);
  font-size: 14px;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--primary-navy);
}

.comparison-guidance {
  background: var(--bg-light);
  padding: 48px;
  border-radius: 16px;
}

.comparison-guidance h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 32px;
  text-align: center;
}

.guidance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.guidance-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: all 0.3s;
}

.guidance-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

.guidance-card.highlight {
  border-color: var(--accent-gold);
  border-width: 3px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(245, 158, 11, 0.02) 100%);
}

.guidance-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 16px;
}

.guidance-card ul {
  list-style: none;
  padding-left: 0;
}

.guidance-card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.guidance-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: 700;
}

/* Regulatory Section */
.regulatory-section {
  background: var(--bg-light);
}

.regulatory-framework {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.framework-section h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.framework-section i {
  color: var(--accent-gold);
}

.framework-intro {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.token-classification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.classification-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-left: 5px solid var(--accent-gold);
}

.classification-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 16px;
}

.classification-card ul {
  list-style: none;
  padding-left: 0;
}

.classification-card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.classification-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
}

.investor-requirements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.requirement-box {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.requirement-box h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 16px;
}

.requirement-box ul {
  list-style: none;
  padding-left: 0;
}

.requirement-box li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.requirement-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: 700;
}

.verification-process {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.verification-process h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 24px;
}

.verification-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.verification-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--accent-gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-info h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.step-info p {
  font-size: 14px;
  color: var(--text-secondary);
}

.verification-note {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--accent-gold);
  font-size: 14px;
  color: var(--text-secondary);
}

.aml-kyc-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.aml-feature {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.aml-feature h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 16px;
}

.aml-feature ul {
  list-style: none;
  padding-left: 0;
}

.aml-feature li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 14px;
}

.aml-feature li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
}

.cross-border-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.consideration-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-left: 5px solid var(--accent-gold);
}

.consideration-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.consideration-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.consideration-card ul {
  list-style: none;
  padding-left: 0;
}

.consideration-card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.consideration-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
}

/* Implementation Section */
.implementation-section {
  background: white;
}

.timeline-phases {
  margin-bottom: 60px;
}

.phase-card {
  background: var(--bg-light);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 2px solid var(--border-color);
  transition: all 0.3s;
}

.phase-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.phase-card.highlight {
  border-color: var(--accent-gold);
  border-width: 3px;
}

.phase-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
  color: white;
}

.phase-icon {
  width: 70px;
  height: 70px;
  background: rgba(245, 158, 11, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phase-icon i {
  font-size: 32px;
  color: var(--accent-gold);
}

.phase-title h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.phase-duration {
  display: inline-block;
  background: rgba(245, 158, 11, 0.2);
  color: var(--accent-gold);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}

.phase-content {
  padding: 40px;
}

.phase-activities {
  margin-bottom: 32px;
}

.phase-activities h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 16px;
}

.phase-activities ul {
  list-style: none;
  padding-left: 0;
}

.phase-activities li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.phase-activities li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: 700;
  font-size: 18px;
}

.phase-deliverables {
  background: white;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid var(--accent-gold);
}

.phase-deliverables h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.phase-deliverables ul {
  list-style: none;
  padding-left: 0;
}

.phase-deliverables li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.phase-deliverables li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
}

.timeline-visual {
  background: white;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border: 2px solid var(--accent-gold);
}

.timeline-visual h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 32px;
  text-align: center;
}

.timeline-chart {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  align-items: center;
}

.timeline-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-navy);
}

.timeline-bar {
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Opportunities Section */
.opportunities-section {
  background: var(--bg-light);
}

.featured-opportunity {
  background: white;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border: 3px solid var(--accent-gold);
  margin-bottom: 60px;
  position: relative;
}

.opportunity-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-gold);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
}

.featured-opportunity h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 32px;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.opportunity-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.detail-section h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.detail-section ul {
  list-style: none;
  padding-left: 0;
}

.detail-section li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.detail-section li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
}

.opportunity-sidebar {
  background: var(--bg-light);
  padding: 32px;
  border-radius: 12px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.sidebar-stat {
  text-align: center;
  margin-bottom: 32px;
}

.sidebar-stat .stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 8px;
}

.sidebar-stat .stat-label {
  font-size: 16px;
  color: var(--text-secondary);
}

.sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.sidebar-note {
  background: white;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--accent-gold);
}

.sidebar-note p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pipeline-opportunities {
  margin-bottom: 60px;
}

.pipeline-opportunities h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 32px;
  text-align: center;
}

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.pipeline-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 2px solid var(--border-color);
  transition: all 0.3s;
}

.pipeline-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.pipeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.pipeline-header h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
}

.pipeline-status {
  background: var(--accent-gold);
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.pipeline-details {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.pipeline-details li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 14px;
}

.pipeline-details li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
}

.waitlist-section {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
  color: white;
  padding: 60px 48px;
  border-radius: 16px;
  text-align: center;
}

.waitlist-section h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.waitlist-section p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 32px;
  opacity: 0.9;
}

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 15px;
}

.benefit-item i {
  color: var(--accent-gold);
  font-size: 20px;
}

/* FAQ Section */
.faq-section {
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 48px;
}

.faq-category h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--accent-gold);
}

.faq-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.faq-question i {
  color: var(--accent-gold);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-answer {
  color: var(--text-secondary);
  line-height: 1.7;
  padding-left: 32px;
}

/* Final CTA Section */
.final-cta-section {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
  color: white;
  padding: 80px 0;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: white;
}

.cta-subtitle {
  font-size: 20px;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  opacity: 0.9;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.cta-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  margin: 0 auto 24px;
}

.cta-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 16px;
}

.cta-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.cta-expectations {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 48px;
}

.cta-expectations h3 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  color: white;
}

.expectations-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.expectation-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 16px;
}

.expectation-item i {
  color: var(--accent-gold);
  font-size: 24px;
}

.cta-contact-info {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
}

.contact-item i {
  font-size: 28px;
  color: var(--accent-gold);
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-details strong {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 4px;
}

.contact-details span {
  font-size: 16px;
  font-weight: 600;
}

/* Footer */
.main-footer {
  background: var(--primary-navy);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--accent-gold);
}

.footer-column ul {
  list-style: none;
  padding-left: 0;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 14px;
}

.footer-column a:hover {
  color: var(--accent-gold);
}

.footer-contact {
  list-style: none !important;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.footer-contact i {
  color: var(--accent-gold);
  width: 16px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--accent-gold);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-disclaimer {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .opportunity-grid,
  .case-study-content {
    grid-template-columns: 1fr;
  }
  
  .opportunity-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero-section h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .step-card {
    grid-template-columns: 1fr;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline-row {
    grid-template-columns: 1fr;
  }
  
  .timeline-label {
    font-size: 13px;
  }
  
  .benefits-grid,
  .solution-features,
  .token-classification-grid,
  .investor-requirements,
  .aml-kyc-content,
  .cross-border-content,
  .security-grid,
  .pipeline-grid,
  .guidance-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-section h1 {
    font-size: 26px;
  }
  
  .hero-subtitle {
    font-size: 15px;
  }
  
  .hero-stats {
    gap: 32px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-lg {
    padding: 14px 24px;
    font-size: 16px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .feature-card,
  .benefit-card,
  .layer-card,
  .token-card {
    padding: 24px;
  }
}
