/* ===== 786 Scales - Dark Gold Theme ===== */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #141414;
  --bg-tertiary: #1c1c1c;
  --gold: #D4AF37;
  --gold-light: #F4D03F;
  --gold-bright: #FFD700;
  --gold-dark: #B8860B;
  --text-primary: #ffffff;
  --text-muted: #a8a8a8;
  --border: rgba(212, 175, 55, 0.2);
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.25);
}

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

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

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

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}
.logo .logo-num {
  color: var(--gold-bright);
  background: linear-gradient(135deg, #FFD700, #B8860B);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.75rem;
}
.logo .logo-word { color: #fff; }
.logo .logo-arrow {
  color: var(--gold-bright);
  margin-left: 4px;
  display: inline-block;
  transform: rotate(-45deg);
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold-bright);
  transition: width 0.3s ease;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold-bright); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0a0a !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}
.nav-cta::after { display: none; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-bright);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 24px 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    var(--bg-primary);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(212, 175, 55, 0.05);
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-bright);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero h1 .gold-text {
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 40px;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}
.hero-feature .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  font-size: 0.75rem;
  font-weight: 900;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: #0a0a0a;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--gold-bright);
  border: 1.5px solid var(--gold);
}
.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
}

.btn .arrow { transition: transform 0.3s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ===== Stats Bar ===== */
.stats-bar {
  padding: 60px 24px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}
.stat-item .stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item .stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== Sections ===== */
section { padding: 100px 24px; }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-label {
  display: inline-block;
  color: var(--gold-bright);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.section-header h2 .gold-text {
  background: linear-gradient(135deg, #FFD700, #D4AF37);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ===== Services / Strategies Grid ===== */
.strategies {
  background:
    radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.06), transparent 60%),
    var(--bg-primary);
}

.strategy-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.strategy-card {
  background: linear-gradient(180deg, var(--bg-secondary), var(--bg-tertiary));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.strategy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.strategy-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.1);
}
.strategy-card:hover::before { opacity: 1; }

.strategy-num {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 16px;
}

.strategy-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.strategy-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--gold-light);
  letter-spacing: -0.5px;
}

.strategy-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.strategy-list {
  list-style: none;
  margin-top: 18px;
}
.strategy-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  font-size: 0.9rem;
  color: #d0d0d0;
}
.strategy-list li::before {
  content: '↗';
  color: var(--gold-bright);
  font-weight: 900;
  flex-shrink: 0;
}

/* ===== Process Section ===== */
.process { background: var(--bg-secondary); }

.process-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.process-step {
  position: relative;
  padding: 24px;
  text-align: center;
}

.process-step .step-num {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
  color: #0a0a0a;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.process-step h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== CTA Section ===== */
.cta-section {
  background:
    radial-gradient(ellipse at center, rgba(212, 175, 55, 0.15), transparent 70%),
    var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.cta-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 32px;
  background: linear-gradient(135deg, rgba(28, 28, 28, 0.9), rgba(20, 20, 20, 0.9));
  border: 1px solid var(--gold);
  border-radius: 20px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.15);
}

.cta-box h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.cta-box p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.1rem;
}

/* ===== About Page ===== */
.page-hero {
  padding: 160px 24px 80px;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(212, 175, 55, 0.1), transparent 60%),
    var(--bg-primary);
}
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero p {
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1rem;
}

.about-visual {
  background: linear-gradient(180deg, var(--bg-secondary), var(--bg-tertiary));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  position: relative;
}

.value-list {
  list-style: none;
}
.value-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-list li:last-child { border-bottom: none; }
.value-list .val-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  font-weight: 900;
  flex-shrink: 0;
}
.value-list .val-content h4 {
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 4px;
}
.value-list .val-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.mission-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.mission-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 28px;
  text-align: left;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.mission-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.5);
}
.mission-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 20px;
}
.mission-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--gold-light);
}
.mission-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== Contact Page ===== */
.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.contact-card:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}
.contact-card .c-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  font-size: 1.4rem;
}
.contact-card .c-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-card .c-value {
  font-size: 1.05rem;
  color: var(--gold-light);
  font-weight: 600;
  word-break: break-word;
}
.contact-card .c-value a:hover { color: var(--gold-bright); }

.contact-form-wrap {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}
.contact-form-wrap h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.contact-form-wrap > p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--gold-light);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-success {
  margin-top: 20px;
  padding: 16px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold);
  border-radius: 8px;
  color: var(--gold-light);
  text-align: center;
  display: none;
}
.form-success.show { display: block; }

/* ===== FAQ ===== */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item.open { border-color: var(--gold); }
.faq-q {
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
}
.faq-q:hover { color: var(--gold-light); }
.faq-q .plus {
  font-size: 1.5rem;
  color: var(--gold-bright);
  transition: transform 0.3s ease;
}
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--text-muted);
  padding: 0 24px;
  font-size: 0.95rem;
}
.faq-item.open .faq-a {
  max-height: 240px;
  padding: 0 24px 22px;
}

/* ===== Footer ===== */
.footer {
  background: #050505;
  padding: 60px 24px 24px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p {
  color: var(--text-muted);
  margin: 18px 0;
  max-width: 360px;
  font-size: 0.95rem;
}
.footer h5 {
  color: var(--gold-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}
.footer ul { list-style: none; }
.footer ul li {
  margin-bottom: 10px;
}
.footer ul li a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.25s ease;
}
.footer ul li a:hover { color: var(--gold-bright); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-content { grid-template-columns: 1fr; gap: 40px; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: var(--bg-secondary);
    width: 80%;
    height: calc(100vh - 70px);
    padding: 40px 24px;
    transition: right 0.3s ease;
    border-left: 1px solid var(--border);
  }
  .nav-links.open { right: 0; }
  .mobile-toggle { display: block; }
  .hero-features { gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }
  section { padding: 70px 20px; }
}

/* ===== Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
