/* ============================================
   Orbit Social Co. — Master Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-primary: #0d0d0d;
  --bg-secondary: #141414;
  --bg-tertiary: #1a1a1a;
  --bg-card: #1e1e1e;
  --gold: #d4a843;
  --gold-light: #f0c75e;
  --gold-gradient: linear-gradient(135deg, #d4a843, #f0c75e);
  --gold-gradient-hover: linear-gradient(135deg, #f0c75e, #d4a843);
  --white: #ffffff;
  --white-muted: #cccccc;
  --white-dim: #999999;
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --header-height: 80px;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

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

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p { color: var(--white-muted); margin-bottom: 1rem; }

.container { width: 90%; max-width: var(--max-width); margin: 0 auto; }

section { padding: 80px 0; }

/* --- Utility --- */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.section-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.section-heading { margin-bottom: 1rem; }
.section-sub {
  color: var(--white-dim);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.btn-gold {
  background: var(--gold-gradient);
  color: var(--bg-primary);
}
.btn-gold:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 168, 67, 0.3);
  color: var(--bg-primary);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 0 5%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(13, 13, 13, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 1px;
}
.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: var(--white-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  margin-left: 1rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,13,13,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white-muted);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(212,168,67,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 850px; }
.hero-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: var(--white-dim);
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================
   CLIENT LOGOS
   ============================================ */
.clients-bar {
  background: var(--bg-secondary);
  padding: 50px 0;
  text-align: center;
}
.clients-bar p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--white-dim);
  margin-bottom: 2rem;
}
.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.client-logo {
  width: 130px; height: 50px;
  background: var(--bg-tertiary);
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--white-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  text-align: center;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.92rem; color: var(--white-dim); margin-bottom: 1.25rem; }
.service-card a { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }

/* ============================================
   STATS / RESULTS
   ============================================ */
.results-section {
  background: var(--bg-secondary);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item h3 {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.stat-item p {
  font-size: 0.9rem;
  color: var(--white-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--bg-primary); }
.testimonial-slider {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
  text-align: center;
}
.testimonial-slide blockquote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--white-muted);
  margin-bottom: 1.5rem;
}
.testimonial-author {
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 600;
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--white-dim);
  margin-top: 0.25rem;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #333;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.slider-dot.active { background: var(--gold); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--bg-tertiary);
  text-align: center;
  padding: 80px 5%;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { margin-bottom: 2rem; max-width: 550px; margin-left: auto; margin-right: auto; }

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.blog-card-image {
  width: 100%; height: 200px;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-dim);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-card-body { padding: 1.5rem; }
.blog-card-meta {
  font-size: 0.78rem;
  color: var(--white-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}
.blog-card-meta span { color: var(--gold); }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.blog-card h3 a { color: var(--white); }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p { font-size: 0.9rem; color: var(--white-dim); margin-bottom: 1rem; }
.blog-card .read-more {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid #2a2a2a;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; display: inline-block; }
.footer-brand p { font-size: 0.9rem; color: var(--white-dim); margin-bottom: 1.5rem; max-width: 300px; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-dim);
  font-size: 0.8rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  color: var(--white-dim);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}
.footer-col a:hover { color: var(--gold); }
.footer-col p {
  font-size: 0.88rem;
  color: var(--white-dim);
  margin-bottom: 0.5rem;
}
.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--white-dim);
}
.footer-bottom a { color: var(--white-dim); margin-left: 1.5rem; }
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--gold-gradient);
  border: none;
  border-radius: 50%;
  color: var(--bg-primary);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(212,168,67,0.3); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 160px 5% 80px;
  text-align: center;
  background: var(--bg-primary);
  border-bottom: 1px solid #1a1a1a;
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { max-width: 600px; margin: 0 auto; color: var(--white-dim); font-size: 1.05rem; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-story-image {
  width: 100%; height: 400px;
  background: var(--bg-tertiary);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-dim);
  font-size: 0.85rem;
}
.about-story-text h2 { margin-bottom: 1.5rem; }

.founder-section {
  background: var(--bg-secondary);
}
.founder-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.founder-photo {
  width: 300px; height: 380px;
  background: var(--bg-tertiary);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-dim);
  font-size: 0.85rem;
}
.founder-text h3 { margin-bottom: 0.5rem; }
.founder-title {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: block;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.team-card { text-align: center; }
.team-photo {
  width: 100%; height: 260px;
  background: var(--bg-tertiary);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-dim);
  font-size: 0.8rem;
}
.team-card h4 { margin-bottom: 0.25rem; }
.team-card p { color: var(--gold); font-size: 0.85rem; }

/* Timeline */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 15px; top: 0; bottom: 0;
  width: 1px;
  background: #2a2a2a;
}
.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -30px; top: 5px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg-primary);
}
.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.timeline-item h4 { margin-bottom: 0.5rem; }
.timeline-item p { font-size: 0.92rem; }

/* Awards */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.award-card {
  background: var(--bg-card);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}
.award-card .award-icon { font-size: 2rem; margin-bottom: 1rem; }
.award-card h4 { margin-bottom: 0.5rem; }
.award-card p { font-size: 0.88rem; color: var(--white-dim); }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.value-card {
  padding: 2rem;
  border-left: 2px solid var(--gold);
}
.value-card h4 { color: var(--gold); margin-bottom: 0.75rem; }
.value-card p { font-size: 0.92rem; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-detail {
  border-bottom: 1px solid #1a1a1a;
}
.service-detail:nth-child(even) { background: var(--bg-secondary); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.service-detail h2 { margin-bottom: 1rem; }
.service-detail-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: rgba(212,168,67,0.15);
  margin-bottom: 0.5rem;
  display: block;
}
.process-steps { margin-top: 2rem; }
.process-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.step-num {
  width: 30px; height: 30px;
  min-width: 30px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--bg-primary);
}
.step-text h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.step-text p { font-size: 0.88rem; margin-bottom: 0; }

.deliverables h4 { color: var(--gold); margin-bottom: 1rem; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.deliverables li {
  padding: 0.6rem 0;
  border-bottom: 1px solid #1a1a1a;
  font-size: 0.92rem;
  color: var(--white-muted);
  padding-left: 1.2rem;
  position: relative;
}
.deliverables li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

@media (max-width: 768px) {
  .service-detail-grid,
  .about-story,
  .founder-grid { grid-template-columns: 1fr; }
  .founder-photo { width: 100%; }
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition);
}
.portfolio-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}
.portfolio-card-image {
  width: 100%; height: 220px;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-dim);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.portfolio-card-body { padding: 1.5rem; }
.portfolio-card h3 { margin-bottom: 0.5rem; }
.portfolio-card .industry-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.portfolio-card p { font-size: 0.9rem; margin-bottom: 1rem; }
.portfolio-card .view-case { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }

/* Case study detail */
.case-study {
  border-bottom: 1px solid #1a1a1a;
}
.case-study:nth-child(even) { background: var(--bg-secondary); }
.case-study-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid #2a2a2a;
  padding-bottom: 1.5rem;
}
.case-study-header h2 { margin-bottom: 0.5rem; }
.case-study-header .industry-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
}
.case-study-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.case-study-content h4 {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.case-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.case-result {
  background: var(--bg-tertiary);
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  padding: 1.25rem;
  text-align: center;
}
.case-result .metric {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.25rem;
}
.case-result .metric-label {
  font-size: 0.78rem;
  color: var(--white-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .case-study-content { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--gold);
  transform: scale(1.03);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 18px;
  border-radius: 20px;
}
.pricing-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-5px); }
.pricing-card h3 { margin-bottom: 0.5rem; }
.pricing-label {
  font-size: 0.8rem;
  color: var(--white-dim);
  margin-bottom: 1.5rem;
  display: block;
}
.pricing-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.pricing-amount span { font-size: 1rem; color: var(--white-dim); }
.pricing-period { font-size: 0.85rem; color: var(--white-dim); margin-bottom: 2rem; }
.pricing-features {
  text-align: left;
  margin-bottom: 2rem;
}
.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #1a1a1a;
  font-size: 0.9rem;
  color: var(--white-muted);
  padding-left: 1.5rem;
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.85rem;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #2a2a2a;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question:hover { color: var(--gold); }
.faq-question .faq-icon {
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform var(--transition);
  min-width: 24px;
  text-align: center;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}
.faq-answer p { font-size: 0.92rem; color: var(--white-dim); }

/* Payment terms */
.payment-terms {
  background: var(--bg-card);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 2.5rem;
  max-width: 800px;
  margin: 3rem auto 0;
}
.payment-terms h3 { margin-bottom: 1.5rem; }
.payment-terms li {
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: var(--white-muted);
  border-bottom: 1px solid #1a1a1a;
  padding-left: 1.2rem;
  position: relative;
}
.payment-terms li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-info-block {
  margin-bottom: 2.5rem;
}
.contact-info-block h4 {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.contact-info-block p { font-size: 0.95rem; }
.contact-info-block a { color: var(--white-muted); }
.contact-info-block a:hover { color: var(--gold); }
.contact-social { display: flex; gap: 1rem; margin-top: 0.5rem; }
.contact-social a {
  width: 40px; height: 40px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-dim);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.contact-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Forms */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white-dim);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-tertiary);
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-tertiary); }
.form-error {
  font-size: 0.8rem;
  color: #e74c3c;
  margin-top: 0.4rem;
  display: none;
}
.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: #e74c3c; }
.form-group.error .form-error { display: block; }
.form-success {
  background: rgba(212,168,67,0.1);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 1.5rem;
  text-align: center;
  display: none;
  margin-top: 1rem;
}
.form-success.show { display: block; }
.form-success p { color: var(--gold); font-size: 1rem; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================
   LEGAL PAGES (Privacy, Terms)
   ============================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
}
.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.legal-content p { font-size: 0.92rem; margin-bottom: 1rem; }
.legal-content ul { margin-bottom: 1rem; padding-left: 1.5rem; }
.legal-content ul li {
  font-size: 0.92rem;
  color: var(--white-muted);
  margin-bottom: 0.4rem;
  position: relative;
  padding-left: 1rem;
}
.legal-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.legal-content a { text-decoration: underline; }

/* ============================================
   CAREERS PAGE
   ============================================ */
.positions-list { max-width: 800px; margin: 0 auto; }
.position-card {
  background: var(--bg-card);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}
.position-card h3 { margin-bottom: 0.5rem; }
.position-meta {
  font-size: 0.82rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  display: block;
}
.position-card h4 {
  font-size: 0.9rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
}
.position-card li {
  font-size: 0.9rem;
  color: var(--white-muted);
  margin-bottom: 0.4rem;
  padding-left: 1rem;
  position: relative;
}
.position-card li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.careers-form {
  max-width: 600px;
  margin: 0 auto;
}
.file-upload {
  border: 1px dashed #2a2a2a;
  border-radius: 6px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition);
}
.file-upload:hover { border-color: var(--gold); }
.file-upload p { font-size: 0.9rem; color: var(--white-dim); margin: 0; }
.file-upload input[type="file"] { display: none; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   MISC
   ============================================ */
.bg-secondary { background: var(--bg-secondary); }
.bg-primary { background: var(--bg-primary); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
}

.culture-text h3 { margin-bottom: 1rem; }
.culture-text p { margin-bottom: 1rem; }
