/* 
PIPSBULL FX LUXURY - REDESIGNED STYLESHEET
Version: 4.0 - Institutional Grade
*/

/* ===== VARIABLES ===== */
:root {
  --gold: #d4af37;
  --champagne: #f7e7ce;
  --emerald: #10b981;
  --ruby: #dc2626;
  --sapphire: #2563eb;
  --diamond: #e5e7eb;
  --bg-dark: #0a0a0a;
  --bg-darker: #000000;
  --bg-card: rgba(30, 30, 30, 0.7);
  --border-light: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(212, 175, 55, 0.3);
  --text-primary: #ffffff;
  --text-secondary: #d1d5db;
  --text-muted: #9ca3af;
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.15);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  min-height: 100vh;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
  background: 
    radial-gradient(ellipse at top, #1a1a1a, #000000),
    linear-gradient(to bottom, rgba(212, 175, 55, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 24px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== LAYOUT SYSTEM ===== */
.layout-full {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.layout-browsing {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.layout-reading {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.layout-centered {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
  position: relative;
}

.section-sm {
  padding: 60px 0;
}

.section-lg {
  padding: 100px 0;
}

.section-alt {
  background: linear-gradient(135deg, 
    rgba(30, 30, 30, 0.7) 0%,
    rgba(10, 10, 10, 0.9) 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

/* ===== TYPOGRAPHY SYSTEM ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.025em;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 3px;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.subtitle {
  font-size: 1.25rem;
  color: var(--champagne);
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

.lead {
  font-size: 1.375rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.small {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-gold { color: var(--gold); }
.text-champagne { color: var(--champagne); }
.text-emerald { color: var(--emerald); }
.text-muted { color: var(--text-muted); }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-logo {
  height: 40px;
  width: auto;
}

.site-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
}

.primary-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.primary-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.primary-menu a:hover {
  color: var(--gold);
}

.primary-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.primary-menu a:hover::after {
  width: 100%;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gold);
  color: #000000;
}

.btn-primary:hover {
  background: var(--champagne);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--border-gold);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold);
  border-color: var(--gold);
}

.btn-small {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

/* ===== HERO ===== */
.hero-section {
  padding-top: 140px;
  padding-bottom: 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.1), transparent 70%);
  pointer-events: none;
}

.hero-logo {
  margin-bottom: 2rem;
}

.logo-wrapper {
  display: inline-flex;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.hero-logo img {
  height: 80px;
  width: auto;
}

.hero-title {
  font-size: 3.5rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--champagne) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--champagne);
  margin-bottom: 2.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
}

.hero-quote {
  max-width: 600px;
  margin: 2.5rem auto 0;
  padding: 2rem;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  font-style: italic;
  font-size: 1.125rem;
  color: var(--champagne);
  line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, 
    rgba(212, 175, 55, 0.05) 0%,
    transparent 100%);
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 1rem;
}

.cta-feature .icon {
  font-size: 1.5rem;
  color: var(--gold);
}

/* ===== JOURNEY SECTION ===== */
.journey-section {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
}

.journey-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
  pointer-events: none;
}

.journey-content {
  position: relative;
  z-index: 1;
}

.highlight-box {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.highlight-box h3 {
  color: var(--champagne);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.luxury-list {
  list-style: none;
  padding: 0;
}

.luxury-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.luxury-list li:last-child {
  border-bottom: none;
}

.luxury-list li::before {
  content: "•";
  color: var(--gold);
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  top: 0.5rem;
}

.luxury-list li strong {
  color: var(--gold);
  font-weight: 600;
}

/* ===== DIFFERENCE SECTION ===== */
.difference-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .difference-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.difference-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  height: 100%;
}

.difference-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.difference-card h3 {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.difference-card .icon {
  font-size: 2rem;
}

/* ===== METHODOLOGY SECTION ===== */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.principle-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.principle-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.principle-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

/* ===== RESULTS GALLERY ===== */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.75rem 2rem;
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.tab-btn:hover {
  border-color: var(--border-gold);
  color: var(--champagne);
}

.tab-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #000000;
  font-weight: 600;
}

.gallery-container {
  max-width: 1000px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  -webkit-overflow-scrolling: touch;
}

.carousel-track::-webkit-scrollbar {
  height: 6px;
}

.carousel-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.carousel-track::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

.gallery-item {
  flex: 0 0 300px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ===== PARTNERSHIP SECTION ===== */
.partnership-institutional {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 3rem;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (min-width: 992px) {
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.partner-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  height: 100%;
}

.partner-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
}

.partner-logo {
  margin-bottom: 2rem;
  text-align: center;
}

.logo-placeholder {
  width: 160px;
  height: 80px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.75rem;
  margin: 0 auto;
  border: 1px solid var(--border-light);
  background: linear-gradient(135deg, #0a2e5c, #1a5fb4);
  color: white;
}

.partner-info {
  text-align: center;
}

.partner-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.5rem 0;
}

.partner-features span {
  background: rgba(212, 175, 55, 0.1);
  color: var(--champagne);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  border: 1px solid var(--border-gold);
}

.partner-code-wrapper {
  margin: 2rem 0;
}

.partner-code {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.partner-code:hover {
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.7);
}

.partner-code code {
  font-family: 'SF Mono', Monaco, Consolas, monospace;
  font-size: 1.25rem;
  color: var(--gold);
  letter-spacing: 1px;
}

.copy-indicator {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
}

.copy-indicator:hover {
  color: var(--gold);
}

.coming-soon {
  opacity: 0.6;
  filter: grayscale(0.5);
}

/* ===== ENHANCED FAQ SECTION ===== */
.faq-enhanced {
  max-width: 900px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.faq-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.faq-category-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--champagne);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-gold);
  font-size: 1.5rem;
}

.category-icon {
  font-size: 2rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--border-gold);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  color: var(--text-primary);
  font-size: 1.125rem;
}

.faq-toggle {
  color: var(--gold);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  display: none;
}

.faq-answer p {
  margin-bottom: 1rem;
}

.faq-answer ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.comparison-simple {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

@media (min-width: 768px) {
  .comparison-simple {
    grid-template-columns: repeat(2, 1fr);
  }
}

.comparison-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 1.5rem;
}

.comparison-item h4 {
  color: var(--champagne);
  margin-bottom: 1rem;
  text-align: center;
}

.comparison-item ul {
  list-style: none;
  padding: 0;
}

.comparison-item li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.comparison-item li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 3rem;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 16px;
  border: 1px solid var(--border-gold);
}

/* ===== ARTICLE SECTION ===== */
.article-section {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}

/* ===== BAB TRADING CONTENT ===== */
.bab-content-container {
  padding-top: 120px;
  min-height: 100vh;
}

.bab-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-gold);
}

.bab-number-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--champagne));
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-gold);
}

.bab-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.bab-badges {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.bab-badge {
  background: rgba(212, 175, 55, 0.1);
  color: var(--champagne);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  text-decoration: none;
  border: 1px solid var(--border-gold);
  transition: all 0.3s ease;
}

.bab-badge:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.bab-main-content {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 3rem;
  border: 1px solid var(--border-light);
}

.bab-subtitle {
  color: var(--gold);
  font-size: 1.75rem;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-gold);
}

.bab-paragraph {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ===== ARCHIVE BAB TRADING ===== */
.bagian-section {
  margin-bottom: 4rem;
}

.bagian-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-gold);
}

.bagian-header h2 {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.bab-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.bab-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.bab-item:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.bab-item-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.bab-number {
  min-width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--champagne));
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.bab-text h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.bab-text h3 a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.bab-text h3 a:hover {
  color: var(--gold);
}

.bab-text p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  color: var(--champagne);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
  color: var(--gold);
}

.completed-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 24px;
  height: 24px;
  background: var(--emerald);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}

.bab-item.completed {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
}

/* ===== PROGRESS TRACKER ===== */
.progress-tracker {
  margin-top: 4rem;
  padding: 2.5rem;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  text-align: center;
}

.progress-header {
  color: var(--champagne);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.progress-content {
  max-width: 600px;
  margin: 0 auto;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.progress-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

#progressPercentage {
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
}

.progress-bar-container {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1rem;
}

#progressBar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--champagne));
  border-radius: 4px;
  transition: width 1s ease;
}

.progress-count {
  color: var(--text-muted);
  font-size: 0.875rem;
}

#completedCount {
  color: var(--gold);
  font-weight: 500;
}

/* ===== FILTER CONTAINER ===== */
.filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 2rem 0;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  white-space: nowrap;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-light);
  color: var(--text-primary);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--champagne));
  color: #000000;
  border-color: transparent;
  font-weight: 600;
}

/* ===== MARK COMPLETE ===== */
.mark-complete-section {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

#markCompleteBtn {
  background: var(--gold);
  color: #000000;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

#markCompleteBtn:hover {
  background: var(--champagne);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

#completeStatus {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ===== NAVIGATION BUTTONS ===== */
.bab-navigation-buttons {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.bab-button-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .bab-button-group {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ===== FOOTER ===== */
.site-footer {
  background: rgba(0, 0, 0, 0.8);
  border-top: 1px solid var(--border-gold);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.footer-manifesto {
  text-align: center;
  max-width: 700px;
}

.manifesto-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.manifesto-text {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--champagne);
  font-style: italic;
  margin-bottom: 1rem;
  text-align: center;
}

.manifesto-author {
  color: var(--text-muted);
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-legal {
  text-align: center;
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  width: 100%;
}

.legal-disclaimer {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.copyright {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ===== UTILITY CLASSES ===== */
.mt-20 { margin-top: 1.25rem; }
.mt-40 { margin-top: 2.5rem; }
.mb-20 { margin-bottom: 1.25rem; }
.mb-40 { margin-bottom: 2.5rem; }
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.disabled {
  opacity: 0.5;
  cursor: not-allowed !important;
  pointer-events: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.reveal-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-element.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== IMAGE MODAL ===== */
.image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border: 1px solid var(--border-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-lg {
    padding: 80px 0;
  }
  
  .hero-section {
    padding-top: 120px;
    padding-bottom: 80px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .header-inner {
    flex-direction: column;
    gap: 1rem;
  }
  
  .primary-menu {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .journey-section,
  .partnership-institutional,
  .bab-main-content {
    padding: 2rem;
  }
  
  .difference-grid,
  .principles-grid {
    grid-template-columns: 1fr;
  }
  
  .bab-grid-container {
    grid-template-columns: 1fr;
  }
  
  .gallery-item {
    flex: 0 0 280px;
  }
}

@media (max-width: 480px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }
  
  .filter-container {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
  }
  
  .filter-btn {
    flex-shrink: 0;
  }
  
  .carousel-track {
    gap: 1rem;
    padding: 1rem;
  }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--champagne);
}

/* ===== PRINT STYLES ===== */
@media print {
  .site-header,
  .site-footer,
  .btn,
  .bab-navigation-buttons,
  .mark-complete-section,
  .filter-container,
  .progress-tracker,
  .gallery-tabs {
    display: none;
  }
  
  body {
    color: #000000;
    background: #ffffff;
    font-size: 12pt;
  }
  
  .bab-content-container {
    padding-top: 0;
  }
  
  .bab-main-content {
    border: none;
    background: none;
    padding: 0;
  }
}


/* ===== PERBAIKAN LOGO STYLES ===== */

/* Container utama logo */
.logo-wrapper {
    display: inline-flex;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-gold);
    border-radius: 24px; /* Rounded corners untuk container */
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden; /* Ini penting! */
}

/* Container dalam untuk logo */
.custom-logo-container {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    border-radius: 20px; /* Rounded corners untuk container logo */
    overflow: hidden; /* Ini yang bikin logo ikut rounded! */
    background: linear-gradient(
        145deg,
        rgba(10, 10, 10, 0.9),
        rgba(20, 20, 20, 0.95)
    );
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 8px; /* Beri sedikit padding */
}

/* Styling untuk logo IMAGE */
.custom-logo-container img,
.custom-logo {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Pastikan logo tidak terdistorsi */
    border-radius: 18px; /* Kurangi sedikit dari container-nya */
    padding: 10px;
    transition: all 0.3s ease;
}

/* Untuk WordPress custom logo (mungkin punya link) */
.custom-logo-container a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.custom-logo-container a img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 18px;
}



/* ===== VERSI 2: MINIMALIS & ELEGAN ===== */

/* Story Timeline */
.story-timeline {
    position: relative;
    margin: 2rem 0 3rem;
    padding-left: 30px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, 
        transparent,
        var(--gold),
        var(--champagne),
        var(--gold),
        transparent
    );
    opacity: 0.5;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: flex-start;
}

.timeline-marker {
    position: absolute;
    left: -30px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--gold), var(--champagne));
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    flex: 1;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    border-color: var(--gold);
    transform: translateX(5px);
}

.timeline-content h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.timeline-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.timeline-desc strong {
    color: var(--champagne);
    font-weight: 600;
}

.highlight-text {
    color: var(--gold);
    font-weight: 500;
    display: block;
    margin-top: 0.5rem;
}

/* Reality Card */
.reality-card {
    background: linear-gradient(145deg,
        rgba(212, 175, 55, 0.1),
        rgba(212, 175, 55, 0.05)
    );
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

.reality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        var(--gold),
        transparent
    );
}

.reality-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.reality-badge {
    background: var(--gold);
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.reality-header h3 {
    color: var(--champagne);
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
}

.reality-body {
    color: var(--text-secondary);
}

.reality-body p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.proof-text {
    color: var(--emerald);
    font-weight: 600;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.proof-text::before {
    content: '✓';
    font-size: 1.2rem;
}

/* Insights Section */
.insights-section {
    margin: 3rem 0;
}

.insights-title {
    color: var(--champagne);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.insights-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.insights-list {
    max-width: 600px;
    margin: 0 auto;
}

.insight-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.insight-item:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    background: rgba(212, 175, 55, 0.03);
}

.insight-keyword {
    background: linear-gradient(135deg, var(--gold), var(--champagne));
    color: #000;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    min-width: 80px;
    text-align: center;
    flex-shrink: 0;
}

.insight-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

.insight-item strong {
    color: var(--champagne);
    font-weight: 600;
}

/* Closing Statement */
.closing-statement {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg,
        rgba(30, 30, 40, 0.8),
        rgba(20, 20, 30, 0.9)
    );
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.closing-statement::before {
    content: '❝';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.1;
    font-family: serif;
}

.closing-statement::after {
    content: '❞';
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.1;
    font-family: serif;
}

.closing-quote {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--champagne);
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
}

.quote-emphasis {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.3rem;
    display: block;
    margin-top: 0.5rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .story-timeline {
        padding-left: 25px;
    }
    
    .timeline-marker {
        left: -25px;
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .timeline-content {
        padding: 1.25rem;
    }
    
    .reality-header h3 {
        font-size: 1.6rem;
    }
    
    .reality-body p {
        font-size: 1rem;
    }
    
    .insights-title {
        font-size: 1.5rem;
    }
    
    .insight-item {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .insight-keyword {
        align-self: flex-start;
    }
    
    .closing-quote {
        font-size: 1.2rem;
    }
    
    .quote-emphasis {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .timeline-item {
        margin-bottom: 2rem;
    }
    
    .reality-card {
        padding: 1.5rem;
    }
    
    .reality-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .closing-statement {
        padding: 1.5rem;
    }
    
    .closing-statement::before,
    .closing-statement::after {
        font-size: 2.5rem;
    }
}

/* Natural Typography Improvements */
.timeline-desc,
.reality-body p,
.insight-item p,
.closing-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    letter-spacing: -0.01em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* Better spacing */
.timeline-item {
    margin-bottom: 2rem;
}

.insight-item {
    margin-bottom: 1.25rem;
}

/* Color improvements for better readability */
.timeline-desc {
    color: rgba(255, 255, 255, 0.85);
}

.insight-item p {
    color: rgba(255, 255, 255, 0.8);
}

/* Hover effects */
.timeline-item:hover .timeline-marker {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.insight-item:hover .insight-keyword {
    background: linear-gradient(135deg, var(--champagne), var(--gold));
}



/* ===== PARTNERSHIP CLARIFICATION SECTION ===== */

.partnership-section {
    background: linear-gradient(145deg, 
        rgba(30, 30, 40, 0.8) 0%,
        rgba(20, 20, 30, 0.9) 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

/* Clarification Box */
.clarification-box {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0%, 100% { border-color: rgba(212, 175, 55, 0.3); }
    50% { border-color: rgba(212, 175, 55, 0.6); }
}

.clarification-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.clarification-content h4 {
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.clarification-content p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.clarification-content strong {
    color: var(--champagne);
}

/* Partner Optional Card */
.partner-optional-card {
    max-width: 1000px;
    margin: 0 auto;
}

/* Broker Info Card */
.broker-info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.broker-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.broker-logo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #0a2e5c, #1a5fb4);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.broker-title h3 {
    color: var(--champagne);
    margin-bottom: 0.5rem;
}

.broker-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Broker Details */
.broker-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.broker-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.broker-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    color: var(--text-secondary);
}

.feature-dot {
    color: var(--gold);
    font-weight: bold;
}

/* IB Optional Section */
.ib-optional-section {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: 2rem;
}

.ib-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.ib-header h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.ib-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.ib-benefits {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.ib-benefits p {
    color: var(--champagne);
    margin-bottom: 1rem;
}

.benefit-list-simple {
    list-style: none;
    padding: 0;
}

.benefit-list-simple li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-list-simple li:before {
    content: '✓';
    color: var(--emerald);
    font-weight: bold;
}

/* Code Optional */
.code-optional {
    margin: 2rem 0;
}

.code-label-optional {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1rem;
    font-style: italic;
}

.code-box-optional {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px dashed var(--gold);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.code-box-optional:hover {
    border-style: solid;
    background: rgba(0, 0, 0, 0.7);
}

.code-box-optional code {
    font-family: 'SF Mono', Monaco, Consolas, monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    flex: 1;
    text-align: center;
}

.copy-btn-optional {
    background: rgba(212, 175, 55, 0.2);
    color: var(--champagne);
    border: 1px solid var(--gold);
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.copy-btn-optional:hover {
    background: var(--gold);
    color: #000;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-buttons .btn {
    flex: 1;
    min-width: 250px;
    justify-content: center;
}

.choice-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
}

/* WhatsApp Main CTA */
.whatsapp-main-cta {
    background: linear-gradient(135deg, 
        rgba(37, 211, 102, 0.1) 0%,
        rgba(37, 211, 102, 0.05) 100%);
    border: 2px solid rgba(37, 211, 102, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 2rem;
}

.whatsapp-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.whatsapp-content h4 {
    color: #25D366;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.whatsapp-content p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

.whatsapp-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Final Clarification */
.final-clarification {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.clarification-badge {
    font-size: 2rem;
    flex-shrink: 0;
}

.final-clarification p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.final-clarification strong {
    color: var(--champagne);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .partnership-section {
        padding: 2rem;
    }
    
    .clarification-box {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .broker-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .broker-features {
        grid-template-columns: 1fr;
    }
    
    .code-box-optional {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons .btn {
        min-width: 100%;
    }
    
    .final-clarification {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}


/* Simple Exness Colors */
.logo-placeholder {
  width: 160px;
  height: 80px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.75rem;
  margin: 0 auto;
  
  /* Simple black background */
  background: #000000;
  
  /* Exness yellow text */
  color: #FFCC00;
  
  /* Yellow border */
  border: 2px solid #FFCC00;
  
  /* Subtle shadow */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Hover state */
.logo-placeholder:hover {
  background: #111111;
  color: #FFDD44;
  border-color: #FFDD44;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 204, 0, 0.2);
}