/* ══════════════════════════════════════════════════════════════
   IMAGE MASTERS — Main Stylesheet
   Mobile-first responsive design
   ══════════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
  /* Brand */
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-2: #1a1a1a;
  --surface-3: #222;
  --gold: #C9A96E;
  --gold-dim: #a8884d;
  --gold-glow: rgba(201,169,110,0.12);
  --gold-glow-strong: rgba(201,169,110,0.2);
  --text: #e0e0e0;
  --text-dim: #999;
  --text-bright: #fff;
  --green: #4ade80;
  --red: #f87171;
  --blue: #4a9eff;
  --border: #2a2a2a;
  --border-light: #333;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 32px;
  --space-xl: 64px;
  --space-2xl: 96px;

  /* Typography */
  --text-xs: clamp(0.75rem, 0.7rem + 0.15vw, 0.8rem);
  --text-sm: clamp(0.85rem, 0.8rem + 0.15vw, 0.9rem);
  --text-base: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  --text-lg: clamp(1.1rem, 1rem + 0.4vw, 1.25rem);
  --text-xl: clamp(1.3rem, 1.1rem + 0.7vw, 1.6rem);
  --text-2xl: clamp(1.6rem, 1.2rem + 1.2vw, 2.2rem);
  --text-3xl: clamp(2rem, 1.4rem + 1.8vw, 3rem);
  --text-hero: clamp(2.2rem, 1.4rem + 2.5vw, 3.8rem);

  /* Layout */
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --max-width: 1200px;
  --nav-height: 72px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── Font Face ── */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-var-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ── Base ── */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: var(--text-base);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--text-bright); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--space-xl) 0;
}

.gold { color: var(--gold); }

/* ══════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
  height: var(--nav-height);
}

.nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav.hidden { transform: translateY(-100%); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo { display: flex; align-items: center; gap: 8px; }
.nav-logo-text {
  font-size: 1.3em;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-bright);
}

.nav-links {
  display: none;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-link {
  color: var(--text-dim);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--text-bright); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.nav-cta { display: none; }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
  border-radius: 1px;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  padding: var(--space-lg) 20px;
  overflow-y: auto;
  z-index: 999;
}
.nav-mobile.open { display: block; }
.nav-mobile-links { list-style: none; }
.nav-mobile-link {
  display: block;
  padding: 16px 0;
  color: var(--text);
  font-size: var(--text-lg);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-link.active { color: var(--gold); }
.nav-mobile-cta { display: block; margin-top: var(--space-lg); text-align: center; }

/* Desktop nav */
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .container { padding: 0 40px; }
}

/* ══════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
}
.btn-gold:hover {
  background: var(--text-bright);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201,169,110,0.3);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--bg);
}

.btn-lg { padding: 16px 36px; font-size: var(--text-base); }
.btn-sm { padding: 8px 20px; font-size: var(--text-xs); }
.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ══════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 40px) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,169,110,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-headline {
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-bright);
  margin-bottom: var(--space-md);
  letter-spacing: -0.5px;
}

.hero-headline .gold-line {
  display: block;
  color: var(--gold);
}

.hero-sub {
  font-size: var(--text-lg);
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-proof {
  margin-top: var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.hero-stat {
  text-align: left;
}
.hero-stat-number {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: var(--text-xs);
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ══════════════════════════════════════
   SECTIONS — General
   ══════════════════════════════════════ */
.section-label {
  font-size: var(--text-xs);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.section-headline {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--text-bright);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.section-sub {
  font-size: var(--text-base);
  color: var(--text-dim);
  max-width: 650px;
  margin-bottom: var(--space-lg);
}

.section-dark { background: var(--surface); }
.section-darker { background: var(--bg); }
.section-gold-glow { background: linear-gradient(180deg, var(--bg) 0%, rgba(201,169,110,0.04) 50%, var(--bg) 100%); }

/* ══════════════════════════════════════
   PAIN CARDS (Problem Section)
   ══════════════════════════════════════ */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.3s, transform 0.2s;
}
.pain-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-2px);
}
.pain-card-icon {
  font-size: 1.8em;
  margin-bottom: 12px;
}
.pain-card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 8px;
}
.pain-card p {
  font-size: var(--text-sm);
  color: var(--text-dim);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════
   COST SECTION (Split Layout)
   ══════════════════════════════════════ */
.cost-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.cost-column h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}

.cost-item {
  margin-bottom: var(--space-md);
}
.cost-item h4 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 4px;
}
.cost-item p {
  font-size: var(--text-sm);
  color: var(--text-dim);
}

@media (min-width: 768px) {
  .cost-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════
   PROCESS STEPS
   ══════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: var(--space-lg) 0;
}

.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  position: relative;
}
.process-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1em;
  margin: 0 auto 14px;
}
.process-step h3 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 8px;
}
.process-step p {
  font-size: var(--text-sm);
  color: var(--text-dim);
}

@media (min-width: 768px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); }
}

/* ══════════════════════════════════════
   DELIVERABLES GRID
   ══════════════════════════════════════ */
.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.deliverable-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
}
.deliverable-card:hover {
  border-color: var(--gold-dim);
  background: var(--surface-2);
}
.deliverable-icon {
  font-size: 2em;
  margin-bottom: 14px;
}
.deliverable-card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 8px;
}
.deliverable-card p {
  font-size: var(--text-sm);
  color: var(--text-dim);
  margin-bottom: 14px;
}
.deliverable-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold);
}

@media (min-width: 768px) {
  .deliverables-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .deliverables-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════════════
   CASE STUDY SNAPSHOT
   ══════════════════════════════════════ */
.case-snapshot {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.case-snapshot::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dim));
}
.case-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: var(--space-lg) 0;
}
.case-stat {
  text-align: center;
  padding: 16px;
  background: var(--surface-2);
  border-radius: var(--radius);
}
.case-stat-val {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--gold);
}
.case-stat-label {
  font-size: var(--text-xs);
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

@media (min-width: 768px) {
  .case-stats { grid-template-columns: repeat(4, 1fr); }
}

/* ══════════════════════════════════════
   VISION SECTION
   ══════════════════════════════════════ */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.vision-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.vision-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-glow);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
  flex-shrink: 0;
}
.vision-item h3 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 4px;
}
.vision-item p {
  font-size: var(--text-sm);
  color: var(--text-dim);
}

@media (min-width: 768px) {
  .vision-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════
   PACKAGE CARDS
   ══════════════════════════════════════ */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}

.package-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all 0.3s;
}
.package-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--gold-glow-strong) 0%, var(--surface) 40%);
}

.package-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.package-name {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 2px;
}
.package-tagline {
  font-size: var(--text-sm);
  color: var(--text-dim);
  margin-bottom: 16px;
}

.package-price {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--text-bright);
  line-height: 1;
}
.package-price-currency {
  font-size: 0.5em;
  vertical-align: super;
  color: var(--text-dim);
}
.package-price-period {
  display: block;
  font-size: var(--text-xs);
  color: var(--text-dim);
  font-weight: 400;
  margin-bottom: 20px;
}

.package-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}
.package-features li {
  padding: 8px 0;
  font-size: var(--text-sm);
  color: var(--text);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.package-features li:last-child { border-bottom: none; }
.package-check { color: var(--green); flex-shrink: 0; font-weight: 700; }
.package-x { color: var(--text-dim); flex-shrink: 0; }

@media (min-width: 768px) {
  .packages-grid { grid-template-columns: repeat(3, 1fr); }
  .package-card.featured { transform: scale(1.03); }
}

/* ══════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.testimonial-quote {
  font-size: var(--text-base);
  color: var(--text);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
  position: relative;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}
.testimonial-author {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-bright);
}
.testimonial-business {
  font-size: var(--text-xs);
  color: var(--text-dim);
}
.testimonial-stars {
  color: var(--gold);
  font-size: var(--text-sm);
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════════════
   CTA BLOCK
   ══════════════════════════════════════ */
.cta-block {
  padding: var(--space-2xl) 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(201,169,110,0.06) 50%, var(--bg) 100%);
}
.cta-headline {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: var(--space-md);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cta-sub {
  font-size: var(--text-base);
  color: var(--text-dim);
  margin-bottom: var(--space-lg);
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════
   PULL QUOTE
   ══════════════════════════════════════ */
.pull-quote {
  background: var(--surface);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  margin: var(--space-lg) 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: var(--text-lg);
  color: var(--text);
  font-style: italic;
  line-height: 1.7;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: var(--space-lg);
}

.footer-tagline {
  color: var(--text-dim);
  font-size: var(--text-sm);
  margin-top: 12px;
  max-width: 300px;
}

.footer-heading {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-bright);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: var(--text-dim);
  font-size: var(--text-sm);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-text {
  color: var(--text-dim);
  font-size: var(--text-sm);
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: var(--text-xs);
  color: var(--text-dim);
}

.footer-location { color: var(--text-dim); }

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ══════════════════════════════════════
   MOBILE CTA BAR
   ══════════════════════════════════════ */
.mobile-cta-bar {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  z-index: 998;
}
.mobile-cta-btn { width: 100%; }

@media (min-width: 1024px) {
  .mobile-cta-bar { display: none; }
}

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════ */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > .animate-in:nth-child(1) { transition-delay: 0s; }
.stagger > .animate-in:nth-child(2) { transition-delay: 0.1s; }
.stagger > .animate-in:nth-child(3) { transition-delay: 0.2s; }
.stagger > .animate-in:nth-child(4) { transition-delay: 0.3s; }
.stagger > .animate-in:nth-child(5) { transition-delay: 0.4s; }
.stagger > .animate-in:nth-child(6) { transition-delay: 0.5s; }

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .animate-in { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ══════════════════════════════════════
   UTILITY CLASSES
   ══════════════════════════════════════ */
.text-center { text-align: center; }
.text-dim { color: var(--text-dim); }
.text-gold { color: var(--gold); }
.text-bright { color: var(--text-bright); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-lg { margin-bottom: var(--space-lg); }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-md { max-width: 650px; }
.max-w-sm { max-width: 480px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ══════════════════════════════════════
   PROCESS DETAIL (How It Works page)
   ══════════════════════════════════════ */
.process-detail {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  overflow: hidden;
}
.process-detail-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}
.process-detail-header .process-step-num {
  margin: 0;
  flex-shrink: 0;
}
.process-detail-title {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--text-bright);
}
.process-detail-sub {
  font-size: var(--text-sm);
  color: var(--text-dim);
  margin-top: 2px;
}
.process-detail-body {
  padding: 24px 28px;
  color: var(--text);
  line-height: 1.7;
}
.process-detail-body p {
  font-size: var(--text-base);
}
.process-detail-outputs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-md);
}
.process-output-tag {
  background: var(--gold-glow);
  color: var(--gold);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: var(--text-xs);
  font-weight: 600;
}

/* ══════════════════════════════════════
   DELIVERABLE DETAIL (What You Get page)
   ══════════════════════════════════════ */
.deliverable-detail {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.deliverable-detail-icon {
  font-size: 2.8em;
  flex-shrink: 0;
  line-height: 1;
}
.deliverable-detail-content {
  flex: 1;
}
.deliverable-includes {
  list-style: none;
  margin: var(--space-md) 0;
}
.deliverable-includes li {
  padding: 6px 0;
  font-size: var(--text-sm);
  color: var(--text);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.deliverable-includes li::before {
  content: '\2713';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .deliverable-detail {
    flex-direction: column;
    gap: 12px;
  }
}

/* ══════════════════════════════════════
   FAQ ACCORDION (Packages page)
   ══════════════════════════════════════ */
.faq-list {
  margin-top: var(--space-lg);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-bright);
  transition: color 0.2s;
  gap: 16px;
}
.faq-question:hover { color: var(--gold); }
.faq-toggle {
  font-size: 1.4em;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: var(--text-sm);
  color: var(--text-dim);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════ */
.about-story-content {
  max-width: 750px;
}
.about-story-content p {
  font-size: var(--text-base);
  color: var(--text);
  line-height: 1.8;
}

/* ══════════════════════════════════════
   BOOKING PAGE
   ══════════════════════════════════════ */
.book-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 1024px) {
  .book-layout { grid-template-columns: 1.2fr 1fr; }
}

/* Form styles */
.form-group { margin-bottom: var(--space-md); }
.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: inherit;
  font-size: var(--text-base);
  color: var(--text-bright);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-input::placeholder { color: var(--text-dim); opacity: 0.6; }
.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-textarea { resize: vertical; min-height: 100px; }
select.form-input { cursor: pointer; }

/* Booking expect items */
.book-expect-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}
.book-expect-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-glow);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.book-success {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

/* ══════════════════════════════════════
   BLOG LISTING
   ══════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.2s;
  overflow: hidden;
}
.blog-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-2px);
}
.blog-card-content { padding: 28px; }
.blog-card-date {
  font-size: var(--text-xs);
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-card-title {
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: 1.3;
  margin: 8px 0 10px;
}
.blog-card-title a { color: var(--text-bright); }
.blog-card-title a:hover { color: var(--gold); }
.blog-card-excerpt {
  font-size: var(--text-sm);
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════
   BLOG POST (single)
   ══════════════════════════════════════ */
.blog-post-header {
  padding: calc(var(--nav-height) + 60px) 0 var(--space-lg);
}
.blog-back-link {
  display: inline-block;
  font-size: var(--text-sm);
  color: var(--text-dim);
  margin-bottom: var(--space-md);
  transition: color 0.2s;
}
.blog-back-link:hover { color: var(--gold); }
.blog-post-title {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--text-bright);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}
.blog-post-meta {
  font-size: var(--text-sm);
  color: var(--text-dim);
}
.blog-meta-sep {
  margin: 0 8px;
  opacity: 0.4;
}
.blog-post-body {
  padding: var(--space-lg) 0 var(--space-xl);
}
.blog-content {
  font-size: var(--text-base);
  color: var(--text);
  line-height: 1.85;
}
.blog-content h2 {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--text-bright);
  margin: 2em 0 0.6em;
}
.blog-content h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-bright);
  margin: 1.5em 0 0.5em;
}
.blog-content p { margin-bottom: 1.2em; }
.blog-content ul, .blog-content ol {
  margin: 1em 0 1.5em 1.5em;
}
.blog-content li {
  margin-bottom: 0.5em;
  line-height: 1.7;
}
.blog-content blockquote {
  background: var(--surface);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  margin: 1.5em 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text);
}
.blog-content strong { color: var(--text-bright); }
.blog-content a { color: var(--gold); }
.blog-content a:hover { color: var(--text-bright); }

/* ══════════════════════════════════════
   CASE STUDY PREVIEW (read-only samples)
   ══════════════════════════════════════ */
.cs-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: var(--space-lg) 0;
}
.cs-preview-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
}
.cs-preview-card::after {
  content: 'Preview';
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--gold-glow);
  color: var(--gold);
  font-size: 0.6em;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cs-preview-type {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.cs-preview-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 8px;
}
.cs-preview-body {
  font-size: var(--text-sm);
  color: var(--text-dim);
  line-height: 1.6;
}
.cs-preview-body p { margin-bottom: 6px; }
.cs-preview-slide {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 6px;
  font-size: var(--text-sm);
  color: var(--text);
}
.cs-preview-slide-num {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--gold);
  margin-right: 8px;
}

@media (min-width: 768px) {
  .cs-preview-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Case study gallery cards */
.cs-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.cs-gallery-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.2s;
}
.cs-gallery-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
}
.cs-gallery-card-body { padding: 28px; }
.cs-gallery-industry {
  font-size: var(--text-xs);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 8px;
}
.cs-gallery-client {
  font-size: var(--text-sm);
  color: var(--text-dim);
  margin-bottom: 4px;
}
.cs-gallery-title {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 8px;
}
.cs-gallery-title a { color: var(--text-bright); }
.cs-gallery-title a:hover { color: var(--gold); }
.cs-gallery-summary {
  font-size: var(--text-sm);
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cs-gallery-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}
.cs-gallery-stat {
  text-align: center;
}
.cs-gallery-stat-value {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--gold);
}
.cs-gallery-stat-label {
  font-size: var(--text-xs);
  color: var(--text-dim);
}

@media (min-width: 768px) {
  .cs-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .cs-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════════════
   CASE STUDY DETAIL PAGE
   ══════════════════════════════════════ */
.cs-header {
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
  background: linear-gradient(180deg, rgba(201,169,110,0.04) 0%, var(--bg) 100%);
}
.cs-industry-tag {
  display: inline-block;
  font-size: var(--text-xs);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 12px;
}
.cs-title {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--text-bright);
  line-height: 1.2;
  margin-bottom: 12px;
}
.cs-client {
  font-size: var(--text-base);
  color: var(--text-dim);
}

.cs-stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-lg) 0;
}
.cs-stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.cs-stat { text-align: center; }
.cs-stat-value {
  display: block;
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--gold);
}
.cs-stat-label {
  font-size: var(--text-xs);
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cs-body {
  padding: var(--space-xl) 0;
}
.cs-content {
  line-height: 1.8;
  color: var(--text);
}
.cs-content h2 {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--text-bright);
  margin: var(--space-xl) 0 var(--space-md);
}
.cs-content h2:first-child { margin-top: 0; }
.cs-content h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-bright);
  margin: var(--space-lg) 0 var(--space-sm);
}
.cs-content p {
  margin-bottom: var(--space-md);
}
.cs-content ul, .cs-content ol {
  margin-bottom: var(--space-md);
  padding-left: 24px;
}
.cs-content li {
  margin-bottom: 6px;
}
.cs-content strong { color: var(--text-bright); }
.cs-content blockquote {
  background: var(--surface);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  margin: var(--space-lg) 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text);
}

/* Deliverable preview section within case study content */
.cs-content .cs-preview-grid {
  margin: var(--space-md) 0 var(--space-lg);
}

@media (min-width: 768px) {
  .cs-stats-row { gap: 48px; }
}

/* ── BOOKING CALENDAR ── */
.bc-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  width: 100%;
}

.bc-calendar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  width: 100%;
  max-width: 420px;
}

/* Header */
.bc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.bc-month-label {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-bright);
  letter-spacing: -0.01em;
}

.bc-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.bc-nav:hover {
  border-color: var(--gold-dim);
  color: var(--gold);
}

.bc-nav--disabled,
.bc-nav--disabled:hover {
  opacity: 0.25;
  cursor: default;
  border-color: var(--border);
  color: var(--text-dim);
}

/* Weekday headers */
.bc-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: var(--space-sm);
}

.bc-weekday {
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-xs) 0;
}

/* Day grid */
.bc-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.bc-day {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: default;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  padding: 0;
}

.bc-day--empty {
  visibility: hidden;
}

.bc-day--disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.bc-day--available {
  border-color: var(--border);
  cursor: pointer;
}

.bc-day--available:hover {
  border-color: var(--gold-dim);
  background: var(--gold-glow);
}

.bc-day--selected,
.bc-day--selected:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
  font-weight: 700;
}

.bc-day--today::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.bc-day--today.bc-day--selected::after {
  background: #0a0a0a;
}

/* Time slots */
.bc-slots {
  width: 100%;
  max-width: 420px;
}

.bc-slots-header {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: var(--space-md);
}

.bc-slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.bc-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px var(--space-md);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.bc-slot:hover {
  border-color: var(--gold-dim);
  background: var(--gold-glow);
}

.bc-slot--selected,
.bc-slot--selected:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
  font-weight: 700;
}

.bc-slots-empty {
  padding: var(--space-lg);
  text-align: center;
  color: var(--text-dim);
  font-size: var(--text-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.bc-slots-empty--error {
  color: var(--red);
  border-color: rgba(248, 113, 113, 0.2);
}

/* Loading spinner */
.bc-spinner-wrap {
  display: flex;
  justify-content: center;
  padding: var(--space-xl) 0;
}

.bc-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: bc-spin 0.7s linear infinite;
}

@keyframes bc-spin {
  to { transform: rotate(360deg); }
}

/* Summary */
.bc-summary {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--gold);
  padding: var(--space-md) 0;
}

/* Desktop layout */
@media (min-width: 768px) {
  .bc-wrap {
    flex-direction: row;
    align-items: flex-start;
  }

  .bc-slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .bc-slots-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Body padding for mobile CTA bar */
body { padding-bottom: 70px; }
@media (min-width: 1024px) { body { padding-bottom: 0; } }
