:root {
  --bg-main: #020617;
  --bg-secondary: #0f172a;
  --bg-card: #1e293b;
  --primary: #d4af37;
  --primary-hover: #f59e0b;
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --border: #334155;
  --container: 1200px;
  --font-main: "Outfit", sans-serif;
  --shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px 0;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__name {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}

.nav-desktop {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link.accent {
  color: white;
}

.header__btn {
  display: block;
}

/* Burger */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  width: 30px;
}

.burger .bar {
  width: 100%;
  height: 2px;
  background: white;
  transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-main);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: 0.4s ease;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mm-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.mm-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}

.mm-close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.mm-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.mm-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
}

.mm-link.highlight {
  color: var(--primary);
}

.mm-footer {
  padding: 20px;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  transition: 0.3s;
  gap: 8px;
}

.btn-gold {
  background: linear-gradient(135deg, #d4af37 0%, #f59e0b 100%);
  color: #000;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: white;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-transparent {
  background: transparent;
  color: white;
  padding: 12px 0;
}

.btn-transparent:hover {
  color: var(--primary);
}

.btn-full {
  width: 100%;
}

.btn-wide {
  padding: 15px 40px;
  font-size: 1rem;
}

/* Parallax Hero */
.hero-parallax {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* Parallax Magic */
  background-image: url("https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?q=80&w=2072&auto=format&fit=crop");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(2, 6, 23, 0.95) 0%,
    rgba(2, 6, 23, 0.7) 60%,
    rgba(2, 6, 23, 0.3) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text {
  max-width: 650px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
}

.hero-text h1 {
  font-size: 3.8rem;
  line-height: 1.1;
  margin-bottom: 25px;
  color: white;
}

.gold-text {
  color: var(--primary);
  background: linear-gradient(135deg, #d4af37 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 20px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 25px;
  margin-top: 40px;
}

/* Sections */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 2; /* Sit above parallax */
}

.bg-dark {
  background: var(--bg-main);
}
.bg-darker {
  background: #01040f;
}
.bg-gradient {
  background: linear-gradient(
    180deg,
    var(--bg-main) 0%,
    var(--bg-secondary) 100%
  );
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Method Grid */
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.method-card {
  background: var(--bg-card);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}

.method-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border-radius: 50%;
}

.method-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: white;
}

/* Split Section */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.split-content h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: white;
}

.split-content p {
  margin-bottom: 20px;
  color: var(--text-muted);
}

.stats-row {
  display: flex;
  gap: 50px;
  margin: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}

.stat-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.split-image {
  position: relative;
}

.split-image img {
  width: 100%;
  box-shadow: -20px 20px 0 rgba(212, 175, 55, 0.1);
}

.float-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--bg-secondary);
  padding: 20px 30px;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.float-card i {
  color: var(--primary);
  width: 30px;
  height: 30px;
}

.float-card strong {
  display: block;
  color: white;
}

.float-card small {
  color: #4ade80;
}

/* Income Bento */
.income-bento {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 30px;
}

.bento-large {
  grid-row: span 2;
  background: var(--bg-card);
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.bento-content {
  padding: 50px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: white;
}

.bento-content p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.link-arrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 600;
}

.bento-img {
  flex: 1;
  position: relative;
}

.bento-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-small {
  background: var(--bg-card);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-icon {
  color: var(--primary);
  margin-bottom: 20px;
}

.bento-small h4 {
  color: white;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* FAQ */
.narrow-wrap {
  max-width: 800px;
}

.accordion-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.acc-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.acc-head {
  padding: 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: white;
  transition: 0.3s;
}

.acc-head:hover {
  background: rgba(255, 255, 255, 0.02);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  padding: 0 25px;
}

.acc-body p {
  padding-bottom: 25px;
  color: var(--text-muted);
}

.acc-item.active .acc-body {
  max-height: 200px;
}

.acc-item.active .acc-head i {
  transform: rotate(45deg);
  color: var(--primary);
}

/* Form Section */
.contact-section {
  background: linear-gradient(90deg, #020617 50%, #0f172a 50%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-info h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  color: white;
}

.contact-info p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.info-list i {
  color: var(--primary);
}

.office-info {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.office-info strong {
  display: block;
  color: var(--primary);
  margin-bottom: 5px;
}

/* Gold Form */
.gold-form {
  background: var(--bg-card);
  padding: 50px;
  border: 1px solid var(--primary);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.form-title {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.input-group input {
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.input-group input:focus {
  border-color: var(--primary);
}

.checkbox-wrapper {
  margin: 25px 0;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.checkbox-wrapper input {
  margin-top: 5px;
  min-width: 18px;
  min-height: 18px;
}

.checkbox-wrapper label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.checkbox-wrapper a {
  color: var(--primary);
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #000;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.ft-logo {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.ft-brand p {
  color: var(--text-muted);
  max-width: 300px;
}

.ft-nav h4,
.ft-legal h4,
.ft-contact h4 {
  color: white;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.ft-nav a,
.ft-legal a,
.ft-contact p {
  display: block;
  color: var(--text-muted);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.ft-nav a:hover,
.ft-legal a:hover {
  color: var(--primary);
}

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

/* Cookie */
.cookie-modal {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 5000;
  display: none;
}

.cookie-content {
  background: var(--bg-secondary);
  border: 1px solid var(--primary);
  padding: 30px;
  max-width: 350px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.cookie-content h3 {
  color: white;
  margin-bottom: 10px;
}

.cookie-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-desktop,
  .header__btn {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero-text h1 {
    font-size: 3rem;
  }
  .split-layout {
    grid-template-columns: 1fr;
  }
  .split-image {
    order: -1;
  }
  .income-bento {
    grid-template-columns: 1fr;
  }
  .bento-large {
    grid-row: auto;
    flex-direction: column;
  }
  .contact-section {
    background: var(--bg-main);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-info {
    margin-bottom: 50px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cookie-modal {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: none;
  }
  .float-card {
    right: 0;
    bottom: -50px;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
  background: none;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    text-align: left;
    font-size: 20px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  h3 {
    font-size: 20px;
  }
  .margin {
    font-size: 28px;
  }
}

/* --- CONTACT PAGE SPECIFIC STYLES --- */
.contact-page-main {
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--accent);
  margin-bottom: 30px;
  line-height: 1;
  display: flex;
  justify-content: center;
}

.cp-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 0 auto 40px auto;
}

.cp-status {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  border: 1px solid var(--line);
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 60px;
  background: #fcfcfc;
}

.cp-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cp-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.cp-phone-link {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--accent);
  line-height: 1.2;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  margin-bottom: 40px;
}

.cp-phone-link:hover {
  border-bottom-color: var(--accent);
  opacity: 0.8;
}

.cp-address-box {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  width: 100%;
  max-width: 400px;
}

.cp-addr {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.cp-email {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 1rem;
}

.cp-email a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cp-email a:hover {
  color: var(--accent);
}

@media (max-width: 600px) {
  .contact-page-main {
    padding-top: 140px;
    text-align: center;
  }

  .cp-phone-link {
    font-size: 2rem;
  }
}
