/* ============================================================
   HIREFLOWY — Landing Page
   Identidade visual extraída do design system ffr-ext
   ============================================================ */

:root {
  color-scheme: light;
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 16px;

  --ink: #14231b;
  --muted: #587060;
  --surface: #f8f7f2;
  --surface-strong: #ffffff;
  --border: rgba(20, 35, 27, 0.1);
  --border-strong: rgba(20, 35, 27, 0.16);
  --accent: #146c43;
  --accent-soft: #def3e6;
  --accent-strong: #0e5331;
  --premium: #8c4b14;
  --premium-soft: #fff0de;
  --premium-strong: #64330a;
  --shadow: 0 10px 26px rgba(16, 34, 22, 0.1);
  --shadow-lg: 0 20px 48px rgba(16, 34, 22, 0.14);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(213, 244, 224, 0.86), transparent 38%),
    radial-gradient(circle at top right, rgba(255, 232, 208, 0.54), transparent 34%),
    linear-gradient(180deg, #ebf3ee 0%, #f6f3ec 48%, #fcfbf7 100%);
  background-attachment: fixed;
}

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

img { display: block; }

/* ===== LAYOUT ===== */
.nav__inner,
.hero__inner,
.proof__inner,
.steps__inner,
.features__inner,
.resume-section__inner,
.faq__inner,
.cta__inner,
.footer__inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ===== TYPOGRAPHY ===== */
.eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-head {
  text-align: center;
  margin-bottom: 52px;
}

.section-title {
  margin: 0 0 14px;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-subtitle {
  margin: 0 auto;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: linear-gradient(135deg, var(--ink), #203b2b);
  color: #fff;
  box-shadow: 0 10px 24px rgba(20, 35, 27, 0.2);
}

.btn--primary:hover {
  box-shadow: 0 16px 32px rgba(20, 35, 27, 0.28);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border: 1px solid var(--border-strong);
  box-shadow: 0 4px 12px rgba(20, 35, 27, 0.08);
}

.btn--sm { padding: 8px 14px; font-size: 13px; border-radius: 10px; }
.btn--lg { padding: 15px 28px; font-size: 16px; border-radius: 14px; }

/* ===== BRAND ===== */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand__logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(20, 108, 67, 0.22);
}

.brand__text {
  display: grid;
  gap: 1px;
}

.brand__eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.1;
}

.brand__name {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.brand__tagline {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.2;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 10px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  padding-inline: 16px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.12s;
}

.nav__links a:hover { color: var(--ink); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 10px;
  background: rgba(20, 35, 27, 0.06);
  border: 1px solid var(--border);
}

.lang-btn {
  padding: 4px 9px;
  border-radius: 7px;
  border: none;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--muted);
  cursor: pointer;
  transition: background-color 0.14s, color 0.14s;
}

.lang-btn:hover { color: var(--ink); }

.lang-btn.is-active {
  background: var(--surface-strong);
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(20, 35, 27, 0.1);
}

@media (max-width: 680px) {
  .nav__links { display: none; }
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0 64px;
}

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

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__visual { order: -1; }
}

.hero__copy .eyebrow { margin-bottom: 16px; }

.hero__title {
  margin: 0 0 20px;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero__title em {
  font-style: normal;
  color: var(--accent);
}

.hero__subtitle {
  margin: 0 0 32px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 460px;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 35, 27, 0.08);
  box-shadow: 0 6px 16px rgba(16, 34, 22, 0.06);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero__note {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* ===== MOCKUP ===== */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.mockup {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.mockup__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.mockup__glow--green {
  width: 280px;
  height: 280px;
  top: -40px;
  left: -40px;
  background: rgba(20, 108, 67, 0.12);
}

.mockup__glow--gold {
  width: 200px;
  height: 200px;
  bottom: -20px;
  right: -20px;
  background: rgba(140, 75, 20, 0.1);
}

.mockup__dashboard {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.mockup__browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #f2f2f0;
  border-bottom: 1px solid var(--border);
}

.mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d9d9d5;
}

.mockup__dot:nth-child(1) { background: #ff6058; }
.mockup__dot:nth-child(2) { background: #ffbd2e; }
.mockup__dot:nth-child(3) { background: #29c940; }

.mockup__url {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  padding: 3px 10px;
}

.dashboard-preview {
  padding: 16px;
  display: grid;
  gap: 14px;
  background:
    radial-gradient(circle at top left, rgba(213, 244, 224, 0.64), transparent 52%),
    linear-gradient(180deg, #f0f6f2, #f8f6f0);
}

.dashboard-preview__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-preview__eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px;
}

.dashboard-preview__title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
}

.dashboard-preview__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(20, 108, 67, 0.12);
  color: var(--accent-strong);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-preview__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.dashboard-preview__metric {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(20, 35, 27, 0.08);
  box-shadow: 0 6px 18px rgba(16, 34, 22, 0.05);
  display: grid;
  gap: 6px;
}

.dashboard-preview__metric strong {
  font-size: 22px;
  line-height: 1;
}

.dashboard-preview__metric--highlight {
  background: linear-gradient(135deg, rgba(222, 243, 230, 0.9), rgba(255, 255, 255, 0.96));
}

.dashboard-preview__metric-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.dashboard-preview__board {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(180px, 1fr);
  gap: 12px;
}

.dashboard-preview__list,
.dashboard-preview__panel {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(20, 35, 27, 0.08);
  box-shadow: 0 8px 18px rgba(16, 34, 22, 0.06);
}

.dashboard-preview__list {
  display: grid;
  gap: 10px;
}

.dashboard-preview__list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
}

.dashboard-preview__action {
  padding: 7px 10px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, var(--ink), #203b2b);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.dashboard-preview__application {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  background: #fbfbf8;
  border: 1px solid rgba(20, 35, 27, 0.08);
}

.dashboard-preview__application-main {
  min-width: 0;
}

.dashboard-preview__application-role {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.dashboard-preview__application-company {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

.dashboard-preview__pill {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(20, 35, 27, 0.06);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.dashboard-preview__pill--active {
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.dashboard-preview__panel {
  display: grid;
  gap: 12px;
}

.dashboard-preview__panel-title {
  font-size: 12px;
  font-weight: 800;
}

.dashboard-preview__chart {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 90px;
}

.dashboard-preview__chart span {
  flex: 1;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, rgba(20, 108, 67, 0.22), rgba(20, 108, 67, 0.8));
}

.dashboard-preview__chart span:nth-child(1) { height: 70%; }
.dashboard-preview__chart span:nth-child(2) { height: 100%; }
.dashboard-preview__chart span:nth-child(3) { height: 54%; }
.dashboard-preview__chart span:nth-child(4) { height: 32%; }

.dashboard-preview__panel-note {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}

.mockup__extension {
  position: absolute;
  right: -18px;
  bottom: 32px;
  z-index: 2;
  width: min(240px, 46%);
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(20, 35, 27, 0.1);
  box-shadow: 0 18px 40px rgba(16, 34, 22, 0.18);
  backdrop-filter: blur(18px);
}

/* Popup preview components */
.popup-preview__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(16, 34, 22, 0.08);
}

.popup-preview__brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.popup-preview__eyebrow {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1;
}

.popup-preview__name {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
}

.popup-preview__composer {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(253, 253, 249, 0.94);
  border: 1px solid rgba(20, 35, 27, 0.08);
  box-shadow: 0 4px 10px rgba(16, 34, 22, 0.07);
  display: grid;
  gap: 8px;
}

.popup-preview__label {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.popup-preview__field {
  display: grid;
  gap: 2px;
}

.popup-preview__field-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.popup-preview__field-value {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
}

.popup-preview__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--ink), #203b2b);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}

.popup-preview__job {
  padding: 10px 12px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,249,245,0.95));
  border: 1px solid rgba(20, 35, 27, 0.08);
  box-shadow: 0 4px 10px rgba(16, 34, 22, 0.06);
  display: grid;
  gap: 6px;
}

.popup-preview__job-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.popup-preview__pill {
  padding: 3px 7px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.popup-preview__pill--open {
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.popup-preview__job-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.popup-preview__job-company {
  font-size: 11px;
  color: var(--muted);
}

.popup-preview__progress {
  height: 4px;
  border-radius: 999px;
  background: rgba(20, 35, 27, 0.08);
  overflow: hidden;
}

.popup-preview__progress-bar {
  height: 100%;
  width: 65%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #22a465);
  animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ===== PROOF ===== */
.proof {
  padding: 24px 0;
}

.proof__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-block: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--border);
  justify-content: center;
  flex-wrap: wrap;
}

.proof__label {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.proof__logos {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.proof__logo-item {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
}

.proof__sep {
  color: var(--border-strong);
  font-size: 16px;
}

/* ===== SURFACES ===== */
.surfaces {
  padding: 80px 0;
}

.surfaces__inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 24px;
}

.surfaces__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.surface-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 35, 27, 0.08);
  box-shadow: var(--shadow);
}

.surface-card--primary {
  background: linear-gradient(135deg, rgba(222, 243, 230, 0.84), rgba(255, 255, 255, 0.96));
  border-color: rgba(20, 108, 67, 0.14);
}

.surface-card__head {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.surface-card__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(20, 108, 67, 0.12);
  color: var(--accent-strong);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.surface-card__badge--secondary {
  background: rgba(20, 35, 27, 0.07);
  color: var(--ink);
}

.surface-card__title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}

.surface-card__body {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.surface-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.surface-card__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
}

.surface-card__list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===== STEPS ===== */
.steps {
  padding: 80px 0;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.step-card {
  position: relative;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(20, 35, 27, 0.08);
  box-shadow: var(--shadow);
  animation: riseIn 0.4s ease both;
  overflow: hidden;
}

.step-card__number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--muted);
  opacity: 0.5;
}

.step-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  margin-bottom: 16px;
}

.step-card__title {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

.step-card__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* ===== FEATURES ===== */
.features {
  padding: 80px 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 880px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}

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

.feature-card {
  position: relative;
  padding: 22px;
  border-radius: 20px;
  background: rgba(253, 253, 249, 0.92);
  border: 1px solid rgba(20, 35, 27, 0.08);
  box-shadow: var(--shadow);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.feature-card--accent {
  background: linear-gradient(135deg, rgba(222, 243, 230, 0.9), rgba(255, 255, 255, 0.96));
  border-color: rgba(20, 108, 67, 0.14);
}

.feature-card--premium {
  background: linear-gradient(135deg, rgba(255, 240, 222, 0.86), rgba(255, 249, 240, 0.96));
  border-color: rgba(140, 75, 20, 0.14);
}

.feature-card__badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--premium-strong);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(140, 75, 20, 0.2);
}

.feature-card__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(20, 35, 27, 0.06);
  color: var(--ink);
  margin-bottom: 14px;
}

.feature-card--accent .feature-card__icon {
  background: rgba(20, 108, 67, 0.12);
  color: var(--accent-strong);
}

.feature-card--premium .feature-card__icon {
  background: rgba(140, 75, 20, 0.1);
  color: var(--premium-strong);
}

.feature-card__title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.feature-card__body {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* ===== RESUME SECTION ===== */
.resume-section {
  padding: 80px 0;
}

.resume-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 860px) {
  .resume-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.resume-section__copy .section-title { text-align: left; }

.resume-checklist {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.resume-checklist__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.resume-checklist__item svg {
  flex-shrink: 0;
  color: var(--accent);
}

/* Resume mock */
.resume-section__visual {
  display: flex;
  justify-content: center;
}

.resume-mock {
  position: relative;
  width: 100%;
  max-width: 340px;
}

.resume-mock__page {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.resume-mock__name {
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}

.resume-mock__title {
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  color: var(--muted);
  margin-bottom: 4px;
}

.resume-mock__contact {
  font-size: 10px;
  text-align: center;
  color: #9aaba2;
  margin-bottom: 14px;
}

.resume-mock__divider {
  height: 1px;
  background: #e0e6e2;
  margin-bottom: 12px;
}

.resume-mock__section { margin-bottom: 14px; }

.resume-mock__section-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}

.resume-mock__entry { display: grid; gap: 4px; }

.resume-mock__entry-top {
  display: flex;
  justify-content: space-between;
}

.resume-mock__entry-role {
  font-size: 12px;
  font-weight: 700;
}

.resume-mock__entry-date {
  font-size: 10px;
  color: var(--muted);
}

.resume-mock__entry-company {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
}

.resume-mock__bullet {
  height: 7px;
  background: #e8eee9;
  border-radius: 4px;
  margin-bottom: 4px;
}

.resume-mock__bullet--short { width: 55%; }
.resume-mock__bullet--med { width: 75%; }

.resume-mock__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.resume-mock__chip {
  padding: 3px 8px;
  border-radius: 999px;
  background: #eef2ed;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.resume-mock__badge {
  position: absolute;
  bottom: -14px;
  right: -14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-strong), #1e8a54);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(14, 83, 49, 0.28);
}

/* ===== FAQ ===== */
.faq {
  padding: 80px 0;
}

.faq__list {
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq__item {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 4px 12px rgba(16, 34, 22, 0.06);
  overflow: hidden;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  transition: background-color 0.12s;
}

.faq__question:hover { background: rgba(255, 255, 255, 0.6); }
.faq__question::-webkit-details-marker { display: none; }

.faq__chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: var(--muted);
}

details[open] .faq__chevron { transform: rotate(180deg); }

.faq__answer {
  margin: 0;
  padding: 0 20px 16px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

/* ===== CTA ===== */
.cta {
  padding: 96px 0;
}

.cta__inner {
  position: relative;
  text-align: center;
  padding-block: 72px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.cta__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.cta__glow--left {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  background: rgba(20, 108, 67, 0.1);
}

.cta__glow--right {
  width: 300px;
  height: 300px;
  bottom: -80px;
  right: -80px;
  background: rgba(140, 75, 20, 0.08);
}

.cta__logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin: 0 auto 20px;
  box-shadow: 0 10px 28px rgba(20, 108, 67, 0.22);
}

.cta__title {
  margin: 0 auto 16px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 560px;
}

.cta__subtitle {
  margin: 0 auto 36px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 480px;
}

.cta__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta__note {
  margin: 20px 0 0;
  font-size: 12px;
  color: var(--muted);
}

/* ===== FOOTER ===== */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand--footer .brand__name { font-size: 14px; }

.footer__copy {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

/* ===== ANIMATIONS ===== */
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .hero { padding: 48px 0 40px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__pills { gap: 8px; }
  .mockup__extension {
    position: static;
    width: 100%;
    margin-top: 14px;
  }
  .dashboard-preview__metrics,
  .dashboard-preview__board {
    grid-template-columns: 1fr;
  }
  .cta__inner { padding: 48px 20px; }
  .cta__actions .btn { width: 100%; }
  .footer__inner { justify-content: center; text-align: center; }
}
