/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1c1c1c;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --accent: #d4a843;
  --accent-hover: #e6be5a;
  --accent-glow: rgba(212, 168, 67, 0.25);
  --gradient-gold: linear-gradient(135deg, #d4a843, #f0d078, #d4a843);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

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

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.header-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-cta {
  padding: 10px 28px;
  background: var(--accent);
  color: #0a0a0a;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.header-cta:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-1px);
}

/* ===== SECTIONS ===== */
section {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: 50px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-image {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin: 0 auto 40px;
  border: 3px solid rgba(212, 168, 67, 0.3);
  box-shadow: 0 0 60px rgba(212, 168, 67, 0.15);
  transition: var(--transition);
}

.hero-image:hover {
  border-color: var(--accent);
  box-shadow: 0 0 80px rgba(212, 168, 67, 0.25);
  transform: scale(1.03);
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero h1 .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 48px;
  font-weight: 300;
  line-height: 1.6;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 48px;
  background: var(--accent);
  color: #0a0a0a;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 40px var(--accent-glow);
  transform: translateY(-3px);
}

.btn-primary .arrow {
  transition: var(--transition);
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

/* ===== ABOUT ===== */
.about {
  padding-top: 140px;
  padding-bottom: 140px;
}

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

.about-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.15;
}

.about-text h2 .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-subtitle {
  font-size: 1.15rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 32px;
  line-height: 1.5;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-text p:last-of-type {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1.15rem;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4 / 5;
  filter: brightness(0.9) contrast(1.05);
  transition: var(--transition);
}

.about-image:hover {
  filter: brightness(1) contrast(1.05);
  transform: scale(1.01);
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  pointer-events: none;
}

/* ===== PROCESS ===== */
.process {
  background: var(--bg-secondary);
  border-radius: 32px;
  padding: 100px 60px;
  margin: 0 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.3), transparent);
}

.process-header {
  text-align: center;
  margin-bottom: 70px;
}

.process-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.process-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: var(--transition);
}

.process-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(212, 168, 67, 0.15);
  transform: translateY(-4px);
}

.process-card:hover::before {
  opacity: 1;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(212, 168, 67, 0.1);
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.process-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.process-card p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
}

.process-image-section {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.money-stack {
  position: relative;
  width: 320px;
  height: 200px;
  margin: 0 auto;
}

.money-bill {
  width: 280px;
  height: auto;
  border-radius: 8px;
  position: absolute;
  left: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.money-bill:nth-child(1) {
  transform: translateX(-50%) rotate(-6deg);
  z-index: 1;
}

.money-bill:nth-child(2) {
  transform: translateX(-50%) rotate(-2deg);
  z-index: 2;
}

.money-bill:nth-child(3) {
  transform: translateX(-50%) rotate(2deg);
  z-index: 3;
}

.money-bill:nth-child(4) {
  transform: translateX(-50%) rotate(6deg);
  z-index: 4;
}

.money-stack:hover .money-bill:nth-child(1) {
  transform: translateX(-50%) translateY(-15px) rotate(-12deg);
}

.money-stack:hover .money-bill:nth-child(2) {
  transform: translateX(-50%) translateY(-8px) rotate(-4deg);
}

.money-stack:hover .money-bill:nth-child(3) {
  transform: translateX(-50%) translateY(-8px) rotate(4deg);
}

.money-stack:hover .money-bill:nth-child(4) {
  transform: translateX(-50%) translateY(-15px) rotate(12deg);
}

/* ===== WORK WITH ME ===== */
.work-with-me {
  padding-top: 140px;
  padding-bottom: 140px;
}

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

.work-image-wrapper {
  position: relative;
}

.work-image {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  filter: brightness(0.9) contrast(1.05);
  transition: var(--transition);
}

.work-image:hover {
  filter: brightness(1) contrast(1.05);
}

.work-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  pointer-events: none;
}

.work-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  line-height: 1.15;
}

.work-step {
  margin-bottom: 36px;
  padding-left: 24px;
  border-left: 2px solid rgba(212, 168, 67, 0.2);
  transition: var(--transition);
}

.work-step:hover {
  border-left-color: var(--accent);
}

.work-step-number {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.work-step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.work-step p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ===== BOOKING ===== */
.booking {
  padding-top: 100px;
  padding-bottom: 100px;
}

.booking-header {
  text-align: center;
  margin-bottom: 60px;
}

.booking-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
}

.booking-header h2 .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.cal-embed-wrapper {
  max-width: 900px;
  margin: 0 auto 60px;
  background: var(--bg-secondary);
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  padding: 24px;
  min-height: 500px;
  overflow: hidden;
}

#my-cal-inline-discovery-call {
  width: 100%;
  min-height: 480px;
  overflow: auto;
  border-radius: var(--radius-sm);
}

.booking-closing {
  text-align: center;
  margin-top: 60px;
}

.booking-closing-image {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 32px;
  border: 3px solid rgba(212, 168, 67, 0.3);
  box-shadow: 0 0 50px rgba(212, 168, 67, 0.1);
  transition: var(--transition);
}

.booking-closing-image:hover {
  border-color: var(--accent);
  box-shadow: 0 0 70px rgba(212, 168, 67, 0.2);
}

.booking-closing h3 {
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer span {
  color: var(--accent);
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 {
  transition-delay: 0.1s;
}

.fade-up-delay-2 {
  transition-delay: 0.2s;
}

.fade-up-delay-3 {
  transition-delay: 0.3s;
}

.fade-up-delay-4 {
  transition-delay: 0.4s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .header {
    padding: 16px 20px;
  }

  section {
    padding: 80px 24px;
  }

  .about-grid,
  .work-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-wrapper {
    order: 1;
    /* Place image below text */
  }

  .about-image {
    aspect-ratio: auto;
    max-height: none;
    width: 100%;
    height: auto;
  }

  .process {
    margin: 0 16px;
    padding: 60px 24px;
    border-radius: 24px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .work-image-wrapper {
    order: -1;
  }

  .work-image {
    max-height: 350px;
  }

  .hero-image {
    width: 160px;
    height: 160px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .money-stack {
    width: 260px;
  }

  .money-bill {
    width: 220px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 10px 12px;
    width: 100%;
    margin: 0;
  }

  .header-logo {
    font-size: 1.15rem;
  }

  .header-cta {
    padding: 6px 14px;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  section {
    padding: 60px 20px;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-image {
    width: 140px;
    height: 140px;
  }

  .btn-primary {
    padding: 16px 36px;
    font-size: 1rem;
  }

  .process {
    margin: 0 8px;
    padding: 48px 18px;
  }

  .booking-closing-image {
    width: 200px;
    height: 200px;
  }
}