/* ============================================================
   RESUMESTUDIO — TopCV-style minimalist career service
   White page · azure accent · rounded panels · pill buttons
   Type: Plus Jakarta Sans
   ============================================================ */

:root {
  --white: #ffffff;
  --azure: #0c9384;
  --azure-deep: #0a7265;
  --sky: #a5e3d8;
  --tint: #e7f6f2;
  --tint-2: #f4fbf9;
  --navy: #123f38;
  --navy-deep: #0d312c;
  --ink: #16211e;
  --grey: #586b66;
  --grey-soft: #8ba39c;
  --line: #e0efe9;
  --radius: 24px;
  --sans: "Plus Jakarta Sans", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 5rem; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }
::selection { background: var(--sky); color: var(--ink); }
:focus-visible { outline: 2px solid var(--azure); outline-offset: 3px; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2.5rem); }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 16px rgba(22, 33, 30, 0.07); }
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.9rem clamp(1.1rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo svg { width: 40px; height: 26px; display: block; }
.logo .word { font-weight: 800; font-size: 1.18rem; letter-spacing: -0.02em; }
.logo .word span { color: var(--azure); }
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--azure); }
.pill {
  display: inline-block;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  text-align: center;
  color: var(--white);
  background: var(--azure);
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.7rem;
  cursor: pointer;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
}
.pill:hover { background: var(--azure-deep); transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(12, 147, 132, 0.5); }
.nav .pill { padding: 0.7rem 1.45rem; font-size: 0.9rem; }
.nav-contact { color: var(--azure) !important; font-weight: 700 !important; }

/* ---------- hero panel ---------- */
.hero-outer { padding: 0; }
.hero { position: relative; }
.hero-grid::before {
  content: "";
  position: absolute;
  right: -60px;
  top: 10px;
  width: 460px;
  height: 440px;
  border-radius: 56px;
  background: linear-gradient(150deg, #ddf2ec, var(--tint-2));
  transform: rotate(7deg);
  z-index: -1;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2.6rem, 6vw, 5rem) clamp(1.4rem, 5vw, 4.5rem);
}
.hero h1 {
  font-weight: 500;
  font-size: clamp(2.3rem, 5.4vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.hero h1 b { font-weight: 800; color: var(--azure); }
.hero-lede { margin-top: 1.4rem; max-width: 44ch; color: var(--grey); font-size: 1.08rem; }
.hero-opts { margin-top: 2.2rem; display: grid; gap: 0.9rem; }
.opt-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 1.05rem 1.3rem;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
}
.opt-card:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 12px 28px -14px rgba(22, 33, 30, 0.25); }
.opt-card h3 { font-size: 1.02rem; font-weight: 700; }
.opt-card p { font-size: 0.85rem; color: var(--grey); margin-top: 0.15rem; }
.opt-card .arrow { color: var(--azure); font-weight: 800; font-size: 1.1rem; flex-shrink: 0; }

.chips { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.7rem; }
.chip {
  background: var(--tint-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--grey);
}
.chip b { color: var(--azure-deep); }

/* hero review card */
.review-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 60px -24px rgba(22, 33, 30, 0.28);
  padding: 1.4rem;
}
.dropzone {
  border: 1.5px dashed #b3ded4;
  border-radius: 12px;
  padding: 2rem 1.4rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.22s, background 0.22s, padding-top 0.4s;
}
.dropzone:hover { border-color: var(--azure); background: var(--tint-2); }
.dropzone b { display: block; font-size: 1.02rem; font-weight: 700; max-width: 26ch; margin: 0 auto 0.4rem; }
.dropzone span { font-size: 0.86rem; color: var(--grey-soft); }
.review-card .pill { display: block; width: 100%; margin-top: 1.1rem; padding: 0.95rem; font-size: 1rem; }
.review-note { margin-top: 0.9rem; text-align: center; font-size: 0.78rem; color: var(--grey-soft); }
.review-note b { color: var(--ink); }

#dz-fx {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s;
}
#dz-fx.on { opacity: 1; }
.dz-quiet b, .dz-quiet span { opacity: 0.12; transition: opacity 0.3s; }
.dropzone.dz-done { padding-top: 4.6rem; border-style: solid; border-color: var(--line); }

/* ---------- hired-at strip ---------- */
.strip { padding: 1.9rem 0 0.6rem; }
.strip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.9rem 2rem;
}
.strip-label { font-size: 0.85rem; color: var(--grey-soft); }
.strip-row .sector {
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  color: #b0c4bd;
  white-space: nowrap;
}

/* ---------- reveal ---------- */
.rv { opacity: 0; transform: translateY(24px); transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.rv.in { opacity: 1; transform: none; }

/* ---------- generic section ---------- */
.sec { padding: clamp(3.4rem, 7vw, 5.5rem) 0; }
.sec-title {
  text-align: center;
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  letter-spacing: -0.025em;
  max-width: 24ch;
  margin: 0 auto;
}
.sec-title b { font-weight: 800; color: var(--azure); }
.sec-sub { text-align: center; color: var(--grey); max-width: 56ch; margin: 1rem auto 0; }

/* ---------- steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: clamp(2.2rem, 5vw, 3.4rem); }
.step-card {
  background: var(--tint-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.9rem 1.7rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px -20px rgba(22, 33, 30, 0.25); }
.step-num {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--azure);
  color: var(--white);
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}
.step-card:nth-child(2) .step-num { background: var(--navy); }
.step-card:nth-child(3) .step-num { background: var(--sky); color: var(--navy); }
.step-card h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 0.45rem; }
.step-card p { font-size: 0.93rem; color: var(--grey); }

/* ---------- testimonials ---------- */
.quotes { background: var(--tint-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quote-track { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; margin-top: clamp(2rem, 5vw, 3rem); }
.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.8rem 1.7rem;
}
.quote-card .stars { color: #00b67a; letter-spacing: 0.1em; font-size: 0.9rem; margin-bottom: 0.8rem; }
.quote-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.quote-card p { font-size: 0.95rem; color: var(--grey); margin-bottom: 1rem; }
.quote-card .who { font-size: 0.82rem; color: var(--grey-soft); }
.dots { display: flex; justify-content: center; gap: 0.45rem; margin-top: 1.8rem; }
.dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: #c3e2d9;
  cursor: pointer;
  transition: width 0.25s, background 0.25s;
}
.dots button.on { width: 22px; border-radius: 99px; background: var(--azure); }

/* ---------- navy band ---------- */
.band { padding: 0.6rem clamp(0.6rem, 1.5vw, 1.1rem); }
.band-inner {
  background:
    radial-gradient(80% 120% at 90% 0%, rgba(12, 147, 132, 0.28), transparent 55%),
    var(--navy);
  border-radius: var(--radius);
  color: var(--white);
  padding: clamp(3rem, 6vw, 4.6rem) clamp(1.4rem, 5vw, 4rem);
  text-align: center;
}
.band-inner h2 { font-weight: 500; font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -0.02em; }
.band-inner h2 b { font-weight: 800; color: var(--sky); }
.band-inner > p { color: #b8d2ca; max-width: 54ch; margin: 1rem auto 0; }
.band-feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.6rem; text-align: left; }
.band-feat { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 1.3rem 1.4rem; }
.band-feat b { display: block; font-size: 0.98rem; margin-bottom: 0.3rem; color: var(--white); }
.band-feat span { font-size: 0.87rem; color: #b8d2ca; }
.band-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  text-align: left;
}
.band-copy h2 { text-align: left; }
.band-copy > p { color: #b8d2ca; margin: 1rem 0 1.8rem; max-width: 48ch; }
.band-copy .pill { background: var(--azure); }
.band-copy .pill:hover { background: var(--white); color: var(--navy); }
.band-photo {
  width: 100%;
  border-radius: 16px;
  display: block;
  box-shadow: 0 24px 50px -22px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.band-inner .band-feats { margin-top: 2.8rem; }

/* ---------- the sitting ---------- */
.sitting-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.sitting-photo {
  width: 100%;
  border-radius: 18px;
  display: block;
  box-shadow: 0 24px 48px -26px rgba(22, 33, 30, 0.4);
}

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: clamp(2.2rem, 5vw, 3.2rem); align-items: stretch; }
.price-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  background: var(--white);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(22, 33, 30, 0.28); }
.price-card.hot { border: 2px solid var(--azure); box-shadow: 0 18px 44px -20px rgba(12, 147, 132, 0.32); }
.hot-flag {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--azure);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 99px;
  padding: 0.32rem 0.95rem;
  white-space: nowrap;
}
.price-tier { font-weight: 800; font-size: 1.05rem; }
.price-amount { font-weight: 800; font-size: 2.5rem; letter-spacing: -0.03em; margin: 0.5rem 0 0.2rem; }
.price-amount sup { font-size: 0.45em; font-weight: 700; color: var(--grey-soft); }
.price-desc { font-size: 0.88rem; color: var(--grey); margin-bottom: 1.3rem; }
.price-list { list-style: none; flex: 1; margin-bottom: 1.6rem; display: grid; gap: 0.55rem; align-content: start; }
.price-list li { font-size: 0.9rem; color: var(--ink); display: flex; gap: 0.6rem; align-items: baseline; }
.price-list li::before { content: "✓"; color: var(--azure); font-weight: 800; }
.price-card .pill { width: 100%; }
.price-card:not(.hot) .pill { background: var(--tint); color: var(--azure-deep); }
.price-card:not(.hot) .pill:hover { background: var(--azure); color: var(--white); }

/* ---------- faq ---------- */
.faq-list { max-width: 700px; margin: clamp(2rem, 5vw, 3rem) auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0.2rem;
  font-weight: 700;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 10px; height: 10px;
  border-right: 2px solid var(--azure);
  border-bottom: 2px solid var(--azure);
  transform: rotate(45deg);
  transition: transform 0.25s;
  flex-shrink: 0;
  margin-right: 0.3rem;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-a { padding: 0 2rem 1.3rem 0.2rem; color: var(--grey); font-size: 0.95rem; }

/* ---------- closing cta ---------- */
.closing { text-align: center; padding-bottom: clamp(4rem, 8vw, 6rem); }
.closing .pill { margin-top: 1.8rem; padding: 1rem 2.4rem; font-size: 1.02rem; }

/* ---------- footer ---------- */
footer { background: var(--navy-deep); color: #a7c0b8; padding: 2.6rem 0; }
.foot-grid { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.2rem; }
.foot-grid .logo .word { color: var(--white); }
.foot-links { display: flex; gap: 1.6rem; flex-wrap: wrap; font-size: 0.86rem; }
.foot-links a { text-decoration: none; }
.foot-links a:hover { color: var(--sky); }
.foot-note { font-size: 0.78rem; margin-top: 1.4rem; color: #7b9a90; }

/* ---------- guide ---------- */
.guide-main { padding: 3.4rem 0 4.5rem; }
.prose { max-width: 70ch; }
.prose h1 { font-weight: 800; font-size: clamp(1.9rem, 4.4vw, 2.8rem); letter-spacing: -0.03em; margin-bottom: 1.4rem; }
.prose h1 span { color: var(--azure); }
.prose h2 { font-weight: 800; font-size: 1.35rem; letter-spacing: -0.02em; margin: 2.2rem 0 0.7rem; }
.prose p, .prose li { color: var(--grey); }
.prose p { margin-bottom: 1rem; }
.prose ul { margin: 0 0 1rem 1.3rem; }
.prose li { margin-bottom: 0.4rem; }
.prose code { font-family: Consolas, monospace; font-size: 0.86em; background: var(--tint-2); border: 1px solid var(--line); border-radius: 5px; padding: 0.08em 0.4em; color: var(--azure-deep); }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .band-grid { grid-template-columns: 1fr; }
  .sitting-grid { grid-template-columns: 1fr; }
  .sitting-photo { order: 2; }
  .steps-grid { grid-template-columns: 1fr; }
  .quote-track { grid-template-columns: 1fr; }
  .band-feats { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .nav-links a:not(.pill) { display: none; }
  .strip-row { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .rv { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
