/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9A84C;
  --gold-light: #E4C97A;
  --gold-dark: #A8882A;
  --navy: #0A1628;
  --navy-mid: #0F2040;
  --navy-light: #162B4D;
  --white: #FFFFFF;
  --off-white: #F7F5F0;
  --light-gray: #F0EDE8;
  --text-dark: #1A1A2E;
  --text-mid: #4A4A6A;
  --text-muted: #8890A4;
  --text-on-dark: #C8D4E8;
  --border: rgba(201, 168, 76, 0.2);
  --card-bg: #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-tap-highlight-color: transparent;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h4 { font-family: 'Inter', sans-serif; font-weight: 600; }
.gold-text { color: var(--gold); }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-tag.gold { background: rgba(201,168,76,0.15); }
.section-title { font-size: clamp(26px, 4vw, 40px); margin-bottom: 20px; color: var(--text-dark); }
.section-title.white { color: var(--white); }
.section-body { font-size: 16px; color: var(--text-mid); line-height: 1.75; margin-bottom: 16px; max-width: 560px; }
.section-body.muted { color: var(--text-on-dark); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-body { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.45);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}
.btn-large { padding: 18px 40px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; }

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { width: 36px; height: 36px; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); background: rgba(201,168,76,0.08); }
.nav-cta { flex-shrink: 0; padding: 10px 22px; font-size: 14px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-link {
  display: block;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  transition: var(--transition);
}
.mobile-link:hover { color: var(--gold); background: rgba(201,168,76,0.08); }
.mobile-cta { margin-top: 12px; width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(22, 43, 77, 0.8) 0%, transparent 70%);
  bottom: -100px; left: -100px;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 120px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(36px, 5.5vw, 68px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 720px;
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-on-dark);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px 32px;
  width: fit-content;
  backdrop-filter: blur(10px);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { padding-right: 0; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-suffix {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gold);
  font-weight: 600;
  margin-left: 2px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.scroll-arrow {
  animation: bounce 2s infinite;
  color: var(--gold);
}
.scroll-arrow svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===== SECTIONS ===== */
.section-light { background: var(--off-white); padding: 100px 0; }
.section-dark { background: var(--navy); padding: 100px 0; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-card-main {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.about-icon-large svg { width: 80px; height: 80px; }
.about-card-label {
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 500;
}
.about-card-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}
.accent-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.accent-label { font-size: 11px; color: var(--navy); font-weight: 600; opacity: 0.8; margin-top: 4px; }
.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
}
.check-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-card-featured {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.3);
}
.service-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.service-icon { margin-bottom: 24px; }
.service-icon svg { width: 48px; height: 48px; }
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 12px;
}
.service-desc { font-size: 14px; color: var(--text-on-dark); line-height: 1.7; margin-bottom: 24px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.service-link svg { width: 16px; height: 16px; transition: var(--transition); }
.service-link:hover { gap: 12px; }
.service-link:hover svg { transform: translateX(4px); }

/* ===== INVEST ===== */
.invest { padding: 100px 0; }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.split-grid.reverse { direction: rtl; }
.split-grid.reverse > * { direction: ltr; }
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-item h4 { font-size: 15px; margin-bottom: 4px; color: var(--text-dark); }
.feature-item p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.feature-item.dark h4 { color: var(--white); }
.feature-item.dark p { color: var(--text-on-dark); }
.steps-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.steps-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 32px;
}
.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  width: 40px;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}
.step-content h4 { font-size: 15px; color: var(--text-dark); margin-bottom: 4px; }
.step-content p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }
.step-line {
  width: 1px;
  height: 24px;
  background: rgba(201,168,76,0.25);
  margin-left: 20px;
  margin: 12px 0 12px 20px;
}

/* ===== SELL ===== */
.sell-visual-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.sell-stat-row {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  justify-content: center;
}
.sell-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.sell-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
}
.sell-stat-label { font-size: 12px; color: var(--text-on-dark); text-align: center; }
.sell-icons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.sell-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-on-dark);
}
.sell-icon-item svg { width: 40px; height: 40px; }
.sell-icon-arrow svg { width: 20px; height: 20px; color: rgba(201,168,76,0.5); }

/* ===== REFERRAL ===== */
.referral { padding: 100px 0; }
.referral-highlight {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 48px;
}
.referral-amount {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.referral-from { font-size: 14px; color: var(--text-muted); }
.referral-number {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.referral-per { font-size: 13px; color: var(--text-on-dark); text-align: center; margin-top: 4px; }
.referral-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.referral-steps {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
}
.ref-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.ref-step-num {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}
.ref-step p { font-size: 13px; color: var(--text-on-dark); max-width: 120px; line-height: 1.4; }
.ref-arrow { font-size: 20px; color: rgba(201,168,76,0.5); margin-bottom: 24px; }
.referral-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.ref-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.ref-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(201,168,76,0.25); }
.ref-card-icon { width: 40px; height: 40px; margin-bottom: 16px; }
.ref-card h4 { font-size: 16px; color: var(--text-dark); margin-bottom: 10px; }
.ref-card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }
.referral-cta { text-align: center; }
.referral-note { font-size: 12px; color: var(--text-muted); margin-top: 16px; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.detail-label { display: block; font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.detail-value { display: block; font-size: 15px; color: var(--white); font-weight: 500; }
.contact-form-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.04);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group select option { background: var(--navy-mid); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}
.form-check label { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; cursor: pointer; }
.gold-link { color: var(--gold); text-decoration: none; }
.gold-link:hover { text-decoration: underline; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 500;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 16px 20px;
}
.form-success svg { width: 24px; height: 24px; flex-shrink: 0; }
.form-success.visible { display: flex; }

/* ===== FOOTER ===== */
.footer {
  background: #060E1A;
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { margin-bottom: 16px; }
.footer-tagline { font-size: 14px; color: var(--text-muted); max-width: 280px; line-height: 1.65; }
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }

/* ===== INSTAGRAM ===== */
.instagram { padding: 100px 0; }

.insta-header { margin-bottom: 48px; }

.insta-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.insta-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  padding: 3px;
  background: linear-gradient(135deg, #C9A84C, #0A1628);
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.insta-avatar svg { display: block; border-radius: 50%; }

.insta-profile-info { flex: 1; min-width: 0; }

.insta-username-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.insta-username {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.btn-insta-follow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: white;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-insta-follow svg { width: 15px; height: 15px; }
.btn-insta-follow:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(131,58,180,0.35); }

.insta-bio { font-size: 14px; color: var(--text-mid); margin-bottom: 8px; line-height: 1.5; }

.insta-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.insta-dot { opacity: 0.4; }

.insta-subtext {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.65;
}

/* Grid */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.insta-post {
  display: block;
  text-decoration: none;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.insta-post-inner {
  width: 100%; height: 100%;
  position: relative;
}

.insta-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: var(--transition);
}

.insta-p1 { background: linear-gradient(135deg, #1a2a4a 0%, #0d1e35 100%); }
.insta-p2 { background: linear-gradient(135deg, #2a1a1a 0%, #1a0d0d 100%); }
.insta-p3 { background: linear-gradient(135deg, #1a2a1a 0%, #0d1e0d 100%); }
.insta-p4 { background: linear-gradient(135deg, #2a2a1a 0%, #1a1a0d 100%); }
.insta-p5 { background: linear-gradient(135deg, #1a1a2a 0%, #0d0d1e 100%); }
.insta-p6 { background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%); }

.insta-placeholder-icon svg { width: 36px; height: 36px; opacity: 0.7; }
.insta-placeholder-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* CTA tile */
.insta-ig-icon { width: 36px; height: 36px; margin-bottom: 4px; }
.insta-cta-text {
  font-size: 13px;
  color: white;
  font-weight: 600;
}
.insta-cta-handle {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
}

/* Overlay on hover */
.insta-post-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.insta-post:hover .insta-post-overlay { opacity: 1; }
.insta-post:hover .insta-placeholder { transform: scale(1.04); }

/* Bottom CTA */
.insta-footer { text-align: center; }

.btn-insta-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: white;
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(131,58,180,0.3);
}
.btn-insta-large:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(131,58,180,0.4);
}

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(24px); animation: fadeInUp 0.8s forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */

/* Touch optimizations – global */
@media (hover: none) {
  .btn:hover { transform: none; }
  .service-card:hover { transform: none; }
  .ref-card:hover { transform: none; }
}

/* ── Tablet: 1024px ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-visual { order: -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .about-card-accent { bottom: -16px; right: -8px; }

  .split-grid { grid-template-columns: 1fr; gap: 48px; }
  .split-grid.reverse { direction: ltr; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .referral-highlight { flex-direction: column; gap: 32px; text-align: center; }
  .referral-divider { width: 80px; height: 1px; }
  .referral-steps { flex-wrap: wrap; justify-content: center; }
  .referral-cards { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .sell-icons-row { gap: 10px; }
}

/* ── Mobile: 768px ── */
@media (max-width: 768px) {
  /* Global */
  .container { padding: 0 16px; }
  .section-light,
  .section-dark,
  .invest,
  .referral { padding: 64px 0; }

  /* Nav */
  .nav { height: 64px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-content { padding-top: 88px; padding-bottom: 80px; }
  .hero-title { font-size: clamp(30px, 8vw, 42px); }
  .hero-subtitle { font-size: 15px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    padding: 20px 16px;
    gap: 0;
  }
  .stat-divider { width: 1px; height: auto; }
  .hero-stat { padding: 0 12px; }
  .stat-num { font-size: 24px; }
  .stat-suffix { font-size: 14px; }
  .stat-label { font-size: 10px; text-align: center; }

  /* About */
  .about-visual { max-width: 100%; }
  .about-card-main { padding: 32px 24px; }
  .about-card-accent { bottom: -12px; right: 0; }
  .about-text .section-body { max-width: 100%; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 24px; }

  /* Steps card */
  .steps-card { padding: 28px 24px; }

  /* Sell */
  .sell-visual-card { padding: 28px 20px; }
  .sell-stat-row { gap: 12px; }
  .sell-stat-num { font-size: 24px; }
  .sell-icons-row { gap: 8px; }
  .sell-icon-item svg { width: 28px; height: 28px; }
  .sell-icon-item { font-size: 11px; }

  /* Referral */
  .referral-highlight { padding: 32px 20px; }
  .referral-number { font-size: 40px; }
  .referral-steps { flex-direction: column; gap: 12px; }
  .ref-arrow { transform: rotate(90deg); margin: 0; }
  .referral-cards { grid-template-columns: 1fr; }
  .ref-card { padding: 24px; }

  /* Contact */
  .contact-form-wrap { padding: 24px 20px; }
  .contact-details { margin-top: 24px; }
  .form-row { grid-template-columns: 1fr; }
  /* Prevent iOS auto-zoom on inputs */
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; }

  /* Footer */
  .footer { padding: 48px 0 24px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand { text-align: center; }
  .footer-tagline { margin: 0 auto; }
  .footer-logo { justify-content: center; }

  /* Buttons – minimum touch target 48px */
  .btn { min-height: 48px; }

  /* Instagram */
  .instagram { padding: 64px 0; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .insta-profile { flex-direction: column; align-items: flex-start; gap: 14px; }
  .insta-avatar { width: 56px; height: 56px; }
  .insta-username { font-size: 18px; }
  .btn-insta-large { width: 100%; justify-content: center; }
}

/* ── Small phones: 480px ── */
@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }
  .stat-divider { width: 60px; height: 1px; margin: 0 auto; }
  .hero-stat { padding: 0; }
  .stat-num { font-size: 28px; }

  .about-card-accent { position: relative; bottom: auto; right: auto; margin-top: 12px; align-self: flex-end; }
  .about-visual { overflow: visible; }

  .referral-highlight { padding: 24px 16px; }
  .sell-icons-row { flex-direction: column; gap: 12px; }
  .sell-icon-arrow { transform: rotate(90deg); }

  .contact-form-wrap { padding: 20px 16px; }
  .hero-badge { font-size: 11px; }
  .section-tag { font-size: 11px; }
}
